forked from Dokucraft/Dungeons-Level-Format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlockMap.py
1081 lines (1071 loc) · 108 KB
/
BlockMap.py
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
blocks = [
# Dungeons Format:
# 0: Block ID
# 1: Block Data
# 2: Block Data Mask
# Java Format:
# 0: Block ID
# 1: Block Properties
{ 'dungeons': [ 0x0000 ], 'java': [ 'minecraft:air' ] },
{ 'dungeons': [ 0x0001, 0b0000 ], 'java': [ 'minecraft:stone' ] },
{ 'dungeons': [ 0x0001, 0b0001 ], 'java': [ 'minecraft:granite' ] },
{ 'dungeons': [ 0x0001, 0b0010 ], 'java': [ 'minecraft:polished_granite' ] },
{ 'dungeons': [ 0x0001, 0b0011 ], 'java': [ 'minecraft:diorite' ] },
{ 'dungeons': [ 0x0001, 0b0100 ], 'java': [ 'minecraft:polished_diorite' ] },
{ 'dungeons': [ 0x0001, 0b0101 ], 'java': [ 'minecraft:andesite' ] },
{ 'dungeons': [ 0x0001, 0b0110 ], 'java': [ 'minecraft:polished_andesite' ] },
{ 'dungeons': [ 0x0001, 0b0111 ], 'java': [ 'minecraft:blackstone' ] }, # stonefloor1
{ 'dungeons': [ 0x0001, 0b1000 ], 'java': [ 'minecraft:chiseled_polished_blackstone' ] }, # stonefloor2
{ 'dungeons': [ 0x0001, 0b1001 ], 'java': [ 'minecraft:polished_blackstone' ] }, # stonefloor3
{ 'dungeons': [ 0x0001, 0b1010 ], 'java': [ 'minecraft:polished_blackstone_bricks' ] }, # stonefloor4
{ 'dungeons': [ 0x0001, 0b1011 ], 'java': [ 'minecraft:gilded_blackstone' ] }, # stonefloor5
{ 'dungeons': [ 0x0001, 0b1100 ], 'java': [ 'minecraft:cracked_polished_blackstone_bricks' ] }, # stonefloor6
{ 'dungeons': [ 0x0001, 0b1101 ], 'java': [ 'minecraft:lodestone' ] }, # stonefloor7
{ 'dungeons': [ 0x0001, 0b1110 ], 'java': [ 'minecraft:ancient_debris' ] }, # stonefloor8
{ 'dungeons': [ 0x0001, 0b1111 ], 'java': [ 'minecraft:infested_chiseled_stone_bricks' ] }, # stonefloor9
{ 'dungeons': [ 0x0002, 0b0000 ], 'java': [ 'minecraft:grass_block' ] },
{ 'dungeons': [ 0x0003, 0b0000 ], 'java': [ 'minecraft:dirt' ] },
{ 'dungeons': [ 0x0003, 0b0001 ], 'java': [ 'minecraft:coarse_dirt' ] },
{ 'dungeons': [ 0x0004, 0b0000 ], 'java': [ 'minecraft:cobblestone' ] },
{ 'dungeons': [ 0x0005, 0b0000 ], 'java': [ 'minecraft:oak_planks' ] },
{ 'dungeons': [ 0x0005, 0b0001 ], 'java': [ 'minecraft:spruce_planks' ] },
{ 'dungeons': [ 0x0005, 0b0010 ], 'java': [ 'minecraft:birch_planks' ] },
{ 'dungeons': [ 0x0005, 0b0011 ], 'java': [ 'minecraft:jungle_planks' ] },
{ 'dungeons': [ 0x0005, 0b0100 ], 'java': [ 'minecraft:acacia_planks' ] },
{ 'dungeons': [ 0x0005, 0b0101 ], 'java': [ 'minecraft:dark_oak_planks' ] },
{ 'dungeons': [ 0x0006, 0b0000 ], 'java': [ 'minecraft:oak_sapling', { 'stage': '0' } ] },
{ 'dungeons': [ 0x0006, 0b0001 ], 'java': [ 'minecraft:spruce_sapling', { 'stage': '0' } ] },
{ 'dungeons': [ 0x0006, 0b0010 ], 'java': [ 'minecraft:birch_sapling', { 'stage': '0' } ] },
{ 'dungeons': [ 0x0006, 0b0011 ], 'java': [ 'minecraft:jungle_sapling', { 'stage': '0' } ] },
{ 'dungeons': [ 0x0006, 0b0100 ], 'java': [ 'minecraft:acacia_sapling', { 'stage': '0' } ] },
{ 'dungeons': [ 0x0006, 0b0101 ], 'java': [ 'minecraft:dark_oak_sapling', { 'stage': '0' } ] },
{ 'dungeons': [ 0x0006, 0b1000 ], 'java': [ 'minecraft:oak_sapling', { 'stage': '1' } ] },
{ 'dungeons': [ 0x0006, 0b1001 ], 'java': [ 'minecraft:spruce_sapling', { 'stage': '1' } ] },
{ 'dungeons': [ 0x0006, 0b1010 ], 'java': [ 'minecraft:birch_sapling', { 'stage': '1' } ] },
{ 'dungeons': [ 0x0006, 0b1011 ], 'java': [ 'minecraft:jungle_sapling', { 'stage': '1' } ] },
{ 'dungeons': [ 0x0006, 0b1100 ], 'java': [ 'minecraft:acacia_sapling', { 'stage': '1' } ] },
{ 'dungeons': [ 0x0006, 0b1101 ], 'java': [ 'minecraft:dark_oak_sapling', { 'stage': '1' } ] },
{ 'dungeons': [ 0x0007, 0b0000 ], 'java': [ 'minecraft:bedrock' ] },
{ 'dungeons': [ 0x0008, 0b0000 ], 'java': [ 'minecraft:water', { 'level': '1' } ] },
{ 'dungeons': [ 0x0008, 0b0001 ], 'java': [ 'minecraft:water', { 'level': '2' } ] },
{ 'dungeons': [ 0x0008, 0b0010 ], 'java': [ 'minecraft:water', { 'level': '3' } ] },
{ 'dungeons': [ 0x0008, 0b0011 ], 'java': [ 'minecraft:water', { 'level': '4' } ] },
{ 'dungeons': [ 0x0008, 0b0100 ], 'java': [ 'minecraft:water', { 'level': '5' } ] },
{ 'dungeons': [ 0x0008, 0b0101 ], 'java': [ 'minecraft:water', { 'level': '6' } ] },
{ 'dungeons': [ 0x0008, 0b0110 ], 'java': [ 'minecraft:water', { 'level': '7' } ] },
{ 'dungeons': [ 0x0008, 0b0111 ], 'java': [ 'minecraft:water', { 'level': '8' } ] },
{ 'dungeons': [ 0x0008, 0b1000 ], 'java': [ 'minecraft:water', { 'level': '9' } ] },
{ 'dungeons': [ 0x0008, 0b1001 ], 'java': [ 'minecraft:water', { 'level': '10' } ] },
{ 'dungeons': [ 0x0008, 0b1010 ], 'java': [ 'minecraft:water', { 'level': '11' } ] },
{ 'dungeons': [ 0x0008, 0b1011 ], 'java': [ 'minecraft:water', { 'level': '12' } ] },
{ 'dungeons': [ 0x0008, 0b1100 ], 'java': [ 'minecraft:water', { 'level': '13' } ] },
{ 'dungeons': [ 0x0008, 0b1101 ], 'java': [ 'minecraft:water', { 'level': '14' } ] },
{ 'dungeons': [ 0x0008, 0b1110 ], 'java': [ 'minecraft:water', { 'level': '15' } ] },
{ 'dungeons': [ 0x0009 ], 'java': [ 'minecraft:water', { 'level': '0' } ] },
{ 'dungeons': [ 0x000a, 0b0000 ], 'java': [ 'minecraft:lava', { 'level': '1' } ] },
{ 'dungeons': [ 0x000a, 0b0001 ], 'java': [ 'minecraft:lava', { 'level': '2' } ] },
{ 'dungeons': [ 0x000a, 0b0010 ], 'java': [ 'minecraft:lava', { 'level': '3' } ] },
{ 'dungeons': [ 0x000a, 0b0011 ], 'java': [ 'minecraft:lava', { 'level': '4' } ] },
{ 'dungeons': [ 0x000a, 0b0100 ], 'java': [ 'minecraft:lava', { 'level': '5' } ] },
{ 'dungeons': [ 0x000a, 0b0101 ], 'java': [ 'minecraft:lava', { 'level': '6' } ] },
{ 'dungeons': [ 0x000a, 0b0110 ], 'java': [ 'minecraft:lava', { 'level': '7' } ] },
{ 'dungeons': [ 0x000a, 0b0111 ], 'java': [ 'minecraft:lava', { 'level': '8' } ] },
{ 'dungeons': [ 0x000a, 0b1000 ], 'java': [ 'minecraft:lava', { 'level': '9' } ] },
{ 'dungeons': [ 0x000a, 0b1001 ], 'java': [ 'minecraft:lava', { 'level': '10' } ] },
{ 'dungeons': [ 0x000a, 0b1010 ], 'java': [ 'minecraft:lava', { 'level': '11' } ] },
{ 'dungeons': [ 0x000a, 0b1011 ], 'java': [ 'minecraft:lava', { 'level': '12' } ] },
{ 'dungeons': [ 0x000a, 0b1100 ], 'java': [ 'minecraft:lava', { 'level': '13' } ] },
{ 'dungeons': [ 0x000a, 0b1101 ], 'java': [ 'minecraft:lava', { 'level': '14' } ] },
{ 'dungeons': [ 0x000a, 0b1110 ], 'java': [ 'minecraft:lava', { 'level': '15' } ] },
{ 'dungeons': [ 0x000b ], 'java': [ 'minecraft:lava', { 'level': '0' } ] },
{ 'dungeons': [ 0x000c, 0b0000 ], 'java': [ 'minecraft:sand' ] },
{ 'dungeons': [ 0x000c, 0b0001 ], 'java': [ 'minecraft:red_sand' ] },
{ 'dungeons': [ 0x000d, 0b0000 ], 'java': [ 'minecraft:gravel' ] },
{ 'dungeons': [ 0x000e, 0b0000 ], 'java': [ 'minecraft:gold_ore' ] },
{ 'dungeons': [ 0x000f, 0b0000 ], 'java': [ 'minecraft:iron_ore' ] },
{ 'dungeons': [ 0x0010, 0b0000 ], 'java': [ 'minecraft:coal_ore' ] },
{ 'dungeons': [ 0x0011, 0b0000 ], 'java': [ 'minecraft:oak_log', { 'axis': 'y' } ] },
{ 'dungeons': [ 0x0011, 0b0001 ], 'java': [ 'minecraft:spruce_log', { 'axis': 'y' } ] },
{ 'dungeons': [ 0x0011, 0b0010 ], 'java': [ 'minecraft:birch_log', { 'axis': 'y' } ] },
{ 'dungeons': [ 0x0011, 0b0011 ], 'java': [ 'minecraft:jungle_log', { 'axis': 'y' } ] },
{ 'dungeons': [ 0x0011, 0b0100 ], 'java': [ 'minecraft:oak_log', { 'axis': 'x' } ] },
{ 'dungeons': [ 0x0011, 0b0101 ], 'java': [ 'minecraft:spruce_log', { 'axis': 'x' } ] },
{ 'dungeons': [ 0x0011, 0b0110 ], 'java': [ 'minecraft:birch_log', { 'axis': 'x' } ] },
{ 'dungeons': [ 0x0011, 0b0111 ], 'java': [ 'minecraft:jungle_log', { 'axis': 'x' } ] },
{ 'dungeons': [ 0x0011, 0b1000 ], 'java': [ 'minecraft:oak_log', { 'axis': 'z' } ] },
{ 'dungeons': [ 0x0011, 0b1001 ], 'java': [ 'minecraft:spruce_log', { 'axis': 'z' } ] },
{ 'dungeons': [ 0x0011, 0b1010 ], 'java': [ 'minecraft:birch_log', { 'axis': 'z' } ] },
{ 'dungeons': [ 0x0011, 0b1011 ], 'java': [ 'minecraft:jungle_log', { 'axis': 'z' } ] },
{ 'dungeons': [ 0x0011, 0b1100 ], 'java': [ 'minecraft:oak_wood' ] },
{ 'dungeons': [ 0x0011, 0b1101 ], 'java': [ 'minecraft:spruce_wood' ] },
{ 'dungeons': [ 0x0011, 0b1110 ], 'java': [ 'minecraft:birch_wood' ] },
{ 'dungeons': [ 0x0011, 0b1111 ], 'java': [ 'minecraft:jungle_wood' ] },
{ 'dungeons': [ 0x0012, 0b0000, 0b0111 ], 'java': [ 'minecraft:oak_leaves', { 'persistent': 'false' } ] },
{ 'dungeons': [ 0x0012, 0b0001, 0b0111 ], 'java': [ 'minecraft:spruce_leaves', { 'persistent': 'false' } ] },
{ 'dungeons': [ 0x0012, 0b0010, 0b0111 ], 'java': [ 'minecraft:birch_leaves', { 'persistent': 'false' } ] },
{ 'dungeons': [ 0x0012, 0b0011, 0b0111 ], 'java': [ 'minecraft:jungle_leaves', { 'persistent': 'false' } ] },
{ 'dungeons': [ 0x0012, 0b0100, 0b0111 ], 'java': [ 'minecraft:oak_leaves', { 'persistent': 'true' } ] },
{ 'dungeons': [ 0x0012, 0b0101, 0b0111 ], 'java': [ 'minecraft:spruce_leaves', { 'persistent': 'true' } ] },
{ 'dungeons': [ 0x0012, 0b0110, 0b0111 ], 'java': [ 'minecraft:birch_leaves', { 'persistent': 'true' } ] },
{ 'dungeons': [ 0x0012, 0b0111, 0b0111 ], 'java': [ 'minecraft:jungle_leaves', { 'persistent': 'true' } ] },
{ 'dungeons': [ 0x0013, 0b0000 ], 'java': [ 'minecraft:sponge' ] },
{ 'dungeons': [ 0x0014, 0b0000 ], 'java': [ 'minecraft:glass' ] },
{ 'dungeons': [ 0x0015, 0b0000 ], 'java': [ 'minecraft:lapis_ore' ] },
{ 'dungeons': [ 0x0016, 0b0000 ], 'java': [ 'minecraft:lapis_block' ] },
{ 'dungeons': [ 0x0017, 0b0000 ], 'java': [ 'minecraft:dispenser', { 'facing': 'down' } ] },
{ 'dungeons': [ 0x0017, 0b0001 ], 'java': [ 'minecraft:dispenser', { 'facing': 'up' } ] },
{ 'dungeons': [ 0x0017, 0b0010 ], 'java': [ 'minecraft:dispenser', { 'facing': 'north' } ] },
{ 'dungeons': [ 0x0017, 0b0011 ], 'java': [ 'minecraft:dispenser', { 'facing': 'south' } ] },
{ 'dungeons': [ 0x0017, 0b0100 ], 'java': [ 'minecraft:dispenser', { 'facing': 'west' } ] },
{ 'dungeons': [ 0x0017, 0b0101 ], 'java': [ 'minecraft:dispenser', { 'facing': 'east' } ] },
{ 'dungeons': [ 0x0017, 0b1000 ], 'java': [ 'minecraft:dispenser', { 'facing': 'down' } ] },
{ 'dungeons': [ 0x0017, 0b1001 ], 'java': [ 'minecraft:dispenser', { 'facing': 'up' } ] },
{ 'dungeons': [ 0x0017, 0b1010 ], 'java': [ 'minecraft:dispenser', { 'facing': 'north' } ] },
{ 'dungeons': [ 0x0017, 0b1011 ], 'java': [ 'minecraft:dispenser', { 'facing': 'south' } ] },
{ 'dungeons': [ 0x0017, 0b1100 ], 'java': [ 'minecraft:dispenser', { 'facing': 'west' } ] },
{ 'dungeons': [ 0x0017, 0b1101 ], 'java': [ 'minecraft:dispenser', { 'facing': 'east' } ] },
{ 'dungeons': [ 0x0018, 0b0000 ], 'java': [ 'minecraft:sandstone' ] },
{ 'dungeons': [ 0x0018, 0b0001 ], 'java': [ 'minecraft:chiseled_sandstone' ] },
{ 'dungeons': [ 0x0018, 0b0010 ], 'java': [ 'minecraft:cut_sandstone' ] },
{ 'dungeons': [ 0x0018, 0b0011 ], 'java': [ 'minecraft:smooth_sandstone' ] },
{ 'dungeons': [ 0x0019, 0b0000 ], 'java': [ 'minecraft:noteblock' ] },
{ 'dungeons': [ 0x001a, 0b0000 ], 'java': [ 'minecraft:red_bed', { 'part': 'foot', 'occupied': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x001a, 0b0001 ], 'java': [ 'minecraft:red_bed', { 'part': 'foot', 'occupied': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x001a, 0b0010 ], 'java': [ 'minecraft:red_bed', { 'part': 'foot', 'occupied': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x001a, 0b0011 ], 'java': [ 'minecraft:red_bed', { 'part': 'foot', 'occupied': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x001a, 0b0100 ], 'java': [ 'minecraft:red_bed', { 'part': 'foot', 'occupied': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x001a, 0b0101 ], 'java': [ 'minecraft:red_bed', { 'part': 'foot', 'occupied': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x001a, 0b0110 ], 'java': [ 'minecraft:red_bed', { 'part': 'foot', 'occupied': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x001a, 0b0111 ], 'java': [ 'minecraft:red_bed', { 'part': 'foot', 'occupied': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x001a, 0b1000 ], 'java': [ 'minecraft:red_bed', { 'part': 'head', 'occupied': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x001a, 0b1001 ], 'java': [ 'minecraft:red_bed', { 'part': 'head', 'occupied': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x001a, 0b1010 ], 'java': [ 'minecraft:red_bed', { 'part': 'head', 'occupied': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x001a, 0b1011 ], 'java': [ 'minecraft:red_bed', { 'part': 'head', 'occupied': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x001a, 0b1100 ], 'java': [ 'minecraft:red_bed', { 'part': 'head', 'occupied': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x001a, 0b1101 ], 'java': [ 'minecraft:red_bed', { 'part': 'head', 'occupied': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x001a, 0b1110 ], 'java': [ 'minecraft:red_bed', { 'part': 'head', 'occupied': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x001a, 0b1111 ], 'java': [ 'minecraft:red_bed', { 'part': 'head', 'occupied': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x001b, 0b0000 ], 'java': [ 'minecraft:powered_rail', { 'powered': 'false', 'shape': 'north_south' } ] },
{ 'dungeons': [ 0x001b, 0b0001 ], 'java': [ 'minecraft:powered_rail', { 'powered': 'false', 'shape': 'east_west' } ] },
{ 'dungeons': [ 0x001b, 0b0010 ], 'java': [ 'minecraft:powered_rail', { 'powered': 'false', 'shape': 'ascending_east' } ] },
{ 'dungeons': [ 0x001b, 0b0011 ], 'java': [ 'minecraft:powered_rail', { 'powered': 'false', 'shape': 'ascending_west' } ] },
{ 'dungeons': [ 0x001b, 0b0100 ], 'java': [ 'minecraft:powered_rail', { 'powered': 'false', 'shape': 'ascending_north' } ] },
{ 'dungeons': [ 0x001b, 0b0101 ], 'java': [ 'minecraft:powered_rail', { 'powered': 'false', 'shape': 'ascending_south' } ] },
{ 'dungeons': [ 0x001b, 0b1000 ], 'java': [ 'minecraft:powered_rail', { 'powered': 'true', 'shape': 'north_south' } ] },
{ 'dungeons': [ 0x001b, 0b1001 ], 'java': [ 'minecraft:powered_rail', { 'powered': 'true', 'shape': 'east_west' } ] },
{ 'dungeons': [ 0x001b, 0b1010 ], 'java': [ 'minecraft:powered_rail', { 'powered': 'true', 'shape': 'ascending_east' } ] },
{ 'dungeons': [ 0x001b, 0b1011 ], 'java': [ 'minecraft:powered_rail', { 'powered': 'true', 'shape': 'ascending_west' } ] },
{ 'dungeons': [ 0x001b, 0b1100 ], 'java': [ 'minecraft:powered_rail', { 'powered': 'true', 'shape': 'ascending_north' } ] },
{ 'dungeons': [ 0x001b, 0b1101 ], 'java': [ 'minecraft:powered_rail', { 'powered': 'true', 'shape': 'ascending_south' } ] },
{ 'dungeons': [ 0x001c, 0b0000 ], 'java': [ 'minecraft:detector_rail', { 'powered': 'false', 'shape': 'north_south' } ] },
{ 'dungeons': [ 0x001c, 0b0001 ], 'java': [ 'minecraft:detector_rail', { 'powered': 'false', 'shape': 'east_west' } ] },
{ 'dungeons': [ 0x001c, 0b0010 ], 'java': [ 'minecraft:detector_rail', { 'powered': 'false', 'shape': 'ascending_east' } ] },
{ 'dungeons': [ 0x001c, 0b0011 ], 'java': [ 'minecraft:detector_rail', { 'powered': 'false', 'shape': 'ascending_west' } ] },
{ 'dungeons': [ 0x001c, 0b0100 ], 'java': [ 'minecraft:detector_rail', { 'powered': 'false', 'shape': 'ascending_north' } ] },
{ 'dungeons': [ 0x001c, 0b0101 ], 'java': [ 'minecraft:detector_rail', { 'powered': 'false', 'shape': 'ascending_south' } ] },
{ 'dungeons': [ 0x001c, 0b1000 ], 'java': [ 'minecraft:detector_rail', { 'powered': 'true', 'shape': 'north_south' } ] },
{ 'dungeons': [ 0x001c, 0b1001 ], 'java': [ 'minecraft:detector_rail', { 'powered': 'true', 'shape': 'east_west' } ] },
{ 'dungeons': [ 0x001c, 0b1010 ], 'java': [ 'minecraft:detector_rail', { 'powered': 'true', 'shape': 'ascending_east' } ] },
{ 'dungeons': [ 0x001c, 0b1011 ], 'java': [ 'minecraft:detector_rail', { 'powered': 'true', 'shape': 'ascending_west' } ] },
{ 'dungeons': [ 0x001c, 0b1100 ], 'java': [ 'minecraft:detector_rail', { 'powered': 'true', 'shape': 'ascending_north' } ] },
{ 'dungeons': [ 0x001c, 0b1101 ], 'java': [ 'minecraft:detector_rail', { 'powered': 'true', 'shape': 'ascending_south' } ] },
{ 'dungeons': [ 0x001d, 0b0000 ], 'java': [ 'minecraft:sticky_piston', { 'extended': 'false', 'facing': 'down' } ] },
{ 'dungeons': [ 0x001d, 0b0001 ], 'java': [ 'minecraft:sticky_piston', { 'extended': 'false', 'facing': 'up' } ] },
{ 'dungeons': [ 0x001d, 0b0010 ], 'java': [ 'minecraft:sticky_piston', { 'extended': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x001d, 0b0011 ], 'java': [ 'minecraft:sticky_piston', { 'extended': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x001d, 0b0100 ], 'java': [ 'minecraft:sticky_piston', { 'extended': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x001d, 0b0101 ], 'java': [ 'minecraft:sticky_piston', { 'extended': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x001d, 0b1000 ], 'java': [ 'minecraft:sticky_piston', { 'extended': 'true', 'facing': 'down' } ] },
{ 'dungeons': [ 0x001d, 0b1001 ], 'java': [ 'minecraft:sticky_piston', { 'extended': 'true', 'facing': 'up' } ] },
{ 'dungeons': [ 0x001d, 0b1010 ], 'java': [ 'minecraft:sticky_piston', { 'extended': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x001d, 0b1011 ], 'java': [ 'minecraft:sticky_piston', { 'extended': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x001d, 0b1100 ], 'java': [ 'minecraft:sticky_piston', { 'extended': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x001d, 0b1101 ], 'java': [ 'minecraft:sticky_piston', { 'extended': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x001e, 0b0000 ], 'java': [ 'minecraft:cobweb' ] },
{ 'dungeons': [ 0x001f, 0b0001 ], 'java': [ 'minecraft:grass' ] },
{ 'dungeons': [ 0x001f, 0b0010 ], 'java': [ 'minecraft:fern' ] },
{ 'dungeons': [ 0x0023, 0b0000 ], 'java': [ 'minecraft:white_wool' ] },
{ 'dungeons': [ 0x0023, 0b0001 ], 'java': [ 'minecraft:orange_wool' ] },
{ 'dungeons': [ 0x0023, 0b0010 ], 'java': [ 'minecraft:magenta_wool' ] },
{ 'dungeons': [ 0x0023, 0b0011 ], 'java': [ 'minecraft:light_blue_wool' ] },
{ 'dungeons': [ 0x0023, 0b0100 ], 'java': [ 'minecraft:yellow_wool' ] },
{ 'dungeons': [ 0x0023, 0b0101 ], 'java': [ 'minecraft:lime_wool' ] },
{ 'dungeons': [ 0x0023, 0b0110 ], 'java': [ 'minecraft:pink_wool' ] },
{ 'dungeons': [ 0x0023, 0b0111 ], 'java': [ 'minecraft:gray_wool' ] },
{ 'dungeons': [ 0x0023, 0b1000 ], 'java': [ 'minecraft:light_gray_wool' ] },
{ 'dungeons': [ 0x0023, 0b1001 ], 'java': [ 'minecraft:cyan_wool' ] },
{ 'dungeons': [ 0x0023, 0b1010 ], 'java': [ 'minecraft:purple_wool' ] },
{ 'dungeons': [ 0x0023, 0b1011 ], 'java': [ 'minecraft:blue_wool' ] },
{ 'dungeons': [ 0x0023, 0b1100 ], 'java': [ 'minecraft:brown_wool' ] },
{ 'dungeons': [ 0x0023, 0b1101 ], 'java': [ 'minecraft:green_wool' ] },
{ 'dungeons': [ 0x0023, 0b1110 ], 'java': [ 'minecraft:red_wool' ] },
{ 'dungeons': [ 0x0023, 0b1111 ], 'java': [ 'minecraft:black_wool' ] },
{ 'dungeons': [ 0x0025, 0b0000 ], 'java': [ 'minecraft:dandelion' ] },
{ 'dungeons': [ 0x0026, 0b0000 ], 'java': [ 'minecraft:poppy' ] },
{ 'dungeons': [ 0x0026, 0b0001 ], 'java': [ 'minecraft:blue_orchid' ] },
{ 'dungeons': [ 0x0026, 0b0010 ], 'java': [ 'minecraft:allium' ] },
{ 'dungeons': [ 0x0026, 0b0011 ], 'java': [ 'minecraft:azure_bluet' ] },
{ 'dungeons': [ 0x0026, 0b0100 ], 'java': [ 'minecraft:red_tulip' ] },
{ 'dungeons': [ 0x0026, 0b0101 ], 'java': [ 'minecraft:orange_tulip' ] },
{ 'dungeons': [ 0x0026, 0b0110 ], 'java': [ 'minecraft:white_tulip' ] },
{ 'dungeons': [ 0x0026, 0b0111 ], 'java': [ 'minecraft:pink_tulip' ] },
{ 'dungeons': [ 0x0026, 0b1000 ], 'java': [ 'minecraft:oxeye_daisy' ] },
{ 'dungeons': [ 0x0026, 0b1001 ], 'java': [ 'minecraft:cornflower' ] },
{ 'dungeons': [ 0x0026, 0b1010 ], 'java': [ 'minecraft:lily_of_the_valley' ] },
{ 'dungeons': [ 0x0027, 0b0000 ], 'java': [ 'minecraft:brown_mushroom' ] },
{ 'dungeons': [ 0x0028, 0b0000 ], 'java': [ 'minecraft:red_mushroom' ] },
{ 'dungeons': [ 0x0029, 0b0000 ], 'java': [ 'minecraft:gold_block' ] },
{ 'dungeons': [ 0x002a, 0b0000 ], 'java': [ 'minecraft:iron_block' ] },
{ 'dungeons': [ 0x002b, 0b0000 ], 'java': [ 'minecraft:smooth_stone_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x002b, 0b0001 ], 'java': [ 'minecraft:sandstone_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x002b, 0b0010 ], 'java': [ 'minecraft:petrified_oak_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x002b, 0b0011 ], 'java': [ 'minecraft:cobblestone_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x002b, 0b0100 ], 'java': [ 'minecraft:brick_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x002b, 0b0101 ], 'java': [ 'minecraft:stone_brick_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x002b, 0b0110 ], 'java': [ 'minecraft:quartz_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x002b, 0b0111 ], 'java': [ 'minecraft:nether_brick_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x002c, 0b0000 ], 'java': [ 'minecraft:smooth_stone_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x002c, 0b0001 ], 'java': [ 'minecraft:sandstone_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x002c, 0b0010 ], 'java': [ 'minecraft:petrified_oak_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x002c, 0b0011 ], 'java': [ 'minecraft:cobblestone_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x002c, 0b0100 ], 'java': [ 'minecraft:brick_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x002c, 0b0101 ], 'java': [ 'minecraft:stone_brick_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x002c, 0b0110 ], 'java': [ 'minecraft:quartz_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x002c, 0b0111 ], 'java': [ 'minecraft:nether_brick_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x002c, 0b1000 ], 'java': [ 'minecraft:smooth_stone_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x002c, 0b1001 ], 'java': [ 'minecraft:sandstone_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x002c, 0b1010 ], 'java': [ 'minecraft:petrified_oak_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x002c, 0b1011 ], 'java': [ 'minecraft:cobblestone_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x002c, 0b1100 ], 'java': [ 'minecraft:brick_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x002c, 0b1101 ], 'java': [ 'minecraft:stone_brick_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x002c, 0b1110 ], 'java': [ 'minecraft:quartz_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x002c, 0b1111 ], 'java': [ 'minecraft:nether_brick_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x002d, 0b0000 ], 'java': [ 'minecraft:bricks' ] },
{ 'dungeons': [ 0x002e, 0b0000 ], 'java': [ 'minecraft:tnt' ] },
{ 'dungeons': [ 0x002f, 0b0000 ], 'java': [ 'minecraft:bookshelf' ] },
{ 'dungeons': [ 0x0030, 0b0000 ], 'java': [ 'minecraft:mossy_cobblestone' ] },
{ 'dungeons': [ 0x0031, 0b0000 ], 'java': [ 'minecraft:obsidian' ] },
{ 'dungeons': [ 0x0032, 0b0001 ], 'java': [ 'minecraft:wall_torch', { 'facing': 'east' } ] },
{ 'dungeons': [ 0x0032, 0b0010 ], 'java': [ 'minecraft:wall_torch', { 'facing': 'west' } ] },
{ 'dungeons': [ 0x0032, 0b0011 ], 'java': [ 'minecraft:wall_torch', { 'facing': 'south' } ] },
{ 'dungeons': [ 0x0032, 0b0100 ], 'java': [ 'minecraft:wall_torch', { 'facing': 'north' } ] },
{ 'dungeons': [ 0x0032, 0b0101 ], 'java': [ 'minecraft:torch' ] },
{ 'dungeons': [ 0x0033, 0b0000 ], 'java': [ 'minecraft:fire' ] },
{ 'dungeons': [ 0x0034, 0b0000 ], 'java': [ 'minecraft:spawner' ] },
{ 'dungeons': [ 0x0035, 0b0000 ], 'java': [ 'minecraft:oak_stairs', { 'facing': 'east', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0035, 0b0001 ], 'java': [ 'minecraft:oak_stairs', { 'facing': 'west', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0035, 0b0010 ], 'java': [ 'minecraft:oak_stairs', { 'facing': 'south', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0035, 0b0011 ], 'java': [ 'minecraft:oak_stairs', { 'facing': 'north', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0035, 0b0100 ], 'java': [ 'minecraft:oak_stairs', { 'facing': 'east', 'half': 'top' } ] },
{ 'dungeons': [ 0x0035, 0b0101 ], 'java': [ 'minecraft:oak_stairs', { 'facing': 'west', 'half': 'top' } ] },
{ 'dungeons': [ 0x0035, 0b0110 ], 'java': [ 'minecraft:oak_stairs', { 'facing': 'south', 'half': 'top' } ] },
{ 'dungeons': [ 0x0035, 0b0111 ], 'java': [ 'minecraft:oak_stairs', { 'facing': 'north', 'half': 'top' } ] },
{ 'dungeons': [ 0x0036, 0b0010 ], 'java': [ 'minecraft:chest', { 'facing': 'north' } ] },
{ 'dungeons': [ 0x0036, 0b0011 ], 'java': [ 'minecraft:chest', { 'facing': 'south' } ] },
{ 'dungeons': [ 0x0036, 0b0100 ], 'java': [ 'minecraft:chest', { 'facing': 'west' } ] },
{ 'dungeons': [ 0x0036, 0b0101 ], 'java': [ 'minecraft:chest', { 'facing': 'east' } ] },
{ 'dungeons': [ 0x0037, 0b0000 ], 'java': [ 'minecraft:redstone_wire', { 'power': '0' } ] },
{ 'dungeons': [ 0x0037, 0b0001 ], 'java': [ 'minecraft:redstone_wire', { 'power': '1' } ] },
{ 'dungeons': [ 0x0037, 0b0010 ], 'java': [ 'minecraft:redstone_wire', { 'power': '2' } ] },
{ 'dungeons': [ 0x0037, 0b0011 ], 'java': [ 'minecraft:redstone_wire', { 'power': '3' } ] },
{ 'dungeons': [ 0x0037, 0b0100 ], 'java': [ 'minecraft:redstone_wire', { 'power': '4' } ] },
{ 'dungeons': [ 0x0037, 0b0101 ], 'java': [ 'minecraft:redstone_wire', { 'power': '5' } ] },
{ 'dungeons': [ 0x0037, 0b0110 ], 'java': [ 'minecraft:redstone_wire', { 'power': '6' } ] },
{ 'dungeons': [ 0x0037, 0b0111 ], 'java': [ 'minecraft:redstone_wire', { 'power': '7' } ] },
{ 'dungeons': [ 0x0037, 0b1000 ], 'java': [ 'minecraft:redstone_wire', { 'power': '8' } ] },
{ 'dungeons': [ 0x0037, 0b1001 ], 'java': [ 'minecraft:redstone_wire', { 'power': '9' } ] },
{ 'dungeons': [ 0x0037, 0b1010 ], 'java': [ 'minecraft:redstone_wire', { 'power': '10' } ] },
{ 'dungeons': [ 0x0037, 0b1011 ], 'java': [ 'minecraft:redstone_wire', { 'power': '11' } ] },
{ 'dungeons': [ 0x0037, 0b1100 ], 'java': [ 'minecraft:redstone_wire', { 'power': '12' } ] },
{ 'dungeons': [ 0x0037, 0b1101 ], 'java': [ 'minecraft:redstone_wire', { 'power': '13' } ] },
{ 'dungeons': [ 0x0037, 0b1110 ], 'java': [ 'minecraft:redstone_wire', { 'power': '14' } ] },
{ 'dungeons': [ 0x0037, 0b1111 ], 'java': [ 'minecraft:redstone_wire', { 'power': '15' } ] },
{ 'dungeons': [ 0x0038, 0b0000 ], 'java': [ 'minecraft:diamond_ore' ] },
{ 'dungeons': [ 0x0039, 0b0000 ], 'java': [ 'minecraft:diamond_block' ] },
{ 'dungeons': [ 0x003a, 0b0000 ], 'java': [ 'minecraft:crafting_table' ] },
{ 'dungeons': [ 0x003b, 0b0000 ], 'java': [ 'minecraft:wheat', { 'age': '0' } ] },
{ 'dungeons': [ 0x003b, 0b0001 ], 'java': [ 'minecraft:wheat', { 'age': '1' } ] },
{ 'dungeons': [ 0x003b, 0b0010 ], 'java': [ 'minecraft:wheat', { 'age': '2' } ] },
{ 'dungeons': [ 0x003b, 0b0011 ], 'java': [ 'minecraft:wheat', { 'age': '3' } ] },
{ 'dungeons': [ 0x003b, 0b0100 ], 'java': [ 'minecraft:wheat', { 'age': '4' } ] },
{ 'dungeons': [ 0x003b, 0b0101 ], 'java': [ 'minecraft:wheat', { 'age': '5' } ] },
{ 'dungeons': [ 0x003b, 0b0110 ], 'java': [ 'minecraft:wheat', { 'age': '6' } ] },
{ 'dungeons': [ 0x003b, 0b0111 ], 'java': [ 'minecraft:wheat', { 'age': '7' } ] },
{ 'dungeons': [ 0x003c, 0b0000 ], 'java': [ 'minecraft:farmland', { 'moisture': '0' } ] },
{ 'dungeons': [ 0x003c, 0b0111 ], 'java': [ 'minecraft:farmland', { 'moisture': '7' } ] },
{ 'dungeons': [ 0x003d, 0b0010 ], 'java': [ 'minecraft:furnace', { 'facing': 'north' } ] },
{ 'dungeons': [ 0x003d, 0b0011 ], 'java': [ 'minecraft:furnace', { 'facing': 'south' } ] },
{ 'dungeons': [ 0x003d, 0b0100 ], 'java': [ 'minecraft:furnace', { 'facing': 'west' } ] },
{ 'dungeons': [ 0x003d, 0b0101 ], 'java': [ 'minecraft:furnace', { 'facing': 'east' } ] },
{ 'dungeons': [ 0x003f, 0b0000 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '0' } ] },
{ 'dungeons': [ 0x003f, 0b0001 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '1' } ] },
{ 'dungeons': [ 0x003f, 0b0010 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '2' } ] },
{ 'dungeons': [ 0x003f, 0b0011 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '3' } ] },
{ 'dungeons': [ 0x003f, 0b0100 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '4' } ] },
{ 'dungeons': [ 0x003f, 0b0101 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '5' } ] },
{ 'dungeons': [ 0x003f, 0b0110 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '6' } ] },
{ 'dungeons': [ 0x003f, 0b0111 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '7' } ] },
{ 'dungeons': [ 0x003f, 0b1000 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '8' } ] },
{ 'dungeons': [ 0x003f, 0b1001 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '9' } ] },
{ 'dungeons': [ 0x003f, 0b1010 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '10' } ] },
{ 'dungeons': [ 0x003f, 0b1011 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '11' } ] },
{ 'dungeons': [ 0x003f, 0b1100 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '12' } ] },
{ 'dungeons': [ 0x003f, 0b1101 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '13' } ] },
{ 'dungeons': [ 0x003f, 0b1110 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '14' } ] },
{ 'dungeons': [ 0x003f, 0b1111 ], 'java': [ 'minecraft:oak_sign', { 'rotation': '15' } ] },
{ 'dungeons': [ 0x0040, 0b0000 ], 'java': [ 'minecraft:oak_door', { 'half': 'lower', 'open': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x0040, 0b0001 ], 'java': [ 'minecraft:oak_door', { 'half': 'lower', 'open': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x0040, 0b0010 ], 'java': [ 'minecraft:oak_door', { 'half': 'lower', 'open': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x0040, 0b0011 ], 'java': [ 'minecraft:oak_door', { 'half': 'lower', 'open': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x0040, 0b0100 ], 'java': [ 'minecraft:oak_door', { 'half': 'lower', 'open': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x0040, 0b0101 ], 'java': [ 'minecraft:oak_door', { 'half': 'lower', 'open': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x0040, 0b0110 ], 'java': [ 'minecraft:oak_door', { 'half': 'lower', 'open': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x0040, 0b0111 ], 'java': [ 'minecraft:oak_door', { 'half': 'lower', 'open': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x0040, 0b1000 ], 'java': [ 'minecraft:oak_door', { 'half': 'upper', 'powered': 'false', 'hinge': 'left' } ] },
{ 'dungeons': [ 0x0040, 0b1001 ], 'java': [ 'minecraft:oak_door', { 'half': 'upper', 'powered': 'false', 'hinge': 'right' } ] },
{ 'dungeons': [ 0x0040, 0b1010 ], 'java': [ 'minecraft:oak_door', { 'half': 'upper', 'powered': 'true', 'hinge': 'left' } ] },
{ 'dungeons': [ 0x0040, 0b1011 ], 'java': [ 'minecraft:oak_door', { 'half': 'upper', 'powered': 'true', 'hinge': 'right' } ] },
{ 'dungeons': [ 0x0041, 0b0010, 0b0111 ], 'java': [ 'minecraft:ladder', { 'facing': 'north' } ] },
{ 'dungeons': [ 0x0041, 0b0011, 0b0111 ], 'java': [ 'minecraft:ladder', { 'facing': 'south' } ] },
{ 'dungeons': [ 0x0041, 0b0100, 0b0111 ], 'java': [ 'minecraft:ladder', { 'facing': 'west' } ] },
{ 'dungeons': [ 0x0041, 0b0101, 0b0111 ], 'java': [ 'minecraft:ladder', { 'facing': 'east' } ] },
{ 'dungeons': [ 0x0042, 0b0000 ], 'java': [ 'minecraft:rail', { 'shape': 'north_south' } ] },
{ 'dungeons': [ 0x0042, 0b0001 ], 'java': [ 'minecraft:rail', { 'shape': 'east_west' } ] },
{ 'dungeons': [ 0x0042, 0b0010 ], 'java': [ 'minecraft:rail', { 'shape': 'ascending_east' } ] },
{ 'dungeons': [ 0x0042, 0b0011 ], 'java': [ 'minecraft:rail', { 'shape': 'ascending_west' } ] },
{ 'dungeons': [ 0x0042, 0b0100 ], 'java': [ 'minecraft:rail', { 'shape': 'ascending_north' } ] },
{ 'dungeons': [ 0x0042, 0b0101 ], 'java': [ 'minecraft:rail', { 'shape': 'ascending_south' } ] },
{ 'dungeons': [ 0x0042, 0b0110 ], 'java': [ 'minecraft:rail', { 'shape': 'south_east' } ] },
{ 'dungeons': [ 0x0042, 0b0111 ], 'java': [ 'minecraft:rail', { 'shape': 'south_west' } ] },
{ 'dungeons': [ 0x0042, 0b1000 ], 'java': [ 'minecraft:rail', { 'shape': 'north_west' } ] },
{ 'dungeons': [ 0x0042, 0b1001 ], 'java': [ 'minecraft:rail', { 'shape': 'north_east' } ] },
{ 'dungeons': [ 0x0043, 0b0000 ], 'java': [ 'minecraft:cobblestone_stairs', { 'facing': 'east', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0043, 0b0001 ], 'java': [ 'minecraft:cobblestone_stairs', { 'facing': 'west', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0043, 0b0010 ], 'java': [ 'minecraft:cobblestone_stairs', { 'facing': 'south', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0043, 0b0011 ], 'java': [ 'minecraft:cobblestone_stairs', { 'facing': 'north', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0043, 0b0100 ], 'java': [ 'minecraft:cobblestone_stairs', { 'facing': 'east', 'half': 'top' } ] },
{ 'dungeons': [ 0x0043, 0b0101 ], 'java': [ 'minecraft:cobblestone_stairs', { 'facing': 'west', 'half': 'top' } ] },
{ 'dungeons': [ 0x0043, 0b0110 ], 'java': [ 'minecraft:cobblestone_stairs', { 'facing': 'south', 'half': 'top' } ] },
{ 'dungeons': [ 0x0043, 0b0111 ], 'java': [ 'minecraft:cobblestone_stairs', { 'facing': 'north', 'half': 'top' } ] },
{ 'dungeons': [ 0x0044, 0b0010 ], 'java': [ 'minecraft:oak_wall_sign', { 'facing': 'north' } ] },
{ 'dungeons': [ 0x0044, 0b0011 ], 'java': [ 'minecraft:oak_wall_sign', { 'facing': 'south' } ] },
{ 'dungeons': [ 0x0044, 0b0100 ], 'java': [ 'minecraft:oak_wall_sign', { 'facing': 'west' } ] },
{ 'dungeons': [ 0x0044, 0b0101 ], 'java': [ 'minecraft:oak_wall_sign', { 'facing': 'east' } ] },
{ 'dungeons': [ 0x0046, 0b0000 ], 'java': [ 'minecraft:stone_pressure_plate', { 'powered': 'false' } ] },
{ 'dungeons': [ 0x0046, 0b0001 ], 'java': [ 'minecraft:stone_pressure_plate', { 'powered': 'true' } ] },
{ 'dungeons': [ 0x0049, 0b0000 ], 'java': [ 'minecraft:redstone_ore', { 'lit': 'false' } ] },
{ 'dungeons': [ 0x004a, 0b0000 ], 'java': [ 'minecraft:redstone_ore', { 'lit': 'true' } ] },
{ 'dungeons': [ 0x004e, 0b0000, 0b0111 ], 'java': [ 'minecraft:snow', { 'layers': '1' } ] },
{ 'dungeons': [ 0x004e, 0b0001, 0b0111 ], 'java': [ 'minecraft:snow', { 'layers': '2' } ] },
{ 'dungeons': [ 0x004e, 0b0010, 0b0111 ], 'java': [ 'minecraft:snow', { 'layers': '3' } ] },
{ 'dungeons': [ 0x004e, 0b0011, 0b0111 ], 'java': [ 'minecraft:snow', { 'layers': '4' } ] },
{ 'dungeons': [ 0x004e, 0b0100, 0b0111 ], 'java': [ 'minecraft:snow', { 'layers': '5' } ] },
{ 'dungeons': [ 0x004e, 0b0101, 0b0111 ], 'java': [ 'minecraft:snow', { 'layers': '6' } ] },
{ 'dungeons': [ 0x004e, 0b0110, 0b0111 ], 'java': [ 'minecraft:snow', { 'layers': '7' } ] },
{ 'dungeons': [ 0x004e, 0b0111, 0b0111 ], 'java': [ 'minecraft:snow', { 'layers': '8' } ] },
{ 'dungeons': [ 0x004b, 0b0001 ], 'java': [ 'minecraft:redstone_wall_torch', { 'lit': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x004b, 0b0010 ], 'java': [ 'minecraft:redstone_wall_torch', { 'lit': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x004b, 0b0011 ], 'java': [ 'minecraft:redstone_wall_torch', { 'lit': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x004b, 0b0100 ], 'java': [ 'minecraft:redstone_wall_torch', { 'lit': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x004b, 0b0101 ], 'java': [ 'minecraft:redstone_torch', { 'lit': 'false' } ] },
{ 'dungeons': [ 0x004c, 0b0001 ], 'java': [ 'minecraft:redstone_wall_torch', { 'lit': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x004c, 0b0010 ], 'java': [ 'minecraft:redstone_wall_torch', { 'lit': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x004c, 0b0011 ], 'java': [ 'minecraft:redstone_wall_torch', { 'lit': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x004c, 0b0100 ], 'java': [ 'minecraft:redstone_wall_torch', { 'lit': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x004c, 0b0101 ], 'java': [ 'minecraft:redstone_torch', { 'lit': 'true' } ] },
{ 'dungeons': [ 0x004d, 0b0000 ], 'java': [ 'minecraft:stone_button', { 'face': 'ceiling' } ] },
{ 'dungeons': [ 0x004d, 0b0001 ], 'java': [ 'minecraft:stone_button', { 'face': 'floor' } ] },
{ 'dungeons': [ 0x004d, 0b0010 ], 'java': [ 'minecraft:stone_button', { 'face': 'wall', 'facing': 'north' } ] },
{ 'dungeons': [ 0x004d, 0b0011 ], 'java': [ 'minecraft:stone_button', { 'face': 'wall', 'facing': 'south' } ] },
{ 'dungeons': [ 0x004d, 0b0100 ], 'java': [ 'minecraft:stone_button', { 'face': 'wall', 'facing': 'west' } ] },
{ 'dungeons': [ 0x004d, 0b0101 ], 'java': [ 'minecraft:stone_button', { 'face': 'wall', 'facing': 'east' } ] },
{ 'dungeons': [ 0x004f, 0b0000 ], 'java': [ 'minecraft:ice' ] },
{ 'dungeons': [ 0x0050, 0b0000 ], 'java': [ 'minecraft:snow_block' ] },
{ 'dungeons': [ 0x0051, 0b0000 ], 'java': [ 'minecraft:cactus', { 'age': '0' } ] },
{ 'dungeons': [ 0x0051, 0b0001 ], 'java': [ 'minecraft:cactus', { 'age': '1' } ] },
{ 'dungeons': [ 0x0051, 0b0010 ], 'java': [ 'minecraft:cactus', { 'age': '2' } ] },
{ 'dungeons': [ 0x0051, 0b0011 ], 'java': [ 'minecraft:cactus', { 'age': '3' } ] },
{ 'dungeons': [ 0x0051, 0b0100 ], 'java': [ 'minecraft:cactus', { 'age': '4' } ] },
{ 'dungeons': [ 0x0051, 0b0101 ], 'java': [ 'minecraft:cactus', { 'age': '5' } ] },
{ 'dungeons': [ 0x0051, 0b0110 ], 'java': [ 'minecraft:cactus', { 'age': '6' } ] },
{ 'dungeons': [ 0x0051, 0b0111 ], 'java': [ 'minecraft:cactus', { 'age': '7' } ] },
{ 'dungeons': [ 0x0051, 0b1000 ], 'java': [ 'minecraft:cactus', { 'age': '8' } ] },
{ 'dungeons': [ 0x0051, 0b1001 ], 'java': [ 'minecraft:cactus', { 'age': '9' } ] },
{ 'dungeons': [ 0x0051, 0b1010 ], 'java': [ 'minecraft:cactus', { 'age': '10' } ] },
{ 'dungeons': [ 0x0051, 0b1011 ], 'java': [ 'minecraft:cactus', { 'age': '11' } ] },
{ 'dungeons': [ 0x0051, 0b1100 ], 'java': [ 'minecraft:cactus', { 'age': '12' } ] },
{ 'dungeons': [ 0x0051, 0b1101 ], 'java': [ 'minecraft:cactus', { 'age': '13' } ] },
{ 'dungeons': [ 0x0051, 0b1110 ], 'java': [ 'minecraft:cactus', { 'age': '14' } ] },
{ 'dungeons': [ 0x0051, 0b1111 ], 'java': [ 'minecraft:cactus', { 'age': '15' } ] },
{ 'dungeons': [ 0x0052, 0b0000 ], 'java': [ 'minecraft:clay' ] },
{ 'dungeons': [ 0x0053, 0b0000 ], 'java': [ 'minecraft:sugar_cane', { 'age': '0' } ] },
{ 'dungeons': [ 0x0053, 0b0001 ], 'java': [ 'minecraft:sugar_cane', { 'age': '1' } ] },
{ 'dungeons': [ 0x0053, 0b0010 ], 'java': [ 'minecraft:sugar_cane', { 'age': '2' } ] },
{ 'dungeons': [ 0x0053, 0b0011 ], 'java': [ 'minecraft:sugar_cane', { 'age': '3' } ] },
{ 'dungeons': [ 0x0053, 0b0100 ], 'java': [ 'minecraft:sugar_cane', { 'age': '4' } ] },
{ 'dungeons': [ 0x0053, 0b0101 ], 'java': [ 'minecraft:sugar_cane', { 'age': '5' } ] },
{ 'dungeons': [ 0x0053, 0b0110 ], 'java': [ 'minecraft:sugar_cane', { 'age': '6' } ] },
{ 'dungeons': [ 0x0053, 0b0111 ], 'java': [ 'minecraft:sugar_cane', { 'age': '7' } ] },
{ 'dungeons': [ 0x0053, 0b1000 ], 'java': [ 'minecraft:sugar_cane', { 'age': '8' } ] },
{ 'dungeons': [ 0x0053, 0b1001 ], 'java': [ 'minecraft:sugar_cane', { 'age': '9' } ] },
{ 'dungeons': [ 0x0053, 0b1010 ], 'java': [ 'minecraft:sugar_cane', { 'age': '10' } ] },
{ 'dungeons': [ 0x0053, 0b1011 ], 'java': [ 'minecraft:sugar_cane', { 'age': '11' } ] },
{ 'dungeons': [ 0x0053, 0b1100 ], 'java': [ 'minecraft:sugar_cane', { 'age': '12' } ] },
{ 'dungeons': [ 0x0053, 0b1101 ], 'java': [ 'minecraft:sugar_cane', { 'age': '13' } ] },
{ 'dungeons': [ 0x0053, 0b1110 ], 'java': [ 'minecraft:sugar_cane', { 'age': '14' } ] },
{ 'dungeons': [ 0x0053, 0b1111 ], 'java': [ 'minecraft:sugar_cane', { 'age': '15' } ] },
{ 'dungeons': [ 0x0055, 0b0000 ], 'java': [ 'minecraft:oak_fence' ] },
{ 'dungeons': [ 0x0055, 0b0001 ], 'java': [ 'minecraft:spruce_fence' ] },
{ 'dungeons': [ 0x0055, 0b0010 ], 'java': [ 'minecraft:birch_fence' ] },
{ 'dungeons': [ 0x0055, 0b0011 ], 'java': [ 'minecraft:jungle_fence' ] },
{ 'dungeons': [ 0x0055, 0b0100 ], 'java': [ 'minecraft:acacia_fence' ] },
{ 'dungeons': [ 0x0055, 0b0101 ], 'java': [ 'minecraft:dark_oak_fence' ] },
{ 'dungeons': [ 0x0056, 0b0000 ], 'java': [ 'minecraft:carved_pumpkin', { 'facing': 'east' } ] },
{ 'dungeons': [ 0x0056, 0b0001 ], 'java': [ 'minecraft:carved_pumpkin', { 'facing': 'west' } ] },
{ 'dungeons': [ 0x0056, 0b0010 ], 'java': [ 'minecraft:carved_pumpkin', { 'facing': 'north' } ] },
{ 'dungeons': [ 0x0056, 0b0011 ], 'java': [ 'minecraft:carved_pumpkin', { 'facing': 'south' } ] },
{ 'dungeons': [ 0x0057, 0b0000 ], 'java': [ 'minecraft:netherrack' ] },
{ 'dungeons': [ 0x0058, 0b0000 ], 'java': [ 'minecraft:soul_sand' ] },
{ 'dungeons': [ 0x0059, 0b0000 ], 'java': [ 'minecraft:glowstone' ] },
{ 'dungeons': [ 0x005b, 0b0000 ], 'java': [ 'minecraft:jack_o_lantern', { 'facing': 'south' } ] },
{ 'dungeons': [ 0x005b, 0b0001 ], 'java': [ 'minecraft:jack_o_lantern', { 'facing': 'west' } ] },
{ 'dungeons': [ 0x005b, 0b0010 ], 'java': [ 'minecraft:jack_o_lantern', { 'facing': 'north' } ] },
{ 'dungeons': [ 0x005b, 0b0011 ], 'java': [ 'minecraft:jack_o_lantern', { 'facing': 'east' } ] },
{ 'dungeons': [ 0x005d, 0b0000 ], 'java': [ 'minecraft:repeater', { 'facing': 'north', 'delay': '1', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b0001 ], 'java': [ 'minecraft:repeater', { 'facing': 'east', 'delay': '1', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b0010 ], 'java': [ 'minecraft:repeater', { 'facing': 'south', 'delay': '1', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b0011 ], 'java': [ 'minecraft:repeater', { 'facing': 'west', 'delay': '1', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b0100 ], 'java': [ 'minecraft:repeater', { 'facing': 'north', 'delay': '2', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b0101 ], 'java': [ 'minecraft:repeater', { 'facing': 'east', 'delay': '2', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b0110 ], 'java': [ 'minecraft:repeater', { 'facing': 'south', 'delay': '2', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b0111 ], 'java': [ 'minecraft:repeater', { 'facing': 'west', 'delay': '2', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b1000 ], 'java': [ 'minecraft:repeater', { 'facing': 'north', 'delay': '3', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b1001 ], 'java': [ 'minecraft:repeater', { 'facing': 'east', 'delay': '3', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b1010 ], 'java': [ 'minecraft:repeater', { 'facing': 'south', 'delay': '3', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b1011 ], 'java': [ 'minecraft:repeater', { 'facing': 'west', 'delay': '3', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b1100 ], 'java': [ 'minecraft:repeater', { 'facing': 'north', 'delay': '4', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b1101 ], 'java': [ 'minecraft:repeater', { 'facing': 'east', 'delay': '4', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b1110 ], 'java': [ 'minecraft:repeater', { 'facing': 'south', 'delay': '4', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005d, 0b1111 ], 'java': [ 'minecraft:repeater', { 'facing': 'west', 'delay': '4', 'powered': 'false' } ] },
{ 'dungeons': [ 0x005e, 0b0000 ], 'java': [ 'minecraft:repeater', { 'facing': 'north', 'delay': '1', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b0001 ], 'java': [ 'minecraft:repeater', { 'facing': 'east', 'delay': '1', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b0010 ], 'java': [ 'minecraft:repeater', { 'facing': 'south', 'delay': '1', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b0011 ], 'java': [ 'minecraft:repeater', { 'facing': 'west', 'delay': '1', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b0100 ], 'java': [ 'minecraft:repeater', { 'facing': 'north', 'delay': '2', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b0101 ], 'java': [ 'minecraft:repeater', { 'facing': 'east', 'delay': '2', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b0110 ], 'java': [ 'minecraft:repeater', { 'facing': 'south', 'delay': '2', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b0111 ], 'java': [ 'minecraft:repeater', { 'facing': 'west', 'delay': '2', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b1000 ], 'java': [ 'minecraft:repeater', { 'facing': 'north', 'delay': '3', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b1001 ], 'java': [ 'minecraft:repeater', { 'facing': 'east', 'delay': '3', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b1010 ], 'java': [ 'minecraft:repeater', { 'facing': 'south', 'delay': '3', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b1011 ], 'java': [ 'minecraft:repeater', { 'facing': 'west', 'delay': '3', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b1100 ], 'java': [ 'minecraft:repeater', { 'facing': 'north', 'delay': '4', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b1101 ], 'java': [ 'minecraft:repeater', { 'facing': 'east', 'delay': '4', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b1110 ], 'java': [ 'minecraft:repeater', { 'facing': 'south', 'delay': '4', 'powered': 'true' } ] },
{ 'dungeons': [ 0x005e, 0b1111 ], 'java': [ 'minecraft:repeater', { 'facing': 'west', 'delay': '4', 'powered': 'true' } ] },
{ 'dungeons': [ 0x0060, 0b0000 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'false', 'half': 'bottom', 'facing': 'east' } ] },
{ 'dungeons': [ 0x0060, 0b0001 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'false', 'half': 'bottom', 'facing': 'west' } ] },
{ 'dungeons': [ 0x0060, 0b0010 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'false', 'half': 'bottom', 'facing': 'south' } ] },
{ 'dungeons': [ 0x0060, 0b0011 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'false', 'half': 'bottom', 'facing': 'north' } ] },
{ 'dungeons': [ 0x0060, 0b0100 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'false', 'half': 'top', 'facing': 'east' } ] },
{ 'dungeons': [ 0x0060, 0b0101 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'false', 'half': 'top', 'facing': 'west' } ] },
{ 'dungeons': [ 0x0060, 0b0110 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'false', 'half': 'top', 'facing': 'south' } ] },
{ 'dungeons': [ 0x0060, 0b0111 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'false', 'half': 'top', 'facing': 'north' } ] },
{ 'dungeons': [ 0x0060, 0b1000 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'true', 'half': 'bottom', 'facing': 'east' } ] },
{ 'dungeons': [ 0x0060, 0b1001 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'true', 'half': 'bottom', 'facing': 'west' } ] },
{ 'dungeons': [ 0x0060, 0b1010 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'true', 'half': 'bottom', 'facing': 'south' } ] },
{ 'dungeons': [ 0x0060, 0b1011 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'true', 'half': 'bottom', 'facing': 'north' } ] },
{ 'dungeons': [ 0x0060, 0b1100 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'true', 'half': 'top', 'facing': 'east' } ] },
{ 'dungeons': [ 0x0060, 0b1101 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'true', 'half': 'top', 'facing': 'west' } ] },
{ 'dungeons': [ 0x0060, 0b1110 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'true', 'half': 'top', 'facing': 'south' } ] },
{ 'dungeons': [ 0x0060, 0b1111 ], 'java': [ 'minecraft:oak_trapdoor', { 'open': 'true', 'half': 'top', 'facing': 'north' } ] },
{ 'dungeons': [ 0x0062, 0b0000 ], 'java': [ 'minecraft:stone_bricks' ] },
{ 'dungeons': [ 0x0062, 0b0001 ], 'java': [ 'minecraft:mossy_stone_bricks' ] },
{ 'dungeons': [ 0x0062, 0b0010 ], 'java': [ 'minecraft:cracked_stone_bricks' ] },
{ 'dungeons': [ 0x0062, 0b0011 ], 'java': [ 'minecraft:chiseled_stone_bricks' ] },
{ 'dungeons': [ 0x0062, 0b0100 ], 'java': [ 'minecraft:netherite_block' ] },
{ 'dungeons': [ 0x0063, 0b0000 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'false', 'south': 'false', 'up': 'false', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b0001 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'false', 'west': 'true', 'north': 'true', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b0010 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'true', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b0011 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'true', 'west': 'false', 'north': 'true', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b0100 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'false', 'west': 'true', 'north': 'false', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b0101 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'false', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b0110 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'true', 'west': 'false', 'north': 'false', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b0111 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'false', 'west': 'true', 'north': 'false', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b1000 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'false', 'south': 'true', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b1001 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'true', 'west': 'false', 'north': 'false', 'south': 'true', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b1010 ], 'java': [ 'minecraft:mushroom_stem', { 'east': 'true', 'west': 'true', 'north': 'true', 'south': 'true', 'up': 'false', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b1011 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'false', 'south': 'false', 'up': 'false', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b1100 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'false', 'south': 'false', 'up': 'false', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b1101 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'false', 'south': 'false', 'up': 'false', 'down': 'false' } ] },
{ 'dungeons': [ 0x0063, 0b1110 ], 'java': [ 'minecraft:brown_mushroom_block', { 'east': 'true', 'west': 'true', 'north': 'true', 'south': 'true', 'up': 'true', 'down': 'true' } ] },
{ 'dungeons': [ 0x0063, 0b1111 ], 'java': [ 'minecraft:mushroom_stem', { 'east': 'true', 'west': 'true', 'north': 'true', 'south': 'true', 'up': 'true', 'down': 'true' } ] },
{ 'dungeons': [ 0x0064, 0b0000 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'false', 'south': 'false', 'up': 'false', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b0001 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'false', 'west': 'true', 'north': 'true', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b0010 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'true', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b0011 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'true', 'west': 'false', 'north': 'true', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b0100 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'false', 'west': 'true', 'north': 'false', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b0101 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'false', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b0110 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'true', 'west': 'false', 'north': 'false', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b0111 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'false', 'west': 'true', 'north': 'false', 'south': 'false', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b1000 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'false', 'south': 'true', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b1001 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'true', 'west': 'false', 'north': 'false', 'south': 'true', 'up': 'true', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b1010 ], 'java': [ 'minecraft:mushroom_stem', { 'east': 'true', 'west': 'true', 'north': 'true', 'south': 'true', 'up': 'false', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b1011 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'false', 'south': 'false', 'up': 'false', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b1100 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'false', 'south': 'false', 'up': 'false', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b1101 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'false', 'west': 'false', 'north': 'false', 'south': 'false', 'up': 'false', 'down': 'false' } ] },
{ 'dungeons': [ 0x0064, 0b1110 ], 'java': [ 'minecraft:red_mushroom_block', { 'east': 'true', 'west': 'true', 'north': 'true', 'south': 'true', 'up': 'true', 'down': 'true' } ] },
{ 'dungeons': [ 0x0064, 0b1111 ], 'java': [ 'minecraft:mushroom_stem', { 'east': 'true', 'west': 'true', 'north': 'true', 'south': 'true', 'up': 'true', 'down': 'true' } ] },
{ 'dungeons': [ 0x0065, 0b0000 ], 'java': [ 'minecraft:iron_bars' ] },
{ 'dungeons': [ 0x0066, 0b0000 ], 'java': [ 'minecraft:glass_pane' ] },
{ 'dungeons': [ 0x0067, 0b0000 ], 'java': [ 'minecraft:melon' ] },
{ 'dungeons': [ 0x0068, 0b0000 ], 'java': [ 'minecraft:pumpkin_stem', { 'age': '0' } ] },
{ 'dungeons': [ 0x0068, 0b0001 ], 'java': [ 'minecraft:pumpkin_stem', { 'age': '1' } ] },
{ 'dungeons': [ 0x0068, 0b0010 ], 'java': [ 'minecraft:pumpkin_stem', { 'age': '2' } ] },
{ 'dungeons': [ 0x0068, 0b0011 ], 'java': [ 'minecraft:pumpkin_stem', { 'age': '3' } ] },
{ 'dungeons': [ 0x0068, 0b0100 ], 'java': [ 'minecraft:pumpkin_stem', { 'age': '4' } ] },
{ 'dungeons': [ 0x0068, 0b0101 ], 'java': [ 'minecraft:pumpkin_stem', { 'age': '5' } ] },
{ 'dungeons': [ 0x0068, 0b0110 ], 'java': [ 'minecraft:pumpkin_stem', { 'age': '6' } ] },
{ 'dungeons': [ 0x0068, 0b0111 ], 'java': [ 'minecraft:pumpkin_stem', { 'age': '7' } ] },
{ 'dungeons': [ 0x0069, 0b0000 ], 'java': [ 'minecraft:melon_stem', { 'age': '0' } ] },
{ 'dungeons': [ 0x0069, 0b0001 ], 'java': [ 'minecraft:melon_stem', { 'age': '1' } ] },
{ 'dungeons': [ 0x0069, 0b0010 ], 'java': [ 'minecraft:melon_stem', { 'age': '2' } ] },
{ 'dungeons': [ 0x0069, 0b0011 ], 'java': [ 'minecraft:melon_stem', { 'age': '3' } ] },
{ 'dungeons': [ 0x0069, 0b0100 ], 'java': [ 'minecraft:melon_stem', { 'age': '4' } ] },
{ 'dungeons': [ 0x0069, 0b0101 ], 'java': [ 'minecraft:melon_stem', { 'age': '5' } ] },
{ 'dungeons': [ 0x0069, 0b0110 ], 'java': [ 'minecraft:melon_stem', { 'age': '6' } ] },
{ 'dungeons': [ 0x0069, 0b0111 ], 'java': [ 'minecraft:melon_stem', { 'age': '7' } ] },
{ 'dungeons': [ 0x006a, 0b0000 ], 'java': [ 'minecraft:vine', { 'east': 'false', 'north': 'false', 'west': 'false', 'south': 'false' } ] },
{ 'dungeons': [ 0x006a, 0b0001 ], 'java': [ 'minecraft:vine', { 'east': 'false', 'north': 'false', 'west': 'false', 'south': 'true' } ] },
{ 'dungeons': [ 0x006a, 0b0010 ], 'java': [ 'minecraft:vine', { 'east': 'false', 'north': 'false', 'west': 'true', 'south': 'false' } ] },
{ 'dungeons': [ 0x006a, 0b0011 ], 'java': [ 'minecraft:vine', { 'east': 'false', 'north': 'false', 'west': 'true', 'south': 'true' } ] },
{ 'dungeons': [ 0x006a, 0b0100 ], 'java': [ 'minecraft:vine', { 'east': 'false', 'north': 'true', 'west': 'false', 'south': 'false' } ] },
{ 'dungeons': [ 0x006a, 0b0101 ], 'java': [ 'minecraft:vine', { 'east': 'false', 'north': 'true', 'west': 'false', 'south': 'true' } ] },
{ 'dungeons': [ 0x006a, 0b0110 ], 'java': [ 'minecraft:vine', { 'east': 'false', 'north': 'true', 'west': 'true', 'south': 'false' } ] },
{ 'dungeons': [ 0x006a, 0b0111 ], 'java': [ 'minecraft:vine', { 'east': 'false', 'north': 'true', 'west': 'true', 'south': 'true' } ] },
{ 'dungeons': [ 0x006a, 0b1000 ], 'java': [ 'minecraft:vine', { 'east': 'true', 'north': 'false', 'west': 'false', 'south': 'false' } ] },
{ 'dungeons': [ 0x006a, 0b1001 ], 'java': [ 'minecraft:vine', { 'east': 'true', 'north': 'false', 'west': 'false', 'south': 'true' } ] },
{ 'dungeons': [ 0x006a, 0b1010 ], 'java': [ 'minecraft:vine', { 'east': 'true', 'north': 'false', 'west': 'true', 'south': 'false' } ] },
{ 'dungeons': [ 0x006a, 0b1011 ], 'java': [ 'minecraft:vine', { 'east': 'true', 'north': 'false', 'west': 'true', 'south': 'true' } ] },
{ 'dungeons': [ 0x006a, 0b1100 ], 'java': [ 'minecraft:vine', { 'east': 'true', 'north': 'true', 'west': 'false', 'south': 'false' } ] },
{ 'dungeons': [ 0x006a, 0b1101 ], 'java': [ 'minecraft:vine', { 'east': 'true', 'north': 'true', 'west': 'false', 'south': 'true' } ] },
{ 'dungeons': [ 0x006a, 0b1110 ], 'java': [ 'minecraft:vine', { 'east': 'true', 'north': 'true', 'west': 'true', 'south': 'false' } ] },
{ 'dungeons': [ 0x006a, 0b1111 ], 'java': [ 'minecraft:vine', { 'east': 'true', 'north': 'true', 'west': 'true', 'south': 'true' } ] },
{ 'dungeons': [ 0x006c, 0b0000 ], 'java': [ 'minecraft:brick_stairs', { 'facing': 'east', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x006c, 0b0001 ], 'java': [ 'minecraft:brick_stairs', { 'facing': 'west', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x006c, 0b0010 ], 'java': [ 'minecraft:brick_stairs', { 'facing': 'south', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x006c, 0b0011 ], 'java': [ 'minecraft:brick_stairs', { 'facing': 'north', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x006c, 0b0100 ], 'java': [ 'minecraft:brick_stairs', { 'facing': 'east', 'half': 'top' } ] },
{ 'dungeons': [ 0x006c, 0b0101 ], 'java': [ 'minecraft:brick_stairs', { 'facing': 'west', 'half': 'top' } ] },
{ 'dungeons': [ 0x006c, 0b0110 ], 'java': [ 'minecraft:brick_stairs', { 'facing': 'south', 'half': 'top' } ] },
{ 'dungeons': [ 0x006c, 0b0111 ], 'java': [ 'minecraft:brick_stairs', { 'facing': 'north', 'half': 'top' } ] },
{ 'dungeons': [ 0x006d, 0b0000 ], 'java': [ 'minecraft:stone_brick_stairs', { 'facing': 'east', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x006d, 0b0001 ], 'java': [ 'minecraft:stone_brick_stairs', { 'facing': 'west', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x006d, 0b0010 ], 'java': [ 'minecraft:stone_brick_stairs', { 'facing': 'south', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x006d, 0b0011 ], 'java': [ 'minecraft:stone_brick_stairs', { 'facing': 'north', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x006d, 0b0100 ], 'java': [ 'minecraft:stone_brick_stairs', { 'facing': 'east', 'half': 'top' } ] },
{ 'dungeons': [ 0x006d, 0b0101 ], 'java': [ 'minecraft:stone_brick_stairs', { 'facing': 'west', 'half': 'top' } ] },
{ 'dungeons': [ 0x006d, 0b0110 ], 'java': [ 'minecraft:stone_brick_stairs', { 'facing': 'south', 'half': 'top' } ] },
{ 'dungeons': [ 0x006d, 0b0111 ], 'java': [ 'minecraft:stone_brick_stairs', { 'facing': 'north', 'half': 'top' } ] },
{ 'dungeons': [ 0x006e, 0b0000 ], 'java': [ 'minecraft:podzol' ] }, # Out of bounds grass
{ 'dungeons': [ 0x006f, 0b0000 ], 'java': [ 'minecraft:lily_pad' ] },
{ 'dungeons': [ 0x0070, 0b0000 ], 'java': [ 'minecraft:nether_bricks' ] },
{ 'dungeons': [ 0x0071, 0b0000 ], 'java': [ 'minecraft:nether_brick_fence' ] },
{ 'dungeons': [ 0x0072, 0b0000 ], 'java': [ 'minecraft:nether_brick_stairs', { 'facing': 'east', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0072, 0b0001 ], 'java': [ 'minecraft:nether_brick_stairs', { 'facing': 'west', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0072, 0b0010 ], 'java': [ 'minecraft:nether_brick_stairs', { 'facing': 'south', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0072, 0b0011 ], 'java': [ 'minecraft:nether_brick_stairs', { 'facing': 'north', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0072, 0b0100 ], 'java': [ 'minecraft:nether_brick_stairs', { 'facing': 'east', 'half': 'top' } ] },
{ 'dungeons': [ 0x0072, 0b0101 ], 'java': [ 'minecraft:nether_brick_stairs', { 'facing': 'west', 'half': 'top' } ] },
{ 'dungeons': [ 0x0072, 0b0110 ], 'java': [ 'minecraft:nether_brick_stairs', { 'facing': 'south', 'half': 'top' } ] },
{ 'dungeons': [ 0x0072, 0b0111 ], 'java': [ 'minecraft:nether_brick_stairs', { 'facing': 'north', 'half': 'top' } ] },
{ 'dungeons': [ 0x0074, 0b0000 ], 'java': [ 'minecraft:enchanting_table' ] },
{ 'dungeons': [ 0x0075, 0b0000 ], 'java': [ 'minecraft:brewing_stand' ] },
{ 'dungeons': [ 0x0076, 0b0000 ], 'java': [ 'minecraft:cauldron', { 'level': '0' } ] },
{ 'dungeons': [ 0x0076, 0b0001 ], 'java': [ 'minecraft:cauldron', { 'level': '0' } ] },
{ 'dungeons': [ 0x0076, 0b0010 ], 'java': [ 'minecraft:cauldron', { 'level': '1' } ] },
{ 'dungeons': [ 0x0076, 0b0011 ], 'java': [ 'minecraft:cauldron', { 'level': '1' } ] },
{ 'dungeons': [ 0x0076, 0b0100 ], 'java': [ 'minecraft:cauldron', { 'level': '2' } ] },
{ 'dungeons': [ 0x0076, 0b0101 ], 'java': [ 'minecraft:cauldron', { 'level': '2' } ] },
{ 'dungeons': [ 0x0076, 0b0110 ], 'java': [ 'minecraft:cauldron', { 'level': '3' } ] },
{ 'dungeons': [ 0x0078, 0b0000 ], 'java': [ 'minecraft:end_portal_frame' ] },
{ 'dungeons': [ 0x007b, 0b0000 ], 'java': [ 'minecraft:redstone_lamp' ] },
{ 'dungeons': [ 0x007d, 0b0000 ], 'java': [ 'minecraft:dropper', { 'triggered': 'false', 'facing': 'down' } ] },
{ 'dungeons': [ 0x007d, 0b0001 ], 'java': [ 'minecraft:dropper', { 'triggered': 'false', 'facing': 'up' } ] },
{ 'dungeons': [ 0x007d, 0b0010 ], 'java': [ 'minecraft:dropper', { 'triggered': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x007d, 0b0011 ], 'java': [ 'minecraft:dropper', { 'triggered': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x007d, 0b0100 ], 'java': [ 'minecraft:dropper', { 'triggered': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x007d, 0b0101 ], 'java': [ 'minecraft:dropper', { 'triggered': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x007d, 0b1000 ], 'java': [ 'minecraft:dropper', { 'triggered': 'true', 'facing': 'down' } ] },
{ 'dungeons': [ 0x007d, 0b1001 ], 'java': [ 'minecraft:dropper', { 'triggered': 'true', 'facing': 'up' } ] },
{ 'dungeons': [ 0x007d, 0b1010 ], 'java': [ 'minecraft:dropper', { 'triggered': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x007d, 0b1011 ], 'java': [ 'minecraft:dropper', { 'triggered': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x007d, 0b1100 ], 'java': [ 'minecraft:dropper', { 'triggered': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x007d, 0b1101 ], 'java': [ 'minecraft:dropper', { 'triggered': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x007f, 0b0000 ], 'java': [ 'minecraft:cocoa', { 'age': '0', 'facing': 'north' } ] },
{ 'dungeons': [ 0x007f, 0b0001 ], 'java': [ 'minecraft:cocoa', { 'age': '0', 'facing': 'east' } ] },
{ 'dungeons': [ 0x007f, 0b0010 ], 'java': [ 'minecraft:cocoa', { 'age': '0', 'facing': 'south' } ] },
{ 'dungeons': [ 0x007f, 0b0011 ], 'java': [ 'minecraft:cocoa', { 'age': '0', 'facing': 'west' } ] },
{ 'dungeons': [ 0x007f, 0b0100 ], 'java': [ 'minecraft:cocoa', { 'age': '1', 'facing': 'north' } ] },
{ 'dungeons': [ 0x007f, 0b0101 ], 'java': [ 'minecraft:cocoa', { 'age': '1', 'facing': 'east' } ] },
{ 'dungeons': [ 0x007f, 0b0110 ], 'java': [ 'minecraft:cocoa', { 'age': '1', 'facing': 'south' } ] },
{ 'dungeons': [ 0x007f, 0b0111 ], 'java': [ 'minecraft:cocoa', { 'age': '1', 'facing': 'west' } ] },
{ 'dungeons': [ 0x007f, 0b1000 ], 'java': [ 'minecraft:cocoa', { 'age': '2', 'facing': 'north' } ] },
{ 'dungeons': [ 0x007f, 0b1001 ], 'java': [ 'minecraft:cocoa', { 'age': '2', 'facing': 'east' } ] },
{ 'dungeons': [ 0x007f, 0b1010 ], 'java': [ 'minecraft:cocoa', { 'age': '2', 'facing': 'south' } ] },
{ 'dungeons': [ 0x007f, 0b1011 ], 'java': [ 'minecraft:cocoa', { 'age': '2', 'facing': 'west' } ] },
{ 'dungeons': [ 0x0080, 0b0000 ], 'java': [ 'minecraft:sandstone_stairs', { 'facing': 'east', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0080, 0b0001 ], 'java': [ 'minecraft:sandstone_stairs', { 'facing': 'west', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0080, 0b0010 ], 'java': [ 'minecraft:sandstone_stairs', { 'facing': 'south', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0080, 0b0011 ], 'java': [ 'minecraft:sandstone_stairs', { 'facing': 'north', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0080, 0b0100 ], 'java': [ 'minecraft:sandstone_stairs', { 'facing': 'east', 'half': 'top' } ] },
{ 'dungeons': [ 0x0080, 0b0101 ], 'java': [ 'minecraft:sandstone_stairs', { 'facing': 'west', 'half': 'top' } ] },
{ 'dungeons': [ 0x0080, 0b0110 ], 'java': [ 'minecraft:sandstone_stairs', { 'facing': 'south', 'half': 'top' } ] },
{ 'dungeons': [ 0x0080, 0b0111 ], 'java': [ 'minecraft:sandstone_stairs', { 'facing': 'north', 'half': 'top' } ] },
{ 'dungeons': [ 0x0081, 0b0000 ], 'java': [ 'minecraft:emerald_ore' ] },
{ 'dungeons': [ 0x0085, 0b0000 ], 'java': [ 'minecraft:emerald_block' ] },
{ 'dungeons': [ 0x0086, 0b0000 ], 'java': [ 'minecraft:spruce_stairs', { 'facing': 'east', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0086, 0b0001 ], 'java': [ 'minecraft:spruce_stairs', { 'facing': 'west', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0086, 0b0010 ], 'java': [ 'minecraft:spruce_stairs', { 'facing': 'south', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0086, 0b0011 ], 'java': [ 'minecraft:spruce_stairs', { 'facing': 'north', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0086, 0b0100 ], 'java': [ 'minecraft:spruce_stairs', { 'facing': 'east', 'half': 'top' } ] },
{ 'dungeons': [ 0x0086, 0b0101 ], 'java': [ 'minecraft:spruce_stairs', { 'facing': 'west', 'half': 'top' } ] },
{ 'dungeons': [ 0x0086, 0b0110 ], 'java': [ 'minecraft:spruce_stairs', { 'facing': 'south', 'half': 'top' } ] },
{ 'dungeons': [ 0x0086, 0b0111 ], 'java': [ 'minecraft:spruce_stairs', { 'facing': 'north', 'half': 'top' } ] },
{ 'dungeons': [ 0x0087, 0b0000 ], 'java': [ 'minecraft:birch_stairs', { 'facing': 'east', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0087, 0b0001 ], 'java': [ 'minecraft:birch_stairs', { 'facing': 'west', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0087, 0b0010 ], 'java': [ 'minecraft:birch_stairs', { 'facing': 'south', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0087, 0b0011 ], 'java': [ 'minecraft:birch_stairs', { 'facing': 'north', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0087, 0b0100 ], 'java': [ 'minecraft:birch_stairs', { 'facing': 'east', 'half': 'top' } ] },
{ 'dungeons': [ 0x0087, 0b0101 ], 'java': [ 'minecraft:birch_stairs', { 'facing': 'west', 'half': 'top' } ] },
{ 'dungeons': [ 0x0087, 0b0110 ], 'java': [ 'minecraft:birch_stairs', { 'facing': 'south', 'half': 'top' } ] },
{ 'dungeons': [ 0x0087, 0b0111 ], 'java': [ 'minecraft:birch_stairs', { 'facing': 'north', 'half': 'top' } ] },
{ 'dungeons': [ 0x0088, 0b0000 ], 'java': [ 'minecraft:jungle_stairs', { 'facing': 'east', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0088, 0b0001 ], 'java': [ 'minecraft:jungle_stairs', { 'facing': 'west', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0088, 0b0010 ], 'java': [ 'minecraft:jungle_stairs', { 'facing': 'south', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0088, 0b0011 ], 'java': [ 'minecraft:jungle_stairs', { 'facing': 'north', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x0088, 0b0100 ], 'java': [ 'minecraft:jungle_stairs', { 'facing': 'east', 'half': 'top' } ] },
{ 'dungeons': [ 0x0088, 0b0101 ], 'java': [ 'minecraft:jungle_stairs', { 'facing': 'west', 'half': 'top' } ] },
{ 'dungeons': [ 0x0088, 0b0110 ], 'java': [ 'minecraft:jungle_stairs', { 'facing': 'south', 'half': 'top' } ] },
{ 'dungeons': [ 0x0088, 0b0111 ], 'java': [ 'minecraft:jungle_stairs', { 'facing': 'north', 'half': 'top' } ] },
{ 'dungeons': [ 0x0089, 0b0000 ], 'java': [ 'minecraft:blackstone_slab', { 'type': 'bottom' } ] }, # stonefloor1 slab
{ 'dungeons': [ 0x0089, 0b0001 ], 'java': [ 'minecraft:crimson_slab', { 'type': 'bottom' } ] }, # stonefloor2 slab
{ 'dungeons': [ 0x0089, 0b0010 ], 'java': [ 'minecraft:polished_blackstone_slab', { 'type': 'bottom' } ] }, # stonefloor3 slab
{ 'dungeons': [ 0x0089, 0b0011 ], 'java': [ 'minecraft:polished_blackstone_brick_slab', { 'type': 'bottom' } ] }, # stonefloor4 slab
{ 'dungeons': [ 0x0089, 0b0100 ], 'java': [ 'minecraft:smooth_quartz_slab', { 'type': 'bottom' } ] }, # stonefloor5 slab
{ 'dungeons': [ 0x0089, 0b0101 ], 'java': [ 'minecraft:stone_slab', { 'type': 'bottom' } ] }, # stonefloor6 slab
{ 'dungeons': [ 0x0089, 0b0110 ], 'java': [ 'minecraft:smooth_sandstone_slab', { 'type': 'bottom' } ] }, # stonefloor7 slab
{ 'dungeons': [ 0x0089, 0b0111 ], 'java': [ 'minecraft:cut_sandstone_slab', { 'type': 'bottom' } ] }, # stonefloor8 slab
{ 'dungeons': [ 0x0089, 0b1000 ], 'java': [ 'minecraft:blackstone_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x0089, 0b1001 ], 'java': [ 'minecraft:crimson_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x0089, 0b1010 ], 'java': [ 'minecraft:polished_blackstone_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x0089, 0b1011 ], 'java': [ 'minecraft:polished_blackstone_brick_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x0089, 0b1100 ], 'java': [ 'minecraft:smooth_quartz_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x0089, 0b1101 ], 'java': [ 'minecraft:stone_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x0089, 0b1110 ], 'java': [ 'minecraft:smooth_sandstone_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x0089, 0b1111 ], 'java': [ 'minecraft:cut_sandstone_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x008b, 0b0000 ], 'java': [ 'minecraft:cobblestone_wall' ] },
{ 'dungeons': [ 0x008b, 0b0001 ], 'java': [ 'minecraft:mossy_cobblestone_wall' ] },
{ 'dungeons': [ 0x008b, 0b0010 ], 'java': [ 'minecraft:granite_wall' ] },
{ 'dungeons': [ 0x008b, 0b0011 ], 'java': [ 'minecraft:diorite_wall' ] },
{ 'dungeons': [ 0x008b, 0b0100 ], 'java': [ 'minecraft:andesite_wall' ] },
{ 'dungeons': [ 0x008b, 0b0101 ], 'java': [ 'minecraft:sandstone_wall' ] },
{ 'dungeons': [ 0x008b, 0b0110 ], 'java': [ 'minecraft:brick_wall' ] },
{ 'dungeons': [ 0x008b, 0b0111 ], 'java': [ 'minecraft:stone_brick_wall' ] },
{ 'dungeons': [ 0x008b, 0b1000 ], 'java': [ 'minecraft:mossy_stone_brick_wall' ] },
{ 'dungeons': [ 0x008b, 0b1001 ], 'java': [ 'minecraft:end_stone_brick_wall' ] },
{ 'dungeons': [ 0x008b, 0b1010 ], 'java': [ 'minecraft:nether_brick_wall' ] },
{ 'dungeons': [ 0x008b, 0b1011 ], 'java': [ 'minecraft:prismarine_wall' ] },
{ 'dungeons': [ 0x008b, 0b1100 ], 'java': [ 'minecraft:red_sandstone_wall' ] },
{ 'dungeons': [ 0x008b, 0b1101 ], 'java': [ 'minecraft:red_nether_brick_wall' ] },
{ 'dungeons': [ 0x008d, 0b0000 ], 'java': [ 'minecraft:carrots', { 'age': '0' } ] },
{ 'dungeons': [ 0x008d, 0b0001 ], 'java': [ 'minecraft:carrots', { 'age': '1' } ] },
{ 'dungeons': [ 0x008d, 0b0010 ], 'java': [ 'minecraft:carrots', { 'age': '2' } ] },
{ 'dungeons': [ 0x008d, 0b0011 ], 'java': [ 'minecraft:carrots', { 'age': '3' } ] },
{ 'dungeons': [ 0x008d, 0b0100 ], 'java': [ 'minecraft:carrots', { 'age': '4' } ] },
{ 'dungeons': [ 0x008d, 0b0101 ], 'java': [ 'minecraft:carrots', { 'age': '5' } ] },
{ 'dungeons': [ 0x008d, 0b0110 ], 'java': [ 'minecraft:carrots', { 'age': '6' } ] },
{ 'dungeons': [ 0x008d, 0b0111 ], 'java': [ 'minecraft:carrots', { 'age': '7' } ] },
{ 'dungeons': [ 0x0090, 0b0001 ], 'java': [ 'minecraft:skeleton_skull' ] },
{ 'dungeons': [ 0x0090, 0b0010 ], 'java': [ 'minecraft:skeleton_wall_skull', { 'facing': 'north' } ] },
{ 'dungeons': [ 0x0090, 0b0011 ], 'java': [ 'minecraft:skeleton_wall_skull', { 'facing': 'south' } ] },
{ 'dungeons': [ 0x0090, 0b0100 ], 'java': [ 'minecraft:skeleton_wall_skull', { 'facing': 'east' } ] },
{ 'dungeons': [ 0x0090, 0b0101 ], 'java': [ 'minecraft:skeleton_wall_skull', { 'facing': 'west' } ] },
{ 'dungeons': [ 0x0091, 0b0000 ], 'java': [ 'minecraft:anvil', { 'facing': 'west' } ] },
{ 'dungeons': [ 0x0091, 0b0001 ], 'java': [ 'minecraft:anvil', { 'facing': 'north' } ] },
{ 'dungeons': [ 0x0091, 0b0010 ], 'java': [ 'minecraft:anvil', { 'facing': 'east' } ] },
{ 'dungeons': [ 0x0091, 0b0011 ], 'java': [ 'minecraft:anvil', { 'facing': 'south' } ] },
{ 'dungeons': [ 0x0091, 0b0100 ], 'java': [ 'minecraft:chipped_anvil', { 'facing': 'west' } ] },
{ 'dungeons': [ 0x0091, 0b0101 ], 'java': [ 'minecraft:chipped_anvil', { 'facing': 'north' } ] },
{ 'dungeons': [ 0x0091, 0b0110 ], 'java': [ 'minecraft:chipped_anvil', { 'facing': 'east' } ] },
{ 'dungeons': [ 0x0091, 0b0111 ], 'java': [ 'minecraft:chipped_anvil', { 'facing': 'south' } ] },
{ 'dungeons': [ 0x0091, 0b1000 ], 'java': [ 'minecraft:damaged_anvil', { 'facing': 'west' } ] },
{ 'dungeons': [ 0x0091, 0b1001 ], 'java': [ 'minecraft:damaged_anvil', { 'facing': 'north' } ] },
{ 'dungeons': [ 0x0091, 0b1010 ], 'java': [ 'minecraft:damaged_anvil', { 'facing': 'east' } ] },
{ 'dungeons': [ 0x0091, 0b1011 ], 'java': [ 'minecraft:damaged_anvil', { 'facing': 'south' } ] },
{ 'dungeons': [ 0x0095, 0b0000, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'north', 'mode': 'compare', 'powered': 'false' } ] },
{ 'dungeons': [ 0x0095, 0b0001, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'east', 'mode': 'compare', 'powered': 'false' } ] },
{ 'dungeons': [ 0x0095, 0b0010, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'south', 'mode': 'compare', 'powered': 'false' } ] },
{ 'dungeons': [ 0x0095, 0b0011, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'west', 'mode': 'compare', 'powered': 'false' } ] },
{ 'dungeons': [ 0x0095, 0b0100, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'north', 'mode': 'subtract', 'powered': 'false' } ] },
{ 'dungeons': [ 0x0095, 0b0101, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'east', 'mode': 'subtract', 'powered': 'false' } ] },
{ 'dungeons': [ 0x0095, 0b0110, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'south', 'mode': 'subtract', 'powered': 'false' } ] },
{ 'dungeons': [ 0x0095, 0b0111, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'west', 'mode': 'subtract', 'powered': 'false' } ] },
{ 'dungeons': [ 0x0096, 0b0000, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'north', 'mode': 'compare', 'powered': 'true' } ] },
{ 'dungeons': [ 0x0096, 0b0001, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'east', 'mode': 'compare', 'powered': 'true' } ] },
{ 'dungeons': [ 0x0096, 0b0010, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'south', 'mode': 'compare', 'powered': 'true' } ] },
{ 'dungeons': [ 0x0096, 0b0011, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'west', 'mode': 'compare', 'powered': 'true' } ] },
{ 'dungeons': [ 0x0096, 0b0100, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'north', 'mode': 'subtract', 'powered': 'true' } ] },
{ 'dungeons': [ 0x0096, 0b0101, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'east', 'mode': 'subtract', 'powered': 'true' } ] },
{ 'dungeons': [ 0x0096, 0b0110, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'south', 'mode': 'subtract', 'powered': 'true' } ] },
{ 'dungeons': [ 0x0096, 0b0111, 0b0111 ], 'java': [ 'minecraft:comparator', { 'facing': 'west', 'mode': 'subtract', 'powered': 'true' } ] },
{ 'dungeons': [ 0x0098, 0b0000 ], 'java': [ 'minecraft:redstone_block' ] },
{ 'dungeons': [ 0x0099, 0b0000 ], 'java': [ 'minecraft:quartz_ore' ] },
{ 'dungeons': [ 0x009b, 0b0000 ], 'java': [ 'minecraft:quartz_block' ] },
{ 'dungeons': [ 0x009b, 0b0001 ], 'java': [ 'minecraft:chiseled_quartz_block' ] },
{ 'dungeons': [ 0x009b, 0b0010 ], 'java': [ 'minecraft:quartz_pillar', { 'axis': 'y' } ] },
{ 'dungeons': [ 0x009b, 0b0011 ], 'java': [ 'minecraft:smooth_quartz' ] },
{ 'dungeons': [ 0x009b, 0b0100 ], 'java': [ 'minecraft:dead_fire_coral_block' ] },
{ 'dungeons': [ 0x009b, 0b0101 ], 'java': [ 'minecraft:dead_brain_coral_block' ] },
{ 'dungeons': [ 0x009b, 0b0110 ], 'java': [ 'minecraft:quartz_pillar', { 'axis': 'x' } ] },
{ 'dungeons': [ 0x009b, 0b1001 ], 'java': [ 'minecraft:dead_bubble_coral_block' ] },
{ 'dungeons': [ 0x009b, 0b1010 ], 'java': [ 'minecraft:quartz_pillar', { 'axis': 'z' } ] },
{ 'dungeons': [ 0x009c, 0b0000 ], 'java': [ 'minecraft:quartz_stairs', { 'facing': 'east', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x009c, 0b0001 ], 'java': [ 'minecraft:quartz_stairs', { 'facing': 'west', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x009c, 0b0010 ], 'java': [ 'minecraft:quartz_stairs', { 'facing': 'south', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x009c, 0b0011 ], 'java': [ 'minecraft:quartz_stairs', { 'facing': 'north', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x009c, 0b0100 ], 'java': [ 'minecraft:quartz_stairs', { 'facing': 'east', 'half': 'top' } ] },
{ 'dungeons': [ 0x009c, 0b0101 ], 'java': [ 'minecraft:quartz_stairs', { 'facing': 'west', 'half': 'top' } ] },
{ 'dungeons': [ 0x009c, 0b0110 ], 'java': [ 'minecraft:quartz_stairs', { 'facing': 'south', 'half': 'top' } ] },
{ 'dungeons': [ 0x009c, 0b0111 ], 'java': [ 'minecraft:quartz_stairs', { 'facing': 'north', 'half': 'top' } ] },
{ 'dungeons': [ 0x009d, 0b0000, 0b0111 ], 'java': [ 'minecraft:oak_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x009d, 0b0001, 0b0111 ], 'java': [ 'minecraft:spruce_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x009d, 0b0010, 0b0111 ], 'java': [ 'minecraft:birch_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x009d, 0b0011, 0b0111 ], 'java': [ 'minecraft:jungle_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x009d, 0b0100, 0b0111 ], 'java': [ 'minecraft:acacia_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x009d, 0b0101, 0b0111 ], 'java': [ 'minecraft:dark_oak_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x009e, 0b0000 ], 'java': [ 'minecraft:oak_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x009e, 0b0001 ], 'java': [ 'minecraft:spruce_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x009e, 0b0010 ], 'java': [ 'minecraft:birch_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x009e, 0b0011 ], 'java': [ 'minecraft:jungle_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x009e, 0b0100 ], 'java': [ 'minecraft:acacia_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x009e, 0b0101 ], 'java': [ 'minecraft:dark_oak_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x009e, 0b1000 ], 'java': [ 'minecraft:oak_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x009e, 0b1001 ], 'java': [ 'minecraft:spruce_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x009e, 0b1010 ], 'java': [ 'minecraft:birch_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x009e, 0b1011 ], 'java': [ 'minecraft:jungle_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x009e, 0b1100 ], 'java': [ 'minecraft:acacia_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x009e, 0b1101 ], 'java': [ 'minecraft:dark_oak_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x009f, 0b0000 ], 'java': [ 'minecraft:white_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b0001 ], 'java': [ 'minecraft:orange_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b0010 ], 'java': [ 'minecraft:magenta_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b0011 ], 'java': [ 'minecraft:light_blue_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b0100 ], 'java': [ 'minecraft:yellow_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b0101 ], 'java': [ 'minecraft:lime_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b0110 ], 'java': [ 'minecraft:pink_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b0111 ], 'java': [ 'minecraft:gray_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b1000 ], 'java': [ 'minecraft:light_gray_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b1001 ], 'java': [ 'minecraft:cyan_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b1010 ], 'java': [ 'minecraft:purple_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b1011 ], 'java': [ 'minecraft:blue_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b1100 ], 'java': [ 'minecraft:brown_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b1101 ], 'java': [ 'minecraft:green_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b1110 ], 'java': [ 'minecraft:red_terracotta' ] },
{ 'dungeons': [ 0x009f, 0b1111 ], 'java': [ 'minecraft:black_terracotta' ] },
{ 'dungeons': [ 0x00a1, 0b0000, 0b0111 ], 'java': [ 'minecraft:acacia_leaves', { 'persistent': 'false' } ] },
{ 'dungeons': [ 0x00a1, 0b0001, 0b0111 ], 'java': [ 'minecraft:dark_oak_leaves', { 'persistent': 'false' } ] },
{ 'dungeons': [ 0x00a1, 0b0100, 0b0111 ], 'java': [ 'minecraft:acacia_leaves', { 'persistent': 'true' } ] },
{ 'dungeons': [ 0x00a1, 0b0101, 0b0111 ], 'java': [ 'minecraft:dark_oak_leaves', { 'persistent': 'true' } ] },
{ 'dungeons': [ 0x00a2, 0b0000 ], 'java': [ 'minecraft:acacia_log', { 'axis': 'y' } ] },
{ 'dungeons': [ 0x00a2, 0b0001 ], 'java': [ 'minecraft:dark_oak_log', { 'axis': 'y' } ] },
{ 'dungeons': [ 0x00a2, 0b0100 ], 'java': [ 'minecraft:acacia_log', { 'axis': 'x' } ] },
{ 'dungeons': [ 0x00a2, 0b0101 ], 'java': [ 'minecraft:dark_oak_log', { 'axis': 'x' } ] },
{ 'dungeons': [ 0x00a2, 0b1000 ], 'java': [ 'minecraft:acacia_log', { 'axis': 'z' } ] },
{ 'dungeons': [ 0x00a2, 0b1001 ], 'java': [ 'minecraft:dark_oak_log', { 'axis': 'z' } ] },
{ 'dungeons': [ 0x00a2, 0b1100 ], 'java': [ 'minecraft:acacia_wood' ] },
{ 'dungeons': [ 0x00a2, 0b1101 ], 'java': [ 'minecraft:dark_oak_wood' ] },
{ 'dungeons': [ 0x00a3, 0b0000 ], 'java': [ 'minecraft:acacia_stairs', { 'facing': 'east', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x00a3, 0b0001 ], 'java': [ 'minecraft:acacia_stairs', { 'facing': 'west', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x00a3, 0b0010 ], 'java': [ 'minecraft:acacia_stairs', { 'facing': 'south', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x00a3, 0b0011 ], 'java': [ 'minecraft:acacia_stairs', { 'facing': 'north', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x00a3, 0b0100 ], 'java': [ 'minecraft:acacia_stairs', { 'facing': 'east', 'half': 'top' } ] },
{ 'dungeons': [ 0x00a3, 0b0101 ], 'java': [ 'minecraft:acacia_stairs', { 'facing': 'west', 'half': 'top' } ] },
{ 'dungeons': [ 0x00a3, 0b0110 ], 'java': [ 'minecraft:acacia_stairs', { 'facing': 'south', 'half': 'top' } ] },
{ 'dungeons': [ 0x00a3, 0b0111 ], 'java': [ 'minecraft:acacia_stairs', { 'facing': 'north', 'half': 'top' } ] },
{ 'dungeons': [ 0x00a4, 0b0000 ], 'java': [ 'minecraft:dark_oak_stairs', { 'facing': 'east', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x00a4, 0b0001 ], 'java': [ 'minecraft:dark_oak_stairs', { 'facing': 'west', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x00a4, 0b0010 ], 'java': [ 'minecraft:dark_oak_stairs', { 'facing': 'south', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x00a4, 0b0011 ], 'java': [ 'minecraft:dark_oak_stairs', { 'facing': 'north', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x00a4, 0b0100 ], 'java': [ 'minecraft:dark_oak_stairs', { 'facing': 'east', 'half': 'top' } ] },
{ 'dungeons': [ 0x00a4, 0b0101 ], 'java': [ 'minecraft:dark_oak_stairs', { 'facing': 'west', 'half': 'top' } ] },
{ 'dungeons': [ 0x00a4, 0b0110 ], 'java': [ 'minecraft:dark_oak_stairs', { 'facing': 'south', 'half': 'top' } ] },
{ 'dungeons': [ 0x00a4, 0b0111 ], 'java': [ 'minecraft:dark_oak_stairs', { 'facing': 'north', 'half': 'top' } ] },
{ 'dungeons': [ 0x00a7, 0b0000 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'false', 'half': 'bottom', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00a7, 0b0001 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'false', 'half': 'bottom', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00a7, 0b0010 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'false', 'half': 'bottom', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00a7, 0b0011 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'false', 'half': 'bottom', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00a7, 0b0100 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'false', 'half': 'top', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00a7, 0b0101 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'false', 'half': 'top', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00a7, 0b0110 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'false', 'half': 'top', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00a7, 0b0111 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'false', 'half': 'top', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00a7, 0b1000 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'true', 'half': 'bottom', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00a7, 0b1001 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'true', 'half': 'bottom', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00a7, 0b1010 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'true', 'half': 'bottom', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00a7, 0b1011 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'true', 'half': 'bottom', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00a7, 0b1100 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'true', 'half': 'top', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00a7, 0b1101 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'true', 'half': 'top', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00a7, 0b1110 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'true', 'half': 'top', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00a7, 0b1111 ], 'java': [ 'minecraft:iron_trapdoor', { 'open': 'true', 'half': 'top', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00aa, 0b0000 ], 'java': [ 'minecraft:hay_block', { 'axis': 'y' } ] },
{ 'dungeons': [ 0x00aa, 0b0100 ], 'java': [ 'minecraft:hay_block', { 'axis': 'x' } ] },
{ 'dungeons': [ 0x00aa, 0b1000 ], 'java': [ 'minecraft:hay_block', { 'axis': 'z' } ] },
{ 'dungeons': [ 0x00ab, 0b0000 ], 'java': [ 'minecraft:white_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b0001 ], 'java': [ 'minecraft:orange_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b0010 ], 'java': [ 'minecraft:magenta_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b0011 ], 'java': [ 'minecraft:light_blue_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b0100 ], 'java': [ 'minecraft:yellow_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b0101 ], 'java': [ 'minecraft:lime_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b0110 ], 'java': [ 'minecraft:pink_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b0111 ], 'java': [ 'minecraft:gray_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b1000 ], 'java': [ 'minecraft:light_gray_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b1001 ], 'java': [ 'minecraft:cyan_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b1010 ], 'java': [ 'minecraft:purple_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b1011 ], 'java': [ 'minecraft:blue_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b1100 ], 'java': [ 'minecraft:brown_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b1101 ], 'java': [ 'minecraft:green_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b1110 ], 'java': [ 'minecraft:red_carpet' ] },
{ 'dungeons': [ 0x00ab, 0b1111 ], 'java': [ 'minecraft:black_carpet' ] },
{ 'dungeons': [ 0x00ac, 0b0000 ], 'java': [ 'minecraft:terracotta' ] },
{ 'dungeons': [ 0x00ad, 0b0000 ], 'java': [ 'minecraft:coal_block' ] },
{ 'dungeons': [ 0x00ae, 0b0000 ], 'java': [ 'minecraft:packed_ice' ] },
{ 'dungeons': [ 0x00af, 0b0000 ], 'java': [ 'minecraft:sunflower', { 'half': 'lower' } ] },
{ 'dungeons': [ 0x00af, 0b0001 ], 'java': [ 'minecraft:lilac', { 'half': 'lower' } ] },
{ 'dungeons': [ 0x00af, 0b0010 ], 'java': [ 'minecraft:tall_grass', { 'half': 'lower' } ] },
{ 'dungeons': [ 0x00af, 0b0011 ], 'java': [ 'minecraft:large_fern', { 'half': 'lower' } ] },
{ 'dungeons': [ 0x00af, 0b0100 ], 'java': [ 'minecraft:rose_bush', { 'half': 'lower' } ] },
{ 'dungeons': [ 0x00af, 0b0101 ], 'java': [ 'minecraft:peony', { 'half': 'lower' } ] },
{ 'dungeons': [ 0x00af, 0b1000 ], 'java': [ 'minecraft:sunflower', { 'half': 'upper' } ] },
{ 'dungeons': [ 0x00af, 0b1001 ], 'java': [ 'minecraft:lilac', { 'half': 'upper' } ] },
{ 'dungeons': [ 0x00af, 0b1010 ], 'java': [ 'minecraft:tall_grass', { 'half': 'upper' } ] },
{ 'dungeons': [ 0x00af, 0b1011 ], 'java': [ 'minecraft:large_fern', { 'half': 'upper' } ] },
{ 'dungeons': [ 0x00af, 0b1100 ], 'java': [ 'minecraft:rose_bush', { 'half': 'upper' } ] },
{ 'dungeons': [ 0x00af, 0b1101 ], 'java': [ 'minecraft:peony', { 'half': 'upper' } ] },
{ 'dungeons': [ 0x00b3, 0b0000 ], 'java': [ 'minecraft:red_sandstone' ] },
{ 'dungeons': [ 0x00b3, 0b0001 ], 'java': [ 'minecraft:chiseled_red_sandstone' ] },
{ 'dungeons': [ 0x00b3, 0b0010 ], 'java': [ 'minecraft:cut_red_sandstone' ] },
{ 'dungeons': [ 0x00b3, 0b0011 ], 'java': [ 'minecraft:smooth_red_sandstone' ] },
{ 'dungeons': [ 0x00b4, 0b0000 ], 'java': [ 'minecraft:red_sandstone_stairs', { 'facing': 'east', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x00b4, 0b0001 ], 'java': [ 'minecraft:red_sandstone_stairs', { 'facing': 'west', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x00b4, 0b0010 ], 'java': [ 'minecraft:red_sandstone_stairs', { 'facing': 'south', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x00b4, 0b0011 ], 'java': [ 'minecraft:red_sandstone_stairs', { 'facing': 'north', 'half': 'bottom' } ] },
{ 'dungeons': [ 0x00b4, 0b0100 ], 'java': [ 'minecraft:red_sandstone_stairs', { 'facing': 'east', 'half': 'top' } ] },
{ 'dungeons': [ 0x00b4, 0b0101 ], 'java': [ 'minecraft:red_sandstone_stairs', { 'facing': 'west', 'half': 'top' } ] },
{ 'dungeons': [ 0x00b4, 0b0110 ], 'java': [ 'minecraft:red_sandstone_stairs', { 'facing': 'south', 'half': 'top' } ] },
{ 'dungeons': [ 0x00b4, 0b0111 ], 'java': [ 'minecraft:red_sandstone_stairs', { 'facing': 'north', 'half': 'top' } ] },
{ 'dungeons': [ 0x00b5, 0b0000 ], 'java': [ 'minecraft:red_sandstone_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x00b5, 0b0001 ], 'java': [ 'minecraft:purpur_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x00b5, 0b0010 ], 'java': [ 'minecraft:prismarine_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x00b5, 0b0011 ], 'java': [ 'minecraft:prismarine_brick_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x00b5, 0b0100 ], 'java': [ 'minecraft:dark_prismarine_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x00b5, 0b0101 ], 'java': [ 'minecraft:mossy_cobblestone_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x00b5, 0b0110 ], 'java': [ 'minecraft:smooth_sandstone_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x00b5, 0b0111 ], 'java': [ 'minecraft:red_nether_brick_slab', { 'type': 'double' } ] },
{ 'dungeons': [ 0x00b6, 0b0000 ], 'java': [ 'minecraft:red_sandstone_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x00b6, 0b0001 ], 'java': [ 'minecraft:purpur_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x00b6, 0b0010 ], 'java': [ 'minecraft:prismarine_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x00b6, 0b0011 ], 'java': [ 'minecraft:prismarine_brick_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x00b6, 0b0100 ], 'java': [ 'minecraft:dark_prismarine_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x00b6, 0b0101 ], 'java': [ 'minecraft:mossy_cobblestone_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x00b6, 0b0110 ], 'java': [ 'minecraft:smooth_sandstone_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x00b6, 0b0111 ], 'java': [ 'minecraft:red_nether_brick_slab', { 'type': 'bottom' } ] },
{ 'dungeons': [ 0x00b6, 0b1000 ], 'java': [ 'minecraft:red_sandstone_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x00b6, 0b1001 ], 'java': [ 'minecraft:purpur_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x00b6, 0b1010 ], 'java': [ 'minecraft:prismarine_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x00b6, 0b1011 ], 'java': [ 'minecraft:prismarine_brick_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x00b6, 0b1100 ], 'java': [ 'minecraft:dark_prismarine_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x00b6, 0b1101 ], 'java': [ 'minecraft:mossy_cobblestone_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x00b6, 0b1110 ], 'java': [ 'minecraft:smooth_sandstone_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x00b6, 0b1111 ], 'java': [ 'minecraft:red_nether_brick_slab', { 'type': 'top' } ] },
{ 'dungeons': [ 0x00b7, 0b0000 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'false', 'open': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00b7, 0b0001 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'false', 'open': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00b7, 0b0010 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'false', 'open': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00b7, 0b0011 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'false', 'open': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00b7, 0b0100 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'false', 'open': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00b7, 0b0101 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'false', 'open': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00b7, 0b0110 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'false', 'open': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00b7, 0b0111 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'false', 'open': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00b7, 0b1000 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'true', 'open': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00b7, 0b1001 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'true', 'open': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00b7, 0b1010 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'true', 'open': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00b7, 0b1011 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'true', 'open': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00b7, 0b1100 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'true', 'open': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00b7, 0b1101 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'true', 'open': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00b7, 0b1110 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'true', 'open': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00b7, 0b1111 ], 'java': [ 'minecraft:spruce_fence_gate', { 'in_wall': 'true', 'open': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00b8, 0b0000 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'false', 'open': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00b8, 0b0001 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'false', 'open': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00b8, 0b0010 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'false', 'open': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00b8, 0b0011 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'false', 'open': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00b8, 0b0100 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'false', 'open': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00b8, 0b0101 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'false', 'open': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00b8, 0b0110 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'false', 'open': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00b8, 0b0111 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'false', 'open': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00b8, 0b1000 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'true', 'open': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00b8, 0b1001 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'true', 'open': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00b8, 0b1010 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'true', 'open': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00b8, 0b1011 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'true', 'open': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00b8, 0b1100 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'true', 'open': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00b8, 0b1101 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'true', 'open': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00b8, 0b1110 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'true', 'open': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00b8, 0b1111 ], 'java': [ 'minecraft:birch_fence_gate', { 'in_wall': 'true', 'open': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00bb, 0b0000 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'false', 'open': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00bb, 0b0001 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'false', 'open': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00bb, 0b0010 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'false', 'open': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00bb, 0b0011 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'false', 'open': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00bb, 0b0100 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'false', 'open': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00bb, 0b0101 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'false', 'open': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00bb, 0b0110 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'false', 'open': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00bb, 0b0111 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'false', 'open': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00bb, 0b1000 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'true', 'open': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00bb, 0b1001 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'true', 'open': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00bb, 0b1010 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'true', 'open': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00bb, 0b1011 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'true', 'open': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00bb, 0b1100 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'true', 'open': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00bb, 0b1101 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'true', 'open': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00bb, 0b1110 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'true', 'open': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00bb, 0b1111 ], 'java': [ 'minecraft:acacia_fence_gate', { 'in_wall': 'true', 'open': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00c1, 0b0000 ], 'java': [ 'minecraft:spruce_door', { 'half': 'lower', 'open': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00c1, 0b0001 ], 'java': [ 'minecraft:spruce_door', { 'half': 'lower', 'open': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00c1, 0b0010 ], 'java': [ 'minecraft:spruce_door', { 'half': 'lower', 'open': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00c1, 0b0011 ], 'java': [ 'minecraft:spruce_door', { 'half': 'lower', 'open': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00c1, 0b0100 ], 'java': [ 'minecraft:spruce_door', { 'half': 'lower', 'open': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00c1, 0b0101 ], 'java': [ 'minecraft:spruce_door', { 'half': 'lower', 'open': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00c1, 0b0110 ], 'java': [ 'minecraft:spruce_door', { 'half': 'lower', 'open': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00c1, 0b0111 ], 'java': [ 'minecraft:spruce_door', { 'half': 'lower', 'open': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00c1, 0b1000 ], 'java': [ 'minecraft:spruce_door', { 'half': 'upper', 'powered': 'false', 'hinge': 'left' } ] },
{ 'dungeons': [ 0x00c1, 0b1001 ], 'java': [ 'minecraft:spruce_door', { 'half': 'upper', 'powered': 'false', 'hinge': 'right' } ] },
{ 'dungeons': [ 0x00c1, 0b1010 ], 'java': [ 'minecraft:spruce_door', { 'half': 'upper', 'powered': 'true', 'hinge': 'left' } ] },
{ 'dungeons': [ 0x00c1, 0b1011 ], 'java': [ 'minecraft:spruce_door', { 'half': 'upper', 'powered': 'true', 'hinge': 'right' } ] },
{ 'dungeons': [ 0x00c3, 0b0000 ], 'java': [ 'minecraft:jungle_door', { 'half': 'lower', 'open': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00c3, 0b0001 ], 'java': [ 'minecraft:jungle_door', { 'half': 'lower', 'open': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00c3, 0b0010 ], 'java': [ 'minecraft:jungle_door', { 'half': 'lower', 'open': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00c3, 0b0011 ], 'java': [ 'minecraft:jungle_door', { 'half': 'lower', 'open': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00c3, 0b0100 ], 'java': [ 'minecraft:jungle_door', { 'half': 'lower', 'open': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00c3, 0b0101 ], 'java': [ 'minecraft:jungle_door', { 'half': 'lower', 'open': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00c3, 0b0110 ], 'java': [ 'minecraft:jungle_door', { 'half': 'lower', 'open': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00c3, 0b0111 ], 'java': [ 'minecraft:jungle_door', { 'half': 'lower', 'open': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00c3, 0b1000 ], 'java': [ 'minecraft:jungle_door', { 'half': 'upper', 'powered': 'false', 'hinge': 'left' } ] },
{ 'dungeons': [ 0x00c3, 0b1001 ], 'java': [ 'minecraft:jungle_door', { 'half': 'upper', 'powered': 'false', 'hinge': 'right' } ] },
{ 'dungeons': [ 0x00c3, 0b1010 ], 'java': [ 'minecraft:jungle_door', { 'half': 'upper', 'powered': 'true', 'hinge': 'left' } ] },
{ 'dungeons': [ 0x00c3, 0b1011 ], 'java': [ 'minecraft:jungle_door', { 'half': 'upper', 'powered': 'true', 'hinge': 'right' } ] },
{ 'dungeons': [ 0x00c5, 0b0000 ], 'java': [ 'minecraft:dark_oak_door', { 'half': 'lower', 'open': 'false', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00c5, 0b0001 ], 'java': [ 'minecraft:dark_oak_door', { 'half': 'lower', 'open': 'false', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00c5, 0b0010 ], 'java': [ 'minecraft:dark_oak_door', { 'half': 'lower', 'open': 'false', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00c5, 0b0011 ], 'java': [ 'minecraft:dark_oak_door', { 'half': 'lower', 'open': 'false', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00c5, 0b0100 ], 'java': [ 'minecraft:dark_oak_door', { 'half': 'lower', 'open': 'true', 'facing': 'east' } ] },
{ 'dungeons': [ 0x00c5, 0b0101 ], 'java': [ 'minecraft:dark_oak_door', { 'half': 'lower', 'open': 'true', 'facing': 'south' } ] },
{ 'dungeons': [ 0x00c5, 0b0110 ], 'java': [ 'minecraft:dark_oak_door', { 'half': 'lower', 'open': 'true', 'facing': 'west' } ] },
{ 'dungeons': [ 0x00c5, 0b0111 ], 'java': [ 'minecraft:dark_oak_door', { 'half': 'lower', 'open': 'true', 'facing': 'north' } ] },
{ 'dungeons': [ 0x00c5, 0b1000 ], 'java': [ 'minecraft:dark_oak_door', { 'half': 'upper', 'powered': 'false', 'hinge': 'left' } ] },
{ 'dungeons': [ 0x00c5, 0b1001 ], 'java': [ 'minecraft:dark_oak_door', { 'half': 'upper', 'powered': 'false', 'hinge': 'right' } ] },
{ 'dungeons': [ 0x00c5, 0b1010 ], 'java': [ 'minecraft:dark_oak_door', { 'half': 'upper', 'powered': 'true', 'hinge': 'left' } ] },
{ 'dungeons': [ 0x00c5, 0b1011 ], 'java': [ 'minecraft:dark_oak_door', { 'half': 'upper', 'powered': 'true', 'hinge': 'right' } ] },
{ 'dungeons': [ 0x00c6, 0b0000 ], 'java': [ 'minecraft:grass_path' ] },
{ 'dungeons': [ 0x00c6, 0b0001 ], 'java': [ 'minecraft:farmland', { 'moisture': '1' } ] }, # dirt_path
{ 'dungeons': [ 0x00c6, 0b0010 ], 'java': [ 'minecraft:farmland', { 'moisture': '2' } ] }, # stone_path
{ 'dungeons': [ 0x00c6, 0b0011 ], 'java': [ 'minecraft:farmland', { 'moisture': '3' } ] }, # skull_path
{ 'dungeons': [ 0x00c6, 0b0100 ], 'java': [ 'minecraft:farmland', { 'moisture': '4' } ] }, # gravel_path
{ 'dungeons': [ 0x00c7, 0b0011 ], 'java': [ 'minecraft:dead_tube_coral_block' ] },
{ 'dungeons': [ 0x00e0, 0b0000 ], 'java': [ 'minecraft:white_concrete' ] }, # custom_0
{ 'dungeons': [ 0x00e1, 0b0000 ], 'java': [ 'minecraft:orange_concrete' ] }, # custom_1
{ 'dungeons': [ 0x00e2, 0b0000 ], 'java': [ 'minecraft:magenta_concrete' ] }, # custom_2
{ 'dungeons': [ 0x00e3, 0b0000 ], 'java': [ 'minecraft:light_blue_concrete' ] }, # custom_3
{ 'dungeons': [ 0x00e4, 0b0000 ], 'java': [ 'minecraft:yellow_concrete' ] }, # custom_4
{ 'dungeons': [ 0x00e5, 0b0000 ], 'java': [ 'minecraft:lime_concrete' ] }, # custom_5
{ 'dungeons': [ 0x00e6, 0b0000 ], 'java': [ 'minecraft:pink_concrete' ] }, # custom_6
{ 'dungeons': [ 0x00e7, 0b0000 ], 'java': [ 'minecraft:gray_concrete' ] }, # custom_7
{ 'dungeons': [ 0x00e8, 0b0000 ], 'java': [ 'minecraft:light_gray_concrete' ] }, # custom_8
{ 'dungeons': [ 0x00e9, 0b0000 ], 'java': [ 'minecraft:cyan_concrete' ] }, # custom_9
{ 'dungeons': [ 0x00ea, 0b0000 ], 'java': [ 'minecraft:blue_concrete' ] }, # custom_10
{ 'dungeons': [ 0x00eb, 0b0000 ], 'java': [ 'minecraft:purple_concrete' ] }, # custom_11
{ 'dungeons': [ 0x00ec, 0b0000 ], 'java': [ 'minecraft:brown_concrete' ] }, # custom_12
{ 'dungeons': [ 0x00ed, 0b0000 ], 'java': [ 'minecraft:green_concrete' ] }, # custom_13
{ 'dungeons': [ 0x00ee, 0b0000 ], 'java': [ 'minecraft:red_concrete' ] }, # custom_14
{ 'dungeons': [ 0x00ef, 0b0000 ], 'java': [ 'minecraft:black_concrete' ] }, # custom_15
{ 'dungeons': [ 0x00f3, 0b0000 ], 'java': [ 'minecraft:mycelium' ] },
{ 'dungeons': [ 0x00f5, 0b0000 ], 'java': [ 'minecraft:stonecutter' ] },
{ 'dungeons': [ 0x00fb, 0b0000 ], 'java': [ 'minecraft:observer', { 'facing': 'down', 'powered': 'false' } ] },
{ 'dungeons': [ 0x00fb, 0b0001 ], 'java': [ 'minecraft:observer', { 'facing': 'up', 'powered': 'false' } ] },