From ca1f1bf09fb646088d47f5cd819f8095e9255d3e Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 12 Jan 2023 21:52:44 +0000 Subject: [PATCH] Fixed glowing item frames due to technical limitations, this requires separating them back into two different block types. However, this isn't too egregious since it's just one flag, and actually simplifies some code. closes #5478 --- src/block/BlockTypeIds.php | 1 + src/block/ItemFrame.php | 16 ---------- src/block/VanillaBlocks.php | 8 ++++- src/block/tile/GlowingItemFrame.php | 32 +++++++++++++++++++ src/block/tile/TileFactory.php | 1 + .../convert/BlockObjectToStateSerializer.php | 8 ++--- .../convert/BlockStateDeserializerHelper.php | 8 ++--- .../convert/BlockStateSerializerHelper.php | 9 ++++++ .../BlockStateToObjectDeserializer.php | 4 +-- .../ItemSerializerDeserializerRegistrar.php | 17 ++-------- src/item/StringToItemParser.php | 13 ++++---- .../block_factory_consistency_check.json | 2 +- 12 files changed, 67 insertions(+), 52 deletions(-) create mode 100644 src/block/tile/GlowingItemFrame.php diff --git a/src/block/BlockTypeIds.php b/src/block/BlockTypeIds.php index c63b22432..d8d306458 100644 --- a/src/block/BlockTypeIds.php +++ b/src/block/BlockTypeIds.php @@ -708,6 +708,7 @@ final class BlockTypeIds{ public const WEEPING_VINES = 10681; public const CHAIN = 10682; public const SCULK = 10683; + public const GLOWING_ITEM_FRAME = 10684; public const FIRST_UNUSED_BLOCK_ID = 10684; diff --git a/src/block/ItemFrame.php b/src/block/ItemFrame.php index 68510cf27..6d92d3334 100644 --- a/src/block/ItemFrame.php +++ b/src/block/ItemFrame.php @@ -44,20 +44,12 @@ class ItemFrame extends Flowable{ public const ROTATIONS = 8; - protected bool $glowing = false; - protected bool $hasMap = false; //makes frame appear large if set protected ?Item $framedItem = null; protected int $itemRotation = 0; protected float $itemDropChance = 1.0; - public function getRequiredTypeDataBits() : int{ return 1; } - - protected function describeType(RuntimeDataReader|RuntimeDataWriter $w) : void{ - $w->bool($this->glowing); - } - public function getRequiredStateDataBits() : int{ return 4; } protected function describeState(RuntimeDataReader|RuntimeDataWriter $w) : void{ @@ -141,14 +133,6 @@ class ItemFrame extends Flowable{ return $this; } - public function isGlowing() : bool{ return $this->glowing; } - - /** @return $this */ - public function setGlowing(bool $glowing) : self{ - $this->glowing = $glowing; - return $this; - } - public function onInteract(Item $item, int $face, Vector3 $clickVector, ?Player $player = null, array &$returnedItems = []) : bool{ if($this->framedItem !== null){ $this->itemRotation = ($this->itemRotation + 1) % self::ROTATIONS; diff --git a/src/block/VanillaBlocks.php b/src/block/VanillaBlocks.php index d14d288a5..1e1f7829c 100644 --- a/src/block/VanillaBlocks.php +++ b/src/block/VanillaBlocks.php @@ -43,6 +43,7 @@ use pocketmine\block\tile\DaylightSensor as TileDaylightSensor; use pocketmine\block\tile\EnchantTable as TileEnchantingTable; use pocketmine\block\tile\EnderChest as TileEnderChest; use pocketmine\block\tile\FlowerPot as TileFlowerPot; +use pocketmine\block\tile\GlowingItemFrame as TileGlowingItemFrame; use pocketmine\block\tile\Hopper as TileHopper; use pocketmine\block\tile\ItemFrame as TileItemFrame; use pocketmine\block\tile\Jukebox as TileJukebox; @@ -409,6 +410,7 @@ use function mb_strtolower; * @method static Glass GLASS() * @method static GlassPane GLASS_PANE() * @method static GlazedTerracotta GLAZED_TERRACOTTA() + * @method static ItemFrame GLOWING_ITEM_FRAME() * @method static GlowingObsidian GLOWING_OBSIDIAN() * @method static Glowstone GLOWSTONE() * @method static Opaque GOLD() @@ -886,7 +888,11 @@ final class VanillaBlocks{ $ironDoorBreakInfo = new Info(BreakInfo::pickaxe(5.0, ToolTier::WOOD(), 25.0)); self::register("iron_door", new Door(new BID(Ids::IRON_DOOR), "Iron Door", $ironDoorBreakInfo)); self::register("iron_trapdoor", new Trapdoor(new BID(Ids::IRON_TRAPDOOR), "Iron Trapdoor", $ironDoorBreakInfo)); - self::register("item_frame", new ItemFrame(new BID(Ids::ITEM_FRAME, TileItemFrame::class), "Item Frame", new Info(new BreakInfo(0.25)))); + + $itemFrameInfo = new Info(new BreakInfo(0.25)); + self::register("item_frame", new ItemFrame(new BID(Ids::ITEM_FRAME, TileItemFrame::class), "Item Frame", $itemFrameInfo)); + self::register("glowing_item_frame", new ItemFrame(new BID(Ids::GLOWING_ITEM_FRAME, TileGlowingItemFrame::class), "Glow Item Frame", $itemFrameInfo)); + self::register("jukebox", new Jukebox(new BID(Ids::JUKEBOX, TileJukebox::class), "Jukebox", new Info(BreakInfo::axe(0.8)))); //TODO: in PC the hardness is 2.0, not 0.8, unsure if this is a MCPE bug or not self::register("ladder", new Ladder(new BID(Ids::LADDER), "Ladder", new Info(BreakInfo::axe(0.4)))); diff --git a/src/block/tile/GlowingItemFrame.php b/src/block/tile/GlowingItemFrame.php new file mode 100644 index 000000000..c388241b8 --- /dev/null +++ b/src/block/tile/GlowingItemFrame.php @@ -0,0 +1,32 @@ +register(Smoker::class, ["Smoker", "minecraft:smoker"]); $this->register(SporeBlossom::class, ["SporeBlossom", "minecraft:spore_blossom"]); $this->register(Skull::class, ["Skull", "minecraft:skull"]); + $this->register(GlowingItemFrame::class, ["GlowItemFrame"]); //TODO: Campfire //TODO: ChalkboardBlock diff --git a/src/data/bedrock/block/convert/BlockObjectToStateSerializer.php b/src/data/bedrock/block/convert/BlockObjectToStateSerializer.php index c6dfa294e..80519c609 100644 --- a/src/data/bedrock/block/convert/BlockObjectToStateSerializer.php +++ b/src/data/bedrock/block/convert/BlockObjectToStateSerializer.php @@ -990,6 +990,7 @@ final class BlockObjectToStateSerializer implements BlockStateSerializer{ }) ->writeHorizontalFacing($block->getFacing()); }); + $this->map(Blocks::GLOWING_ITEM_FRAME(), fn(ItemFrame $block) => Helper::encodeItemFrame($block, Ids::GLOW_FRAME)); $this->map(Blocks::GRANITE(), fn() => Helper::encodeStone(StringValues::STONE_TYPE_GRANITE)); $this->map(Blocks::GRANITE_SLAB(), fn(Slab $block) => Helper::encodeStoneSlab3($block, StringValues::STONE_SLAB_TYPE_3_GRANITE)); $this->mapStairs(Blocks::GRANITE_STAIRS(), Ids::GRANITE_STAIRS); @@ -1019,12 +1020,7 @@ final class BlockObjectToStateSerializer implements BlockStateSerializer{ ->writeString(StateNames::MONSTER_EGG_STONE_TYPE, StringValues::MONSTER_EGG_STONE_TYPE_STONE_BRICK)); $this->map(Blocks::IRON_DOOR(), fn(Door $block) => Helper::encodeDoor($block, new Writer(Ids::IRON_DOOR))); $this->map(Blocks::IRON_TRAPDOOR(), fn(Trapdoor $block) => Helper::encodeTrapdoor($block, new Writer(Ids::IRON_TRAPDOOR))); - $this->map(Blocks::ITEM_FRAME(), function(ItemFrame $block) : Writer{ - return Writer::create($block->isGlowing() ? Ids::GLOW_FRAME : Ids::FRAME) - ->writeBool(StateNames::ITEM_FRAME_MAP_BIT, $block->hasMap()) - ->writeBool(StateNames::ITEM_FRAME_PHOTO_BIT, false) - ->writeFacingDirection($block->getFacing()); - }); + $this->map(Blocks::ITEM_FRAME(), fn(ItemFrame $block) => Helper::encodeItemFrame($block, Ids::FRAME)); $this->map(Blocks::JUNGLE_BUTTON(), fn(WoodenButton $block) => Helper::encodeButton($block, new Writer(Ids::JUNGLE_BUTTON))); $this->map(Blocks::JUNGLE_DOOR(), fn(WoodenDoor $block) => Helper::encodeDoor($block, new Writer(Ids::JUNGLE_DOOR))); $this->map(Blocks::JUNGLE_FENCE(), fn() => Writer::create(Ids::FENCE) diff --git a/src/data/bedrock/block/convert/BlockStateDeserializerHelper.php b/src/data/bedrock/block/convert/BlockStateDeserializerHelper.php index b2809d93f..e7bd14dfd 100644 --- a/src/data/bedrock/block/convert/BlockStateDeserializerHelper.php +++ b/src/data/bedrock/block/convert/BlockStateDeserializerHelper.php @@ -49,7 +49,6 @@ use pocketmine\block\Trapdoor; use pocketmine\block\utils\CopperOxidation; use pocketmine\block\utils\DyeColor; use pocketmine\block\VanillaBlocks; -use pocketmine\block\VanillaBlocks as Blocks; use pocketmine\block\Wall; use pocketmine\block\WallCoralFan; use pocketmine\block\WallSign; @@ -172,12 +171,11 @@ final class BlockStateDeserializerHelper{ ->setFacing($in->readHorizontalFacing()); } - public static function decodeItemFrame(BlockStateReader $in, bool $glowing) : ItemFrame{ + public static function decodeItemFrame(ItemFrame $block, BlockStateReader $in) : ItemFrame{ $in->todo(StateNames::ITEM_FRAME_PHOTO_BIT); //TODO: not sure what the point of this is - return Blocks::ITEM_FRAME() + return $block ->setFacing($in->readFacingDirection()) - ->setHasMap($in->readBool(StateNames::ITEM_FRAME_MAP_BIT)) - ->setGlowing($glowing); + ->setHasMap($in->readBool(StateNames::ITEM_FRAME_MAP_BIT)); } /** @throws BlockStateDeserializeException */ diff --git a/src/data/bedrock/block/convert/BlockStateSerializerHelper.php b/src/data/bedrock/block/convert/BlockStateSerializerHelper.php index c87b64788..312e726fc 100644 --- a/src/data/bedrock/block/convert/BlockStateSerializerHelper.php +++ b/src/data/bedrock/block/convert/BlockStateSerializerHelper.php @@ -32,6 +32,7 @@ use pocketmine\block\DoublePlant; use pocketmine\block\FenceGate; use pocketmine\block\FloorSign; use pocketmine\block\Furnace; +use pocketmine\block\ItemFrame; use pocketmine\block\Leaves; use pocketmine\block\Liquid; use pocketmine\block\RedMushroomBlock; @@ -50,6 +51,7 @@ use pocketmine\block\Wood; use pocketmine\data\bedrock\block\BlockStateNames; use pocketmine\data\bedrock\block\BlockStateNames as StateNames; use pocketmine\data\bedrock\block\BlockTypeNames as Ids; +use pocketmine\data\bedrock\block\convert\BlockStateWriter as Writer; use pocketmine\data\bedrock\MushroomBlockTypeIdMap; use pocketmine\math\Facing; use pocketmine\utils\AssumptionFailedError; @@ -138,6 +140,13 @@ final class BlockStateSerializerHelper{ ->writeHorizontalFacing($block->getFacing()); } + public static function encodeItemFrame(ItemFrame $block, string $id) : BlockStateWriter{ + return Writer::create($id) + ->writeBool(StateNames::ITEM_FRAME_MAP_BIT, $block->hasMap()) + ->writeBool(StateNames::ITEM_FRAME_PHOTO_BIT, false) + ->writeFacingDirection($block->getFacing()); + } + private static function encodeLeaves(Leaves $block, BlockStateWriter $out) : BlockStateWriter{ return $out ->writeBool(BlockStateNames::PERSISTENT_BIT, $block->isNoDecay()) diff --git a/src/data/bedrock/block/convert/BlockStateToObjectDeserializer.php b/src/data/bedrock/block/convert/BlockStateToObjectDeserializer.php index fdae56e31..bca2cb390 100644 --- a/src/data/bedrock/block/convert/BlockStateToObjectDeserializer.php +++ b/src/data/bedrock/block/convert/BlockStateToObjectDeserializer.php @@ -731,7 +731,7 @@ final class BlockStateToObjectDeserializer implements BlockStateDeserializer{ }); $this->map(Ids::FLOWING_LAVA, fn(Reader $in) => Helper::decodeFlowingLiquid(Blocks::LAVA(), $in)); $this->map(Ids::FLOWING_WATER, fn(Reader $in) => Helper::decodeFlowingLiquid(Blocks::WATER(), $in)); - $this->map(Ids::FRAME, fn(Reader $in) => Helper::decodeItemFrame($in, false)); + $this->map(Ids::FRAME, fn(Reader $in) => Helper::decodeItemFrame(Blocks::ITEM_FRAME(), $in)); $this->map(Ids::FROSTED_ICE, function(Reader $in) : Block{ return Blocks::FROSTED_ICE() ->setAge($in->readBoundedInt(StateNames::AGE, 0, 3)); @@ -741,7 +741,7 @@ final class BlockStateToObjectDeserializer implements BlockStateDeserializer{ ->setFacing($in->readHorizontalFacing()) ->setLit(false); }); - $this->map(Ids::GLOW_FRAME, fn(Reader $in) => Helper::decodeItemFrame($in, true)); + $this->map(Ids::GLOW_FRAME, fn(Reader $in) => Helper::decodeItemFrame(Blocks::GLOWING_ITEM_FRAME(), $in)); $this->map(Ids::GOLDEN_RAIL, function(Reader $in) : Block{ return Blocks::POWERED_RAIL() ->setPowered($in->readBool(StateNames::RAIL_DATA_BIT)) diff --git a/src/data/bedrock/item/ItemSerializerDeserializerRegistrar.php b/src/data/bedrock/item/ItemSerializerDeserializerRegistrar.php index d80bb3840..aafac3b60 100644 --- a/src/data/bedrock/item/ItemSerializerDeserializerRegistrar.php +++ b/src/data/bedrock/item/ItemSerializerDeserializerRegistrar.php @@ -25,7 +25,6 @@ namespace pocketmine\data\bedrock\item; use pocketmine\block\Bed; use pocketmine\block\Block; -use pocketmine\block\ItemFrame; use pocketmine\block\Skull; use pocketmine\block\utils\DyeColor; use pocketmine\block\utils\SkullType; @@ -57,7 +56,6 @@ final class ItemSerializerDeserializerRegistrar{ $this->register1to1BlockWithMetaMappings(); $this->register1to1ItemWithMetaMappings(); $this->register1ToNItemMappings(); - $this->registerMiscBlockMappings(); $this->registerMiscItemMappings(); } @@ -141,6 +139,8 @@ final class ItemSerializerDeserializerRegistrar{ $this->map1to1Block(Ids::CRIMSON_DOOR, Blocks::CRIMSON_DOOR()); $this->map1to1Block(Ids::DARK_OAK_DOOR, Blocks::DARK_OAK_DOOR()); $this->map1to1Block(Ids::FLOWER_POT, Blocks::FLOWER_POT()); + $this->map1to1Block(Ids::FRAME, Blocks::ITEM_FRAME()); + $this->map1to1Block(Ids::GLOW_FRAME, Blocks::GLOWING_ITEM_FRAME()); $this->map1to1Block(Ids::HOPPER, Blocks::HOPPER()); $this->map1to1Block(Ids::IRON_DOOR, Blocks::IRON_DOOR()); $this->map1to1Block(Ids::JUNGLE_DOOR, Blocks::JUNGLE_DOOR()); @@ -502,19 +502,6 @@ final class ItemSerializerDeserializerRegistrar{ ); } - /** - * Registers serializers and deserializers for blocks that don't fit any other pattern. - * Ideally we want to get rid of this completely, if possible. - * - * Most of these are single PocketMine-MP items which map to multiple IDs depending on their properties, which is - * complex to implement in a generic way. - */ - private function registerMiscBlockMappings() : void{ - $this->deserializer?->mapBlock(Ids::FRAME, fn() => Blocks::ITEM_FRAME()->setGlowing(false)); - $this->deserializer?->mapBlock(Ids::GLOW_FRAME, fn() => Blocks::ITEM_FRAME()->setGlowing(true)); - $this->serializer?->mapBlock(Blocks::ITEM_FRAME(), fn(ItemFrame $block) => new Data($block->isGlowing() ? Ids::GLOW_FRAME : Ids::FRAME)); - } - /** * Registers serializers and deserializers for items that don't fit any other pattern. * Ideally we want to get rid of this completely, if possible. diff --git a/src/item/StringToItemParser.php b/src/item/StringToItemParser.php index e6afaab5c..8a66e3a07 100644 --- a/src/item/StringToItemParser.php +++ b/src/item/StringToItemParser.php @@ -627,8 +627,8 @@ final class StringToItemParser extends StringToTParser{ $result->registerBlock("flower_pot_block", fn() => Blocks::FLOWER_POT()); $result->registerBlock("flowing_lava", fn() => Blocks::LAVA()); $result->registerBlock("flowing_water", fn() => Blocks::WATER()); - $result->registerBlock("frame", fn() => Blocks::ITEM_FRAME()->setGlowing(false)); - $result->registerBlock("frame_block", fn() => Blocks::ITEM_FRAME()->setGlowing(false)); + $result->registerBlock("frame", fn() => Blocks::ITEM_FRAME()); + $result->registerBlock("frame_block", fn() => Blocks::ITEM_FRAME()); $result->registerBlock("frosted_ice", fn() => Blocks::FROSTED_ICE()); $result->registerBlock("furnace", fn() => Blocks::FURNACE()); $result->registerBlock("gilded_blackstone", fn() => Blocks::GILDED_BLACKSTONE()); @@ -636,8 +636,9 @@ final class StringToItemParser extends StringToTParser{ $result->registerBlock("glass_pane", fn() => Blocks::GLASS_PANE()); $result->registerBlock("glass_panel", fn() => Blocks::GLASS_PANE()); $result->registerBlock("glazed_terracotta", fn() => Blocks::GLAZED_TERRACOTTA()); - $result->registerBlock("glow_frame", fn() => Blocks::ITEM_FRAME()->setGlowing(true)); - $result->registerBlock("glow_item_frame", fn() => Blocks::ITEM_FRAME()->setGlowing(true)); + $result->registerBlock("glow_frame", fn() => Blocks::GLOWING_ITEM_FRAME()); + $result->registerBlock("glow_item_frame", fn() => Blocks::GLOWING_ITEM_FRAME()); + $result->registerBlock("glowing_item_frame", fn() => Blocks::GLOWING_ITEM_FRAME()); $result->registerBlock("glowing_obsidian", fn() => Blocks::GLOWING_OBSIDIAN()); $result->registerBlock("glowing_redstone_ore", fn() => Blocks::REDSTONE_ORE()->setLit(true)); $result->registerBlock("glowingobsidian", fn() => Blocks::GLOWING_OBSIDIAN()); @@ -693,8 +694,8 @@ final class StringToItemParser extends StringToTParser{ $result->registerBlock("iron_ore", fn() => Blocks::IRON_ORE()); $result->registerBlock("iron_pressure_plate", fn() => Blocks::WEIGHTED_PRESSURE_PLATE_HEAVY()); $result->registerBlock("iron_trapdoor", fn() => Blocks::IRON_TRAPDOOR()); - $result->registerBlock("item_frame", fn() => Blocks::ITEM_FRAME()->setGlowing(false)); - $result->registerBlock("item_frame_block", fn() => Blocks::ITEM_FRAME()->setGlowing(false)); + $result->registerBlock("item_frame", fn() => Blocks::ITEM_FRAME()); + $result->registerBlock("item_frame_block", fn() => Blocks::ITEM_FRAME()); $result->registerBlock("jack_o_lantern", fn() => Blocks::LIT_PUMPKIN()); $result->registerBlock("jukebox", fn() => Blocks::JUKEBOX()); $result->registerBlock("jungle_button", fn() => Blocks::JUNGLE_BUTTON()); diff --git a/tests/phpunit/block/block_factory_consistency_check.json b/tests/phpunit/block/block_factory_consistency_check.json index db27a8528..f68366a3a 100644 --- a/tests/phpunit/block/block_factory_consistency_check.json +++ b/tests/phpunit/block/block_factory_consistency_check.json @@ -1 +1 @@ -{"knownStates":{"???":[5248000],"Acacia Button":[5120512,5120513,5120514,5120515,5120516,5120517,5120520,5120521,5120522,5120523,5120524,5120525],"Acacia Door":[5121024,5121025,5121026,5121027,5121028,5121029,5121030,5121031,5121032,5121033,5121034,5121035,5121036,5121037,5121038,5121039,5121040,5121041,5121042,5121043,5121044,5121045,5121046,5121047,5121048,5121049,5121050,5121051,5121052,5121053,5121054,5121055],"Acacia Fence":[5121536],"Acacia Fence Gate":[5122048,5122049,5122050,5122051,5122052,5122053,5122054,5122055,5122056,5122057,5122058,5122059,5122060,5122061,5122062,5122063],"Acacia Leaves":[5122560,5122561,5122562,5122563],"Acacia Log":[5123072,5123073,5123074,5123075,5123076,5123077],"Acacia Planks":[5123584],"Acacia Pressure Plate":[5124096,5124097],"Acacia Sapling":[5124608,5124609],"Acacia Sign":[5125120,5125121,5125122,5125123,5125124,5125125,5125126,5125127,5125128,5125129,5125130,5125131,5125132,5125133,5125134,5125135],"Acacia Slab":[5125632,5125633,5125634],"Acacia Stairs":[5126144,5126145,5126146,5126147,5126148,5126149,5126150,5126151],"Acacia Trapdoor":[5126656,5126657,5126658,5126659,5126660,5126661,5126662,5126663,5126664,5126665,5126666,5126667,5126668,5126669,5126670,5126671],"Acacia Wall Sign":[5127168,5127169,5127170,5127171],"Acacia Wood":[5127680,5127681,5127682,5127683,5127684,5127685],"Actinium":[5188096],"Activator Rail":[5128192,5128193,5128194,5128195,5128196,5128197,5128200,5128201,5128202,5128203,5128204,5128205],"Air":[5120000],"All Sided Mushroom Stem":[5128704],"Allium":[5129216],"Aluminum":[5188608],"Americium":[5189120],"Amethyst":[5396480],"Ancient Debris":[5396992],"Andesite":[5129728],"Andesite Slab":[5130240,5130241,5130242],"Andesite Stairs":[5130752,5130753,5130754,5130755,5130756,5130757,5130758,5130759],"Andesite Wall":[5131264,5131265,5131266,5131268,5131269,5131270,5131272,5131273,5131274,5131280,5131281,5131282,5131284,5131285,5131286,5131288,5131289,5131290,5131296,5131297,5131298,5131300,5131301,5131302,5131304,5131305,5131306,5131328,5131329,5131330,5131332,5131333,5131334,5131336,5131337,5131338,5131344,5131345,5131346,5131348,5131349,5131350,5131352,5131353,5131354,5131360,5131361,5131362,5131364,5131365,5131366,5131368,5131369,5131370,5131392,5131393,5131394,5131396,5131397,5131398,5131400,5131401,5131402,5131408,5131409,5131410,5131412,5131413,5131414,5131416,5131417,5131418,5131424,5131425,5131426,5131428,5131429,5131430,5131432,5131433,5131434,5131520,5131521,5131522,5131524,5131525,5131526,5131528,5131529,5131530,5131536,5131537,5131538,5131540,5131541,5131542,5131544,5131545,5131546,5131552,5131553,5131554,5131556,5131557,5131558,5131560,5131561,5131562,5131584,5131585,5131586,5131588,5131589,5131590,5131592,5131593,5131594,5131600,5131601,5131602,5131604,5131605,5131606,5131608,5131609,5131610,5131616,5131617,5131618,5131620,5131621,5131622,5131624,5131625,5131626,5131648,5131649,5131650,5131652,5131653,5131654,5131656,5131657,5131658,5131664,5131665,5131666,5131668,5131669,5131670,5131672,5131673,5131674,5131680,5131681,5131682,5131684,5131685,5131686,5131688,5131689,5131690],"Antimony":[5189632],"Anvil":[5131776,5131777,5131778,5131780,5131781,5131782,5131784,5131785,5131786,5131788,5131789,5131790],"Argon":[5190144],"Arsenic":[5190656],"Astatine":[5191168],"Azure Bluet":[5132288],"Bamboo":[5132800,5132801,5132802,5132804,5132805,5132806,5132808,5132809,5132810,5132812,5132813,5132814],"Bamboo Sapling":[5133312,5133313],"Banner":[5133824,5133825,5133826,5133827,5133828,5133829,5133830,5133831,5133832,5133833,5133834,5133835,5133836,5133837,5133838,5133839,5133840,5133841,5133842,5133843,5133844,5133845,5133846,5133847,5133848,5133849,5133850,5133851,5133852,5133853,5133854,5133855,5133856,5133857,5133858,5133859,5133860,5133861,5133862,5133863,5133864,5133865,5133866,5133867,5133868,5133869,5133870,5133871,5133872,5133873,5133874,5133875,5133876,5133877,5133878,5133879,5133880,5133881,5133882,5133883,5133884,5133885,5133886,5133887,5133888,5133889,5133890,5133891,5133892,5133893,5133894,5133895,5133896,5133897,5133898,5133899,5133900,5133901,5133902,5133903,5133904,5133905,5133906,5133907,5133908,5133909,5133910,5133911,5133912,5133913,5133914,5133915,5133916,5133917,5133918,5133919,5133920,5133921,5133922,5133923,5133924,5133925,5133926,5133927,5133928,5133929,5133930,5133931,5133932,5133933,5133934,5133935,5133936,5133937,5133938,5133939,5133940,5133941,5133942,5133943,5133944,5133945,5133946,5133947,5133948,5133949,5133950,5133951,5133952,5133953,5133954,5133955,5133956,5133957,5133958,5133959,5133960,5133961,5133962,5133963,5133964,5133965,5133966,5133967,5133968,5133969,5133970,5133971,5133972,5133973,5133974,5133975,5133976,5133977,5133978,5133979,5133980,5133981,5133982,5133983,5133984,5133985,5133986,5133987,5133988,5133989,5133990,5133991,5133992,5133993,5133994,5133995,5133996,5133997,5133998,5133999,5134000,5134001,5134002,5134003,5134004,5134005,5134006,5134007,5134008,5134009,5134010,5134011,5134012,5134013,5134014,5134015,5134016,5134017,5134018,5134019,5134020,5134021,5134022,5134023,5134024,5134025,5134026,5134027,5134028,5134029,5134030,5134031,5134032,5134033,5134034,5134035,5134036,5134037,5134038,5134039,5134040,5134041,5134042,5134043,5134044,5134045,5134046,5134047,5134048,5134049,5134050,5134051,5134052,5134053,5134054,5134055,5134056,5134057,5134058,5134059,5134060,5134061,5134062,5134063,5134064,5134065,5134066,5134067,5134068,5134069,5134070,5134071,5134072,5134073,5134074,5134075,5134076,5134077,5134078,5134079],"Barium":[5191680],"Barrel":[5134336,5134337,5134338,5134339,5134340,5134341,5134344,5134345,5134346,5134347,5134348,5134349],"Barrier":[5134848],"Basalt":[5397504,5397505,5397506],"Beacon":[5135360],"Bed Block":[5135872,5135873,5135874,5135875,5135876,5135877,5135878,5135879,5135880,5135881,5135882,5135883,5135884,5135885,5135886,5135887,5135888,5135889,5135890,5135891,5135892,5135893,5135894,5135895,5135896,5135897,5135898,5135899,5135900,5135901,5135902,5135903,5135904,5135905,5135906,5135907,5135908,5135909,5135910,5135911,5135912,5135913,5135914,5135915,5135916,5135917,5135918,5135919,5135920,5135921,5135922,5135923,5135924,5135925,5135926,5135927,5135928,5135929,5135930,5135931,5135932,5135933,5135934,5135935,5135936,5135937,5135938,5135939,5135940,5135941,5135942,5135943,5135944,5135945,5135946,5135947,5135948,5135949,5135950,5135951,5135952,5135953,5135954,5135955,5135956,5135957,5135958,5135959,5135960,5135961,5135962,5135963,5135964,5135965,5135966,5135967,5135968,5135969,5135970,5135971,5135972,5135973,5135974,5135975,5135976,5135977,5135978,5135979,5135980,5135981,5135982,5135983,5135984,5135985,5135986,5135987,5135988,5135989,5135990,5135991,5135992,5135993,5135994,5135995,5135996,5135997,5135998,5135999,5136000,5136001,5136002,5136003,5136004,5136005,5136006,5136007,5136008,5136009,5136010,5136011,5136012,5136013,5136014,5136015,5136016,5136017,5136018,5136019,5136020,5136021,5136022,5136023,5136024,5136025,5136026,5136027,5136028,5136029,5136030,5136031,5136032,5136033,5136034,5136035,5136036,5136037,5136038,5136039,5136040,5136041,5136042,5136043,5136044,5136045,5136046,5136047,5136048,5136049,5136050,5136051,5136052,5136053,5136054,5136055,5136056,5136057,5136058,5136059,5136060,5136061,5136062,5136063,5136064,5136065,5136066,5136067,5136068,5136069,5136070,5136071,5136072,5136073,5136074,5136075,5136076,5136077,5136078,5136079,5136080,5136081,5136082,5136083,5136084,5136085,5136086,5136087,5136088,5136089,5136090,5136091,5136092,5136093,5136094,5136095,5136096,5136097,5136098,5136099,5136100,5136101,5136102,5136103,5136104,5136105,5136106,5136107,5136108,5136109,5136110,5136111,5136112,5136113,5136114,5136115,5136116,5136117,5136118,5136119,5136120,5136121,5136122,5136123,5136124,5136125,5136126,5136127],"Bedrock":[5136384,5136385],"Beetroot Block":[5136896,5136897,5136898,5136899,5136900,5136901,5136902,5136903],"Bell":[5137408,5137409,5137410,5137411,5137412,5137413,5137414,5137415,5137416,5137417,5137418,5137419,5137420,5137421,5137422,5137423],"Berkelium":[5192192],"Beryllium":[5192704],"Birch Button":[5137920,5137921,5137922,5137923,5137924,5137925,5137928,5137929,5137930,5137931,5137932,5137933],"Birch Door":[5138432,5138433,5138434,5138435,5138436,5138437,5138438,5138439,5138440,5138441,5138442,5138443,5138444,5138445,5138446,5138447,5138448,5138449,5138450,5138451,5138452,5138453,5138454,5138455,5138456,5138457,5138458,5138459,5138460,5138461,5138462,5138463],"Birch Fence":[5138944],"Birch Fence Gate":[5139456,5139457,5139458,5139459,5139460,5139461,5139462,5139463,5139464,5139465,5139466,5139467,5139468,5139469,5139470,5139471],"Birch Leaves":[5139968,5139969,5139970,5139971],"Birch Log":[5140480,5140481,5140482,5140483,5140484,5140485],"Birch Planks":[5140992],"Birch Pressure Plate":[5141504,5141505],"Birch Sapling":[5142016,5142017],"Birch Sign":[5142528,5142529,5142530,5142531,5142532,5142533,5142534,5142535,5142536,5142537,5142538,5142539,5142540,5142541,5142542,5142543],"Birch Slab":[5143040,5143041,5143042],"Birch Stairs":[5143552,5143553,5143554,5143555,5143556,5143557,5143558,5143559],"Birch Trapdoor":[5144064,5144065,5144066,5144067,5144068,5144069,5144070,5144071,5144072,5144073,5144074,5144075,5144076,5144077,5144078,5144079],"Birch Wall Sign":[5144576,5144577,5144578,5144579],"Birch Wood":[5145088,5145089,5145090,5145091,5145092,5145093],"Bismuth":[5193216],"Blackstone":[5399040],"Blackstone Slab":[5399552,5399553,5399554],"Blackstone Stairs":[5400064,5400065,5400066,5400067,5400068,5400069,5400070,5400071],"Blackstone Wall":[5400576,5400577,5400578,5400580,5400581,5400582,5400584,5400585,5400586,5400592,5400593,5400594,5400596,5400597,5400598,5400600,5400601,5400602,5400608,5400609,5400610,5400612,5400613,5400614,5400616,5400617,5400618,5400640,5400641,5400642,5400644,5400645,5400646,5400648,5400649,5400650,5400656,5400657,5400658,5400660,5400661,5400662,5400664,5400665,5400666,5400672,5400673,5400674,5400676,5400677,5400678,5400680,5400681,5400682,5400704,5400705,5400706,5400708,5400709,5400710,5400712,5400713,5400714,5400720,5400721,5400722,5400724,5400725,5400726,5400728,5400729,5400730,5400736,5400737,5400738,5400740,5400741,5400742,5400744,5400745,5400746,5400832,5400833,5400834,5400836,5400837,5400838,5400840,5400841,5400842,5400848,5400849,5400850,5400852,5400853,5400854,5400856,5400857,5400858,5400864,5400865,5400866,5400868,5400869,5400870,5400872,5400873,5400874,5400896,5400897,5400898,5400900,5400901,5400902,5400904,5400905,5400906,5400912,5400913,5400914,5400916,5400917,5400918,5400920,5400921,5400922,5400928,5400929,5400930,5400932,5400933,5400934,5400936,5400937,5400938,5400960,5400961,5400962,5400964,5400965,5400966,5400968,5400969,5400970,5400976,5400977,5400978,5400980,5400981,5400982,5400984,5400985,5400986,5400992,5400993,5400994,5400996,5400997,5400998,5401000,5401001,5401002],"Blast Furnace":[5146112,5146113,5146114,5146115,5146116,5146117,5146118,5146119],"Blue Ice":[5147136],"Blue Orchid":[5147648],"Blue Torch":[5148161,5148162,5148163,5148164,5148165],"Bohrium":[5193728],"Bone Block":[5148672,5148673,5148674],"Bookshelf":[5149184],"Boron":[5194240],"Brewing Stand":[5149696,5149697,5149698,5149699,5149700,5149701,5149702,5149703],"Brick Slab":[5150208,5150209,5150210],"Brick Stairs":[5150720,5150721,5150722,5150723,5150724,5150725,5150726,5150727],"Brick Wall":[5151232,5151233,5151234,5151236,5151237,5151238,5151240,5151241,5151242,5151248,5151249,5151250,5151252,5151253,5151254,5151256,5151257,5151258,5151264,5151265,5151266,5151268,5151269,5151270,5151272,5151273,5151274,5151296,5151297,5151298,5151300,5151301,5151302,5151304,5151305,5151306,5151312,5151313,5151314,5151316,5151317,5151318,5151320,5151321,5151322,5151328,5151329,5151330,5151332,5151333,5151334,5151336,5151337,5151338,5151360,5151361,5151362,5151364,5151365,5151366,5151368,5151369,5151370,5151376,5151377,5151378,5151380,5151381,5151382,5151384,5151385,5151386,5151392,5151393,5151394,5151396,5151397,5151398,5151400,5151401,5151402,5151488,5151489,5151490,5151492,5151493,5151494,5151496,5151497,5151498,5151504,5151505,5151506,5151508,5151509,5151510,5151512,5151513,5151514,5151520,5151521,5151522,5151524,5151525,5151526,5151528,5151529,5151530,5151552,5151553,5151554,5151556,5151557,5151558,5151560,5151561,5151562,5151568,5151569,5151570,5151572,5151573,5151574,5151576,5151577,5151578,5151584,5151585,5151586,5151588,5151589,5151590,5151592,5151593,5151594,5151616,5151617,5151618,5151620,5151621,5151622,5151624,5151625,5151626,5151632,5151633,5151634,5151636,5151637,5151638,5151640,5151641,5151642,5151648,5151649,5151650,5151652,5151653,5151654,5151656,5151657,5151658],"Bricks":[5151744],"Bromine":[5194752],"Brown Mushroom":[5152768],"Brown Mushroom Block":[5153280,5153281,5153282,5153283,5153284,5153285,5153286,5153287,5153288,5153289,5153290],"Cactus":[5153792,5153793,5153794,5153795,5153796,5153797,5153798,5153799,5153800,5153801,5153802,5153803,5153804,5153805,5153806,5153807],"Cadmium":[5195264],"Cake":[5154304,5154305,5154306,5154307,5154308,5154309,5154310],"Cake With Candle":[5458944,5458945],"Cake With Dyed Candle":[5459456,5459457,5459458,5459459,5459460,5459461,5459462,5459463,5459464,5459465,5459466,5459467,5459468,5459469,5459470,5459471,5459472,5459473,5459474,5459475,5459476,5459477,5459478,5459479,5459480,5459481,5459482,5459483,5459484,5459485,5459486,5459487],"Calcite":[5409280],"Calcium":[5195776],"Californium":[5196288],"Candle":[5457920,5457921,5457922,5457923,5457924,5457925,5457926,5457927],"Carbon":[5196800],"Carpet":[5154816,5154817,5154818,5154819,5154820,5154821,5154822,5154823,5154824,5154825,5154826,5154827,5154828,5154829,5154830,5154831],"Carrot Block":[5155328,5155329,5155330,5155331,5155332,5155333,5155334,5155335],"Cartography Table":[5460992],"Carved Pumpkin":[5155840,5155841,5155842,5155843],"Cauldron":[5463040],"Cerium":[5197312],"Cesium":[5197824],"Chain":[5469184,5469185,5469186],"Chest":[5156864,5156865,5156866,5156867],"Chiseled Deepslate":[5420032],"Chiseled Nether Bricks":[5420544],"Chiseled Polished Blackstone":[5404160],"Chiseled Quartz Block":[5157376,5157377,5157378],"Chiseled Red Sandstone":[5157888],"Chiseled Sandstone":[5158400],"Chiseled Stone Bricks":[5158912],"Chlorine":[5198336],"Chorus Flower":[5465600,5465601,5465602,5465603,5465604,5465605],"Chorus Plant":[5466112],"Chromium":[5198848],"Clay Block":[5159424],"Coal Block":[5159936],"Coal Ore":[5160448],"Cobalt":[5199360],"Cobbled Deepslate":[5415424],"Cobbled Deepslate Slab":[5415936,5415937,5415938],"Cobbled Deepslate Stairs":[5416448,5416449,5416450,5416451,5416452,5416453,5416454,5416455],"Cobbled Deepslate Wall":[5416960,5416961,5416962,5416964,5416965,5416966,5416968,5416969,5416970,5416976,5416977,5416978,5416980,5416981,5416982,5416984,5416985,5416986,5416992,5416993,5416994,5416996,5416997,5416998,5417000,5417001,5417002,5417024,5417025,5417026,5417028,5417029,5417030,5417032,5417033,5417034,5417040,5417041,5417042,5417044,5417045,5417046,5417048,5417049,5417050,5417056,5417057,5417058,5417060,5417061,5417062,5417064,5417065,5417066,5417088,5417089,5417090,5417092,5417093,5417094,5417096,5417097,5417098,5417104,5417105,5417106,5417108,5417109,5417110,5417112,5417113,5417114,5417120,5417121,5417122,5417124,5417125,5417126,5417128,5417129,5417130,5417216,5417217,5417218,5417220,5417221,5417222,5417224,5417225,5417226,5417232,5417233,5417234,5417236,5417237,5417238,5417240,5417241,5417242,5417248,5417249,5417250,5417252,5417253,5417254,5417256,5417257,5417258,5417280,5417281,5417282,5417284,5417285,5417286,5417288,5417289,5417290,5417296,5417297,5417298,5417300,5417301,5417302,5417304,5417305,5417306,5417312,5417313,5417314,5417316,5417317,5417318,5417320,5417321,5417322,5417344,5417345,5417346,5417348,5417349,5417350,5417352,5417353,5417354,5417360,5417361,5417362,5417364,5417365,5417366,5417368,5417369,5417370,5417376,5417377,5417378,5417380,5417381,5417382,5417384,5417385,5417386],"Cobblestone":[5160960],"Cobblestone Slab":[5161472,5161473,5161474],"Cobblestone Stairs":[5161984,5161985,5161986,5161987,5161988,5161989,5161990,5161991],"Cobblestone Wall":[5162496,5162497,5162498,5162500,5162501,5162502,5162504,5162505,5162506,5162512,5162513,5162514,5162516,5162517,5162518,5162520,5162521,5162522,5162528,5162529,5162530,5162532,5162533,5162534,5162536,5162537,5162538,5162560,5162561,5162562,5162564,5162565,5162566,5162568,5162569,5162570,5162576,5162577,5162578,5162580,5162581,5162582,5162584,5162585,5162586,5162592,5162593,5162594,5162596,5162597,5162598,5162600,5162601,5162602,5162624,5162625,5162626,5162628,5162629,5162630,5162632,5162633,5162634,5162640,5162641,5162642,5162644,5162645,5162646,5162648,5162649,5162650,5162656,5162657,5162658,5162660,5162661,5162662,5162664,5162665,5162666,5162752,5162753,5162754,5162756,5162757,5162758,5162760,5162761,5162762,5162768,5162769,5162770,5162772,5162773,5162774,5162776,5162777,5162778,5162784,5162785,5162786,5162788,5162789,5162790,5162792,5162793,5162794,5162816,5162817,5162818,5162820,5162821,5162822,5162824,5162825,5162826,5162832,5162833,5162834,5162836,5162837,5162838,5162840,5162841,5162842,5162848,5162849,5162850,5162852,5162853,5162854,5162856,5162857,5162858,5162880,5162881,5162882,5162884,5162885,5162886,5162888,5162889,5162890,5162896,5162897,5162898,5162900,5162901,5162902,5162904,5162905,5162906,5162912,5162913,5162914,5162916,5162917,5162918,5162920,5162921,5162922],"Cobweb":[5163008],"Cocoa Block":[5163520,5163521,5163522,5163523,5163524,5163525,5163526,5163527,5163528,5163529,5163530,5163531],"Compound Creator":[5164032,5164033,5164034,5164035],"Concrete":[5164544,5164545,5164546,5164547,5164548,5164549,5164550,5164551,5164552,5164553,5164554,5164555,5164556,5164557,5164558,5164559],"Concrete Powder":[5165056,5165057,5165058,5165059,5165060,5165061,5165062,5165063,5165064,5165065,5165066,5165067,5165068,5165069,5165070,5165071],"Copernicium":[5200384],"Copper":[5200896],"Copper Block":[5455872,5455873,5455874,5455875,5455876,5455877,5455878,5455879],"Copper Ore":[5449728],"Coral":[5165568,5165569,5165570,5165571,5165572,5165576,5165577,5165578,5165579,5165580],"Coral Block":[5166080,5166081,5166082,5166083,5166084,5166088,5166089,5166090,5166091,5166092],"Coral Fan":[5166592,5166593,5166594,5166595,5166596,5166600,5166601,5166602,5166603,5166604,5166608,5166609,5166610,5166611,5166612,5166616,5166617,5166618,5166619,5166620],"Cornflower":[5167104],"Cracked Deepslate Bricks":[5412352],"Cracked Deepslate Tiles":[5414912],"Cracked Nether Bricks":[5421056],"Cracked Polished Blackstone Bricks":[5406720],"Cracked Stone Bricks":[5167616],"Crafting Table":[5168128],"Crimson Button":[5434368,5434369,5434370,5434371,5434372,5434373,5434376,5434377,5434378,5434379,5434380,5434381],"Crimson Door":[5437440,5437441,5437442,5437443,5437444,5437445,5437446,5437447,5437448,5437449,5437450,5437451,5437452,5437453,5437454,5437455,5437456,5437457,5437458,5437459,5437460,5437461,5437462,5437463,5437464,5437465,5437466,5437467,5437468,5437469,5437470,5437471],"Crimson Fence":[5426688],"Crimson Fence Gate":[5438976,5438977,5438978,5438979,5438980,5438981,5438982,5438983,5438984,5438985,5438986,5438987,5438988,5438989,5438990,5438991],"Crimson Hyphae":[5431296,5431297,5431298,5431299,5431300,5431301],"Crimson Planks":[5425152],"Crimson Pressure Plate":[5435904,5435905],"Crimson Sign":[5442048,5442049,5442050,5442051,5442052,5442053,5442054,5442055,5442056,5442057,5442058,5442059,5442060,5442061,5442062,5442063],"Crimson Slab":[5428224,5428225,5428226],"Crimson Stairs":[5440512,5440513,5440514,5440515,5440516,5440517,5440518,5440519],"Crimson Stem":[5429760,5429761,5429762,5429763,5429764,5429765],"Crimson Trapdoor":[5432832,5432833,5432834,5432835,5432836,5432837,5432838,5432839,5432840,5432841,5432842,5432843,5432844,5432845,5432846,5432847],"Crimson Wall Sign":[5443584,5443585,5443586,5443587],"Crying Obsidian":[5454336],"Curium":[5201408],"Cut Copper Block":[5456384,5456385,5456386,5456387,5456388,5456389,5456390,5456391],"Cut Copper Slab Slab":[5456896,5456897,5456898,5456899,5456900,5456901,5456902,5456903,5456904,5456905,5456906,5456907,5456908,5456909,5456910,5456911,5456912,5456913,5456914,5456915,5456916,5456917,5456918,5456919],"Cut Copper Stairs":[5457408,5457409,5457410,5457411,5457412,5457413,5457414,5457415,5457416,5457417,5457418,5457419,5457420,5457421,5457422,5457423,5457424,5457425,5457426,5457427,5457428,5457429,5457430,5457431,5457432,5457433,5457434,5457435,5457436,5457437,5457438,5457439,5457440,5457441,5457442,5457443,5457444,5457445,5457446,5457447,5457448,5457449,5457450,5457451,5457452,5457453,5457454,5457455,5457456,5457457,5457458,5457459,5457460,5457461,5457462,5457463,5457464,5457465,5457466,5457467,5457468,5457469,5457470,5457471],"Cut Red Sandstone":[5168640],"Cut Red Sandstone Slab":[5169152,5169153,5169154],"Cut Sandstone":[5169664],"Cut Sandstone Slab":[5170176,5170177,5170178],"Dandelion":[5171200],"Dark Oak Button":[5171712,5171713,5171714,5171715,5171716,5171717,5171720,5171721,5171722,5171723,5171724,5171725],"Dark Oak Door":[5172224,5172225,5172226,5172227,5172228,5172229,5172230,5172231,5172232,5172233,5172234,5172235,5172236,5172237,5172238,5172239,5172240,5172241,5172242,5172243,5172244,5172245,5172246,5172247,5172248,5172249,5172250,5172251,5172252,5172253,5172254,5172255],"Dark Oak Fence":[5172736],"Dark Oak Fence Gate":[5173248,5173249,5173250,5173251,5173252,5173253,5173254,5173255,5173256,5173257,5173258,5173259,5173260,5173261,5173262,5173263],"Dark Oak Leaves":[5173760,5173761,5173762,5173763],"Dark Oak Log":[5174272,5174273,5174274,5174275,5174276,5174277],"Dark Oak Planks":[5174784],"Dark Oak Pressure Plate":[5175296,5175297],"Dark Oak Sapling":[5175808,5175809],"Dark Oak Sign":[5176320,5176321,5176322,5176323,5176324,5176325,5176326,5176327,5176328,5176329,5176330,5176331,5176332,5176333,5176334,5176335],"Dark Oak Slab":[5176832,5176833,5176834],"Dark Oak Stairs":[5177344,5177345,5177346,5177347,5177348,5177349,5177350,5177351],"Dark Oak Trapdoor":[5177856,5177857,5177858,5177859,5177860,5177861,5177862,5177863,5177864,5177865,5177866,5177867,5177868,5177869,5177870,5177871],"Dark Oak Wall Sign":[5178368,5178369,5178370,5178371],"Dark Oak Wood":[5178880,5178881,5178882,5178883,5178884,5178885],"Dark Prismarine":[5179392],"Dark Prismarine Slab":[5179904,5179905,5179906],"Dark Prismarine Stairs":[5180416,5180417,5180418,5180419,5180420,5180421,5180422,5180423],"Darmstadtium":[5201920],"Daylight Sensor":[5180928,5180929,5180930,5180931,5180932,5180933,5180934,5180935,5180936,5180937,5180938,5180939,5180940,5180941,5180942,5180943,5180944,5180945,5180946,5180947,5180948,5180949,5180950,5180951,5180952,5180953,5180954,5180955,5180956,5180957,5180958,5180959],"Dead Bush":[5181440],"Deepslate":[5409792,5409793,5409794],"Deepslate Brick Slab":[5410816,5410817,5410818],"Deepslate Brick Stairs":[5411328,5411329,5411330,5411331,5411332,5411333,5411334,5411335],"Deepslate Brick Wall":[5411840,5411841,5411842,5411844,5411845,5411846,5411848,5411849,5411850,5411856,5411857,5411858,5411860,5411861,5411862,5411864,5411865,5411866,5411872,5411873,5411874,5411876,5411877,5411878,5411880,5411881,5411882,5411904,5411905,5411906,5411908,5411909,5411910,5411912,5411913,5411914,5411920,5411921,5411922,5411924,5411925,5411926,5411928,5411929,5411930,5411936,5411937,5411938,5411940,5411941,5411942,5411944,5411945,5411946,5411968,5411969,5411970,5411972,5411973,5411974,5411976,5411977,5411978,5411984,5411985,5411986,5411988,5411989,5411990,5411992,5411993,5411994,5412000,5412001,5412002,5412004,5412005,5412006,5412008,5412009,5412010,5412096,5412097,5412098,5412100,5412101,5412102,5412104,5412105,5412106,5412112,5412113,5412114,5412116,5412117,5412118,5412120,5412121,5412122,5412128,5412129,5412130,5412132,5412133,5412134,5412136,5412137,5412138,5412160,5412161,5412162,5412164,5412165,5412166,5412168,5412169,5412170,5412176,5412177,5412178,5412180,5412181,5412182,5412184,5412185,5412186,5412192,5412193,5412194,5412196,5412197,5412198,5412200,5412201,5412202,5412224,5412225,5412226,5412228,5412229,5412230,5412232,5412233,5412234,5412240,5412241,5412242,5412244,5412245,5412246,5412248,5412249,5412250,5412256,5412257,5412258,5412260,5412261,5412262,5412264,5412265,5412266],"Deepslate Bricks":[5410304],"Deepslate Coal Ore":[5445632],"Deepslate Copper Ore":[5449216],"Deepslate Diamond Ore":[5446144],"Deepslate Emerald Ore":[5446656],"Deepslate Gold Ore":[5448704],"Deepslate Iron Ore":[5448192],"Deepslate Lapis Lazuli Ore":[5447168],"Deepslate Redstone Ore":[5447680,5447681],"Deepslate Tile Slab":[5413376,5413377,5413378],"Deepslate Tile Stairs":[5413888,5413889,5413890,5413891,5413892,5413893,5413894,5413895],"Deepslate Tile Wall":[5414400,5414401,5414402,5414404,5414405,5414406,5414408,5414409,5414410,5414416,5414417,5414418,5414420,5414421,5414422,5414424,5414425,5414426,5414432,5414433,5414434,5414436,5414437,5414438,5414440,5414441,5414442,5414464,5414465,5414466,5414468,5414469,5414470,5414472,5414473,5414474,5414480,5414481,5414482,5414484,5414485,5414486,5414488,5414489,5414490,5414496,5414497,5414498,5414500,5414501,5414502,5414504,5414505,5414506,5414528,5414529,5414530,5414532,5414533,5414534,5414536,5414537,5414538,5414544,5414545,5414546,5414548,5414549,5414550,5414552,5414553,5414554,5414560,5414561,5414562,5414564,5414565,5414566,5414568,5414569,5414570,5414656,5414657,5414658,5414660,5414661,5414662,5414664,5414665,5414666,5414672,5414673,5414674,5414676,5414677,5414678,5414680,5414681,5414682,5414688,5414689,5414690,5414692,5414693,5414694,5414696,5414697,5414698,5414720,5414721,5414722,5414724,5414725,5414726,5414728,5414729,5414730,5414736,5414737,5414738,5414740,5414741,5414742,5414744,5414745,5414746,5414752,5414753,5414754,5414756,5414757,5414758,5414760,5414761,5414762,5414784,5414785,5414786,5414788,5414789,5414790,5414792,5414793,5414794,5414800,5414801,5414802,5414804,5414805,5414806,5414808,5414809,5414810,5414816,5414817,5414818,5414820,5414821,5414822,5414824,5414825,5414826],"Deepslate Tiles":[5412864],"Detector Rail":[5181952,5181953,5181954,5181955,5181956,5181957,5181960,5181961,5181962,5181963,5181964,5181965],"Diamond Block":[5182464],"Diamond Ore":[5182976],"Diorite":[5183488],"Diorite Slab":[5184000,5184001,5184002],"Diorite Stairs":[5184512,5184513,5184514,5184515,5184516,5184517,5184518,5184519],"Diorite Wall":[5185024,5185025,5185026,5185028,5185029,5185030,5185032,5185033,5185034,5185040,5185041,5185042,5185044,5185045,5185046,5185048,5185049,5185050,5185056,5185057,5185058,5185060,5185061,5185062,5185064,5185065,5185066,5185088,5185089,5185090,5185092,5185093,5185094,5185096,5185097,5185098,5185104,5185105,5185106,5185108,5185109,5185110,5185112,5185113,5185114,5185120,5185121,5185122,5185124,5185125,5185126,5185128,5185129,5185130,5185152,5185153,5185154,5185156,5185157,5185158,5185160,5185161,5185162,5185168,5185169,5185170,5185172,5185173,5185174,5185176,5185177,5185178,5185184,5185185,5185186,5185188,5185189,5185190,5185192,5185193,5185194,5185280,5185281,5185282,5185284,5185285,5185286,5185288,5185289,5185290,5185296,5185297,5185298,5185300,5185301,5185302,5185304,5185305,5185306,5185312,5185313,5185314,5185316,5185317,5185318,5185320,5185321,5185322,5185344,5185345,5185346,5185348,5185349,5185350,5185352,5185353,5185354,5185360,5185361,5185362,5185364,5185365,5185366,5185368,5185369,5185370,5185376,5185377,5185378,5185380,5185381,5185382,5185384,5185385,5185386,5185408,5185409,5185410,5185412,5185413,5185414,5185416,5185417,5185418,5185424,5185425,5185426,5185428,5185429,5185430,5185432,5185433,5185434,5185440,5185441,5185442,5185444,5185445,5185446,5185448,5185449,5185450],"Dirt":[5185536,5185537,5185538],"Double Tallgrass":[5186048,5186049],"Dragon Egg":[5186560],"Dried Kelp Block":[5187072],"Dubnium":[5202432],"Dyed Candle":[5458432,5458433,5458434,5458435,5458436,5458437,5458438,5458439,5458440,5458441,5458442,5458443,5458444,5458445,5458446,5458447,5458448,5458449,5458450,5458451,5458452,5458453,5458454,5458455,5458456,5458457,5458458,5458459,5458460,5458461,5458462,5458463,5458464,5458465,5458466,5458467,5458468,5458469,5458470,5458471,5458472,5458473,5458474,5458475,5458476,5458477,5458478,5458479,5458480,5458481,5458482,5458483,5458484,5458485,5458486,5458487,5458488,5458489,5458490,5458491,5458492,5458493,5458494,5458495,5458496,5458497,5458498,5458499,5458500,5458501,5458502,5458503,5458504,5458505,5458506,5458507,5458508,5458509,5458510,5458511,5458512,5458513,5458514,5458515,5458516,5458517,5458518,5458519,5458520,5458521,5458522,5458523,5458524,5458525,5458526,5458527,5458528,5458529,5458530,5458531,5458532,5458533,5458534,5458535,5458536,5458537,5458538,5458539,5458540,5458541,5458542,5458543,5458544,5458545,5458546,5458547,5458548,5458549,5458550,5458551,5458552,5458553,5458554,5458555,5458556,5458557,5458558,5458559],"Dyed Shulker Box":[5187584,5187585,5187586,5187587,5187588,5187589,5187590,5187591,5187592,5187593,5187594,5187595,5187596,5187597,5187598,5187599],"Dysprosium":[5202944],"Einsteinium":[5203456],"Element Constructor":[5199872,5199873,5199874,5199875],"Emerald Block":[5249536],"Emerald Ore":[5250048],"Enchanting Table":[5250560],"End Portal Frame":[5251072,5251073,5251074,5251075,5251076,5251077,5251078,5251079],"End Rod":[5251584,5251585,5251586,5251587,5251588,5251589],"End Stone":[5252096],"End Stone Brick Slab":[5252608,5252609,5252610],"End Stone Brick Stairs":[5253120,5253121,5253122,5253123,5253124,5253125,5253126,5253127],"End Stone Brick Wall":[5253632,5253633,5253634,5253636,5253637,5253638,5253640,5253641,5253642,5253648,5253649,5253650,5253652,5253653,5253654,5253656,5253657,5253658,5253664,5253665,5253666,5253668,5253669,5253670,5253672,5253673,5253674,5253696,5253697,5253698,5253700,5253701,5253702,5253704,5253705,5253706,5253712,5253713,5253714,5253716,5253717,5253718,5253720,5253721,5253722,5253728,5253729,5253730,5253732,5253733,5253734,5253736,5253737,5253738,5253760,5253761,5253762,5253764,5253765,5253766,5253768,5253769,5253770,5253776,5253777,5253778,5253780,5253781,5253782,5253784,5253785,5253786,5253792,5253793,5253794,5253796,5253797,5253798,5253800,5253801,5253802,5253888,5253889,5253890,5253892,5253893,5253894,5253896,5253897,5253898,5253904,5253905,5253906,5253908,5253909,5253910,5253912,5253913,5253914,5253920,5253921,5253922,5253924,5253925,5253926,5253928,5253929,5253930,5253952,5253953,5253954,5253956,5253957,5253958,5253960,5253961,5253962,5253968,5253969,5253970,5253972,5253973,5253974,5253976,5253977,5253978,5253984,5253985,5253986,5253988,5253989,5253990,5253992,5253993,5253994,5254016,5254017,5254018,5254020,5254021,5254022,5254024,5254025,5254026,5254032,5254033,5254034,5254036,5254037,5254038,5254040,5254041,5254042,5254048,5254049,5254050,5254052,5254053,5254054,5254056,5254057,5254058],"End Stone Bricks":[5254144],"Ender Chest":[5254656,5254657,5254658,5254659],"Erbium":[5203968],"Europium":[5204480],"Fake Wooden Slab":[5255168,5255169,5255170],"Farmland":[5255680,5255681,5255682,5255683,5255684,5255685,5255686,5255687],"Fermium":[5204992],"Fern":[5256192],"Fire Block":[5256704,5256705,5256706,5256707,5256708,5256709,5256710,5256711,5256712,5256713,5256714,5256715,5256716,5256717,5256718,5256719],"Flerovium":[5205504],"Fletching Table":[5257216],"Flower Pot":[5257728],"Fluorine":[5206016],"Francium":[5206528],"Froglight":[5467648,5467649,5467650,5467652,5467653,5467654,5467656,5467657,5467658],"Frosted Ice":[5258240,5258241,5258242,5258243],"Furnace":[5258752,5258753,5258754,5258755,5258756,5258757,5258758,5258759],"Gadolinium":[5207040],"Gallium":[5207552],"Germanium":[5208064],"Gilded Blackstone":[5454848],"Glass":[5259264],"Glass Pane":[5259776],"Glazed Terracotta":[5395968,5395969,5395970,5395971,5395972,5395973,5395974,5395975,5395976,5395977,5395978,5395979,5395980,5395981,5395982,5395983,5395984,5395985,5395986,5395987,5395988,5395989,5395990,5395991,5395992,5395993,5395994,5395995,5395996,5395997,5395998,5395999,5396000,5396001,5396002,5396003,5396004,5396005,5396006,5396007,5396008,5396009,5396010,5396011,5396012,5396013,5396014,5396015,5396016,5396017,5396018,5396019,5396020,5396021,5396022,5396023,5396024,5396025,5396026,5396027,5396028,5396029,5396030,5396031],"Glowing Obsidian":[5260288],"Glowstone":[5260800],"Gold":[5208576],"Gold Block":[5261312],"Gold Ore":[5261824],"Granite":[5262336],"Granite Slab":[5262848,5262849,5262850],"Granite Stairs":[5263360,5263361,5263362,5263363,5263364,5263365,5263366,5263367],"Granite Wall":[5263872,5263873,5263874,5263876,5263877,5263878,5263880,5263881,5263882,5263888,5263889,5263890,5263892,5263893,5263894,5263896,5263897,5263898,5263904,5263905,5263906,5263908,5263909,5263910,5263912,5263913,5263914,5263936,5263937,5263938,5263940,5263941,5263942,5263944,5263945,5263946,5263952,5263953,5263954,5263956,5263957,5263958,5263960,5263961,5263962,5263968,5263969,5263970,5263972,5263973,5263974,5263976,5263977,5263978,5264000,5264001,5264002,5264004,5264005,5264006,5264008,5264009,5264010,5264016,5264017,5264018,5264020,5264021,5264022,5264024,5264025,5264026,5264032,5264033,5264034,5264036,5264037,5264038,5264040,5264041,5264042,5264128,5264129,5264130,5264132,5264133,5264134,5264136,5264137,5264138,5264144,5264145,5264146,5264148,5264149,5264150,5264152,5264153,5264154,5264160,5264161,5264162,5264164,5264165,5264166,5264168,5264169,5264170,5264192,5264193,5264194,5264196,5264197,5264198,5264200,5264201,5264202,5264208,5264209,5264210,5264212,5264213,5264214,5264216,5264217,5264218,5264224,5264225,5264226,5264228,5264229,5264230,5264232,5264233,5264234,5264256,5264257,5264258,5264260,5264261,5264262,5264264,5264265,5264266,5264272,5264273,5264274,5264276,5264277,5264278,5264280,5264281,5264282,5264288,5264289,5264290,5264292,5264293,5264294,5264296,5264297,5264298],"Grass":[5264384],"Grass Path":[5264896],"Gravel":[5265408],"Green Torch":[5266945,5266946,5266947,5266948,5266949],"Hafnium":[5209088],"Hanging Roots":[5460480],"Hardened Clay":[5267456],"Hardened Glass":[5267968],"Hardened Glass Pane":[5268480],"Hassium":[5209600],"Hay Bale":[5268992,5268993,5268994],"Heat Block":[5156352],"Helium":[5210112],"Holmium":[5210624],"Honeycomb Block":[5445120],"Hopper":[5269504,5269506,5269507,5269508,5269509,5269512,5269514,5269515,5269516,5269517],"Hydrogen":[5211136],"Ice":[5270016],"Indium":[5211648],"Infested Chiseled Stone Brick":[5270528],"Infested Cobblestone":[5271040],"Infested Cracked Stone Brick":[5271552],"Infested Mossy Stone Brick":[5272064],"Infested Stone":[5272576],"Infested Stone Brick":[5273088],"Invisible Bedrock":[5274624],"Iodine":[5212160],"Iridium":[5212672],"Iron":[5213184],"Iron Bars":[5275648],"Iron Block":[5275136],"Iron Door":[5276160,5276161,5276162,5276163,5276164,5276165,5276166,5276167,5276168,5276169,5276170,5276171,5276172,5276173,5276174,5276175,5276176,5276177,5276178,5276179,5276180,5276181,5276182,5276183,5276184,5276185,5276186,5276187,5276188,5276189,5276190,5276191],"Iron Ore":[5276672],"Iron Trapdoor":[5277184,5277185,5277186,5277187,5277188,5277189,5277190,5277191,5277192,5277193,5277194,5277195,5277196,5277197,5277198,5277199],"Item Frame":[5277696,5277697,5277698,5277699,5277700,5277701,5277702,5277703,5277704,5277705,5277706,5277707,5277712,5277713,5277714,5277715,5277716,5277717,5277718,5277719,5277720,5277721,5277722,5277723],"Jack o'Lantern":[5294592,5294593,5294594,5294595],"Jukebox":[5278208],"Jungle Button":[5278720,5278721,5278722,5278723,5278724,5278725,5278728,5278729,5278730,5278731,5278732,5278733],"Jungle Door":[5279232,5279233,5279234,5279235,5279236,5279237,5279238,5279239,5279240,5279241,5279242,5279243,5279244,5279245,5279246,5279247,5279248,5279249,5279250,5279251,5279252,5279253,5279254,5279255,5279256,5279257,5279258,5279259,5279260,5279261,5279262,5279263],"Jungle Fence":[5279744],"Jungle Fence Gate":[5280256,5280257,5280258,5280259,5280260,5280261,5280262,5280263,5280264,5280265,5280266,5280267,5280268,5280269,5280270,5280271],"Jungle Leaves":[5280768,5280769,5280770,5280771],"Jungle Log":[5281280,5281281,5281282,5281283,5281284,5281285],"Jungle Planks":[5281792],"Jungle Pressure Plate":[5282304,5282305],"Jungle Sapling":[5282816,5282817],"Jungle Sign":[5283328,5283329,5283330,5283331,5283332,5283333,5283334,5283335,5283336,5283337,5283338,5283339,5283340,5283341,5283342,5283343],"Jungle Slab":[5283840,5283841,5283842],"Jungle Stairs":[5284352,5284353,5284354,5284355,5284356,5284357,5284358,5284359],"Jungle Trapdoor":[5284864,5284865,5284866,5284867,5284868,5284869,5284870,5284871,5284872,5284873,5284874,5284875,5284876,5284877,5284878,5284879],"Jungle Wall Sign":[5285376,5285377,5285378,5285379],"Jungle Wood":[5285888,5285889,5285890,5285891,5285892,5285893],"Krypton":[5213696],"Lab Table":[5286400,5286401,5286402,5286403],"Ladder":[5286912,5286913,5286914,5286915],"Lantern":[5287424,5287425],"Lanthanum":[5214208],"Lapis Lazuli Block":[5287936],"Lapis Lazuli Ore":[5288448],"Large Fern":[5288960,5288961],"Lava":[5289472,5289473,5289474,5289475,5289476,5289477,5289478,5289479,5289480,5289481,5289482,5289483,5289484,5289485,5289486,5289487,5289488,5289489,5289490,5289491,5289492,5289493,5289494,5289495,5289496,5289497,5289498,5289499,5289500,5289501,5289502,5289503],"Lava Cauldron":[5464064,5464065,5464066,5464067,5464068,5464069],"Lawrencium":[5214720],"Lead":[5215232],"Lectern":[5289984,5289985,5289986,5289987,5289988,5289989,5289990,5289991],"Legacy Stonecutter":[5290496],"Lever":[5291008,5291009,5291010,5291011,5291012,5291013,5291014,5291015,5291016,5291017,5291018,5291019,5291020,5291021,5291022,5291023],"Light Block":[5407232,5407233,5407234,5407235,5407236,5407237,5407238,5407239,5407240,5407241,5407242,5407243,5407244,5407245,5407246,5407247],"Lightning Rod":[5455360,5455361,5455362,5455363,5455364,5455365],"Lilac":[5292544,5292545],"Lily Pad":[5293568],"Lily of the Valley":[5293056],"Lithium":[5215744],"Livermorium":[5216256],"Loom":[5295104,5295105,5295106,5295107],"Lutetium":[5216768],"Magma Block":[5296128],"Magnesium":[5217280],"Manganese":[5217792],"Mangrove Button":[5433856,5433857,5433858,5433859,5433860,5433861,5433864,5433865,5433866,5433867,5433868,5433869],"Mangrove Door":[5436928,5436929,5436930,5436931,5436932,5436933,5436934,5436935,5436936,5436937,5436938,5436939,5436940,5436941,5436942,5436943,5436944,5436945,5436946,5436947,5436948,5436949,5436950,5436951,5436952,5436953,5436954,5436955,5436956,5436957,5436958,5436959],"Mangrove Fence":[5426176],"Mangrove Fence Gate":[5438464,5438465,5438466,5438467,5438468,5438469,5438470,5438471,5438472,5438473,5438474,5438475,5438476,5438477,5438478,5438479],"Mangrove Log":[5429248,5429249,5429250,5429251,5429252,5429253],"Mangrove Planks":[5424640],"Mangrove Pressure Plate":[5435392,5435393],"Mangrove Roots":[5466624],"Mangrove Sign":[5441536,5441537,5441538,5441539,5441540,5441541,5441542,5441543,5441544,5441545,5441546,5441547,5441548,5441549,5441550,5441551],"Mangrove Slab":[5427712,5427713,5427714],"Mangrove Stairs":[5440000,5440001,5440002,5440003,5440004,5440005,5440006,5440007],"Mangrove Trapdoor":[5432320,5432321,5432322,5432323,5432324,5432325,5432326,5432327,5432328,5432329,5432330,5432331,5432332,5432333,5432334,5432335],"Mangrove Wall Sign":[5443072,5443073,5443074,5443075],"Mangrove Wood":[5430784,5430785,5430786,5430787,5430788,5430789],"Material Reducer":[5296640,5296641,5296642,5296643],"Meitnerium":[5218304],"Melon Block":[5297152],"Melon Stem":[5297664,5297665,5297666,5297667,5297668,5297669,5297670,5297671],"Mendelevium":[5218816],"Mercury":[5219328],"Mob Head":[5298184,5298185,5298186,5298187,5298188,5298189,5298192,5298193,5298194,5298195,5298196,5298197,5298200,5298201,5298202,5298203,5298204,5298205,5298208,5298209,5298210,5298211,5298212,5298213,5298216,5298217,5298218,5298219,5298220,5298221],"Molybdenum":[5219840],"Monster Spawner":[5298688],"Moscovium":[5220352],"Mossy Cobblestone":[5299200],"Mossy Cobblestone Slab":[5299712,5299713,5299714],"Mossy Cobblestone Stairs":[5300224,5300225,5300226,5300227,5300228,5300229,5300230,5300231],"Mossy Cobblestone Wall":[5300736,5300737,5300738,5300740,5300741,5300742,5300744,5300745,5300746,5300752,5300753,5300754,5300756,5300757,5300758,5300760,5300761,5300762,5300768,5300769,5300770,5300772,5300773,5300774,5300776,5300777,5300778,5300800,5300801,5300802,5300804,5300805,5300806,5300808,5300809,5300810,5300816,5300817,5300818,5300820,5300821,5300822,5300824,5300825,5300826,5300832,5300833,5300834,5300836,5300837,5300838,5300840,5300841,5300842,5300864,5300865,5300866,5300868,5300869,5300870,5300872,5300873,5300874,5300880,5300881,5300882,5300884,5300885,5300886,5300888,5300889,5300890,5300896,5300897,5300898,5300900,5300901,5300902,5300904,5300905,5300906,5300992,5300993,5300994,5300996,5300997,5300998,5301000,5301001,5301002,5301008,5301009,5301010,5301012,5301013,5301014,5301016,5301017,5301018,5301024,5301025,5301026,5301028,5301029,5301030,5301032,5301033,5301034,5301056,5301057,5301058,5301060,5301061,5301062,5301064,5301065,5301066,5301072,5301073,5301074,5301076,5301077,5301078,5301080,5301081,5301082,5301088,5301089,5301090,5301092,5301093,5301094,5301096,5301097,5301098,5301120,5301121,5301122,5301124,5301125,5301126,5301128,5301129,5301130,5301136,5301137,5301138,5301140,5301141,5301142,5301144,5301145,5301146,5301152,5301153,5301154,5301156,5301157,5301158,5301160,5301161,5301162],"Mossy Stone Brick Slab":[5301248,5301249,5301250],"Mossy Stone Brick Stairs":[5301760,5301761,5301762,5301763,5301764,5301765,5301766,5301767],"Mossy Stone Brick Wall":[5302272,5302273,5302274,5302276,5302277,5302278,5302280,5302281,5302282,5302288,5302289,5302290,5302292,5302293,5302294,5302296,5302297,5302298,5302304,5302305,5302306,5302308,5302309,5302310,5302312,5302313,5302314,5302336,5302337,5302338,5302340,5302341,5302342,5302344,5302345,5302346,5302352,5302353,5302354,5302356,5302357,5302358,5302360,5302361,5302362,5302368,5302369,5302370,5302372,5302373,5302374,5302376,5302377,5302378,5302400,5302401,5302402,5302404,5302405,5302406,5302408,5302409,5302410,5302416,5302417,5302418,5302420,5302421,5302422,5302424,5302425,5302426,5302432,5302433,5302434,5302436,5302437,5302438,5302440,5302441,5302442,5302528,5302529,5302530,5302532,5302533,5302534,5302536,5302537,5302538,5302544,5302545,5302546,5302548,5302549,5302550,5302552,5302553,5302554,5302560,5302561,5302562,5302564,5302565,5302566,5302568,5302569,5302570,5302592,5302593,5302594,5302596,5302597,5302598,5302600,5302601,5302602,5302608,5302609,5302610,5302612,5302613,5302614,5302616,5302617,5302618,5302624,5302625,5302626,5302628,5302629,5302630,5302632,5302633,5302634,5302656,5302657,5302658,5302660,5302661,5302662,5302664,5302665,5302666,5302672,5302673,5302674,5302676,5302677,5302678,5302680,5302681,5302682,5302688,5302689,5302690,5302692,5302693,5302694,5302696,5302697,5302698],"Mossy Stone Bricks":[5302784],"Mud":[5450752],"Mud Brick Slab":[5451776,5451777,5451778],"Mud Brick Stairs":[5452288,5452289,5452290,5452291,5452292,5452293,5452294,5452295],"Mud Brick Wall":[5452800,5452801,5452802,5452804,5452805,5452806,5452808,5452809,5452810,5452816,5452817,5452818,5452820,5452821,5452822,5452824,5452825,5452826,5452832,5452833,5452834,5452836,5452837,5452838,5452840,5452841,5452842,5452864,5452865,5452866,5452868,5452869,5452870,5452872,5452873,5452874,5452880,5452881,5452882,5452884,5452885,5452886,5452888,5452889,5452890,5452896,5452897,5452898,5452900,5452901,5452902,5452904,5452905,5452906,5452928,5452929,5452930,5452932,5452933,5452934,5452936,5452937,5452938,5452944,5452945,5452946,5452948,5452949,5452950,5452952,5452953,5452954,5452960,5452961,5452962,5452964,5452965,5452966,5452968,5452969,5452970,5453056,5453057,5453058,5453060,5453061,5453062,5453064,5453065,5453066,5453072,5453073,5453074,5453076,5453077,5453078,5453080,5453081,5453082,5453088,5453089,5453090,5453092,5453093,5453094,5453096,5453097,5453098,5453120,5453121,5453122,5453124,5453125,5453126,5453128,5453129,5453130,5453136,5453137,5453138,5453140,5453141,5453142,5453144,5453145,5453146,5453152,5453153,5453154,5453156,5453157,5453158,5453160,5453161,5453162,5453184,5453185,5453186,5453188,5453189,5453190,5453192,5453193,5453194,5453200,5453201,5453202,5453204,5453205,5453206,5453208,5453209,5453210,5453216,5453217,5453218,5453220,5453221,5453222,5453224,5453225,5453226],"Mud Bricks":[5451264],"Muddy Mangrove Roots":[5467136,5467137,5467138],"Mushroom Stem":[5303296],"Mycelium":[5303808],"Neodymium":[5220864],"Neon":[5221376],"Neptunium":[5221888],"Nether Brick Fence":[5304320],"Nether Brick Slab":[5304832,5304833,5304834],"Nether Brick Stairs":[5305344,5305345,5305346,5305347,5305348,5305349,5305350,5305351],"Nether Brick Wall":[5305856,5305857,5305858,5305860,5305861,5305862,5305864,5305865,5305866,5305872,5305873,5305874,5305876,5305877,5305878,5305880,5305881,5305882,5305888,5305889,5305890,5305892,5305893,5305894,5305896,5305897,5305898,5305920,5305921,5305922,5305924,5305925,5305926,5305928,5305929,5305930,5305936,5305937,5305938,5305940,5305941,5305942,5305944,5305945,5305946,5305952,5305953,5305954,5305956,5305957,5305958,5305960,5305961,5305962,5305984,5305985,5305986,5305988,5305989,5305990,5305992,5305993,5305994,5306000,5306001,5306002,5306004,5306005,5306006,5306008,5306009,5306010,5306016,5306017,5306018,5306020,5306021,5306022,5306024,5306025,5306026,5306112,5306113,5306114,5306116,5306117,5306118,5306120,5306121,5306122,5306128,5306129,5306130,5306132,5306133,5306134,5306136,5306137,5306138,5306144,5306145,5306146,5306148,5306149,5306150,5306152,5306153,5306154,5306176,5306177,5306178,5306180,5306181,5306182,5306184,5306185,5306186,5306192,5306193,5306194,5306196,5306197,5306198,5306200,5306201,5306202,5306208,5306209,5306210,5306212,5306213,5306214,5306216,5306217,5306218,5306240,5306241,5306242,5306244,5306245,5306246,5306248,5306249,5306250,5306256,5306257,5306258,5306260,5306261,5306262,5306264,5306265,5306266,5306272,5306273,5306274,5306276,5306277,5306278,5306280,5306281,5306282],"Nether Bricks":[5306368],"Nether Gold Ore":[5450240],"Nether Portal":[5306880,5306881],"Nether Quartz Ore":[5307392],"Nether Reactor Core":[5307904],"Nether Wart":[5308416,5308417,5308418,5308419],"Nether Wart Block":[5308928],"Netherite Block":[5462016],"Netherrack":[5309440],"Nickel":[5222400],"Nihonium":[5222912],"Niobium":[5223424],"Nitrogen":[5223936],"Nobelium":[5224448],"Note Block":[5309952],"Oak Button":[5310464,5310465,5310466,5310467,5310468,5310469,5310472,5310473,5310474,5310475,5310476,5310477],"Oak Door":[5310976,5310977,5310978,5310979,5310980,5310981,5310982,5310983,5310984,5310985,5310986,5310987,5310988,5310989,5310990,5310991,5310992,5310993,5310994,5310995,5310996,5310997,5310998,5310999,5311000,5311001,5311002,5311003,5311004,5311005,5311006,5311007],"Oak Fence":[5311488],"Oak Fence Gate":[5312000,5312001,5312002,5312003,5312004,5312005,5312006,5312007,5312008,5312009,5312010,5312011,5312012,5312013,5312014,5312015],"Oak Leaves":[5312512,5312513,5312514,5312515],"Oak Log":[5313024,5313025,5313026,5313027,5313028,5313029],"Oak Planks":[5313536],"Oak Pressure Plate":[5314048,5314049],"Oak Sapling":[5314560,5314561],"Oak Sign":[5315072,5315073,5315074,5315075,5315076,5315077,5315078,5315079,5315080,5315081,5315082,5315083,5315084,5315085,5315086,5315087],"Oak Slab":[5315584,5315585,5315586],"Oak Stairs":[5316096,5316097,5316098,5316099,5316100,5316101,5316102,5316103],"Oak Trapdoor":[5316608,5316609,5316610,5316611,5316612,5316613,5316614,5316615,5316616,5316617,5316618,5316619,5316620,5316621,5316622,5316623],"Oak Wall Sign":[5317120,5317121,5317122,5317123],"Oak Wood":[5317632,5317633,5317634,5317635,5317636,5317637],"Obsidian":[5318144],"Oganesson":[5224960],"Orange Tulip":[5319168],"Osmium":[5225472],"Oxeye Daisy":[5319680],"Oxygen":[5225984],"Packed Ice":[5320192],"Packed Mud":[5453312],"Palladium":[5226496],"Peony":[5320704,5320705],"Phosphorus":[5227008],"Pink Tulip":[5321728],"Platinum":[5227520],"Plutonium":[5228032],"Podzol":[5322240],"Polished Andesite":[5322752],"Polished Andesite Slab":[5323264,5323265,5323266],"Polished Andesite Stairs":[5323776,5323777,5323778,5323779,5323780,5323781,5323782,5323783],"Polished Basalt":[5398016,5398017,5398018],"Polished Blackstone":[5401088],"Polished Blackstone Brick Slab":[5405184,5405185,5405186],"Polished Blackstone Brick Stairs":[5405696,5405697,5405698,5405699,5405700,5405701,5405702,5405703],"Polished Blackstone Brick Wall":[5406208,5406209,5406210,5406212,5406213,5406214,5406216,5406217,5406218,5406224,5406225,5406226,5406228,5406229,5406230,5406232,5406233,5406234,5406240,5406241,5406242,5406244,5406245,5406246,5406248,5406249,5406250,5406272,5406273,5406274,5406276,5406277,5406278,5406280,5406281,5406282,5406288,5406289,5406290,5406292,5406293,5406294,5406296,5406297,5406298,5406304,5406305,5406306,5406308,5406309,5406310,5406312,5406313,5406314,5406336,5406337,5406338,5406340,5406341,5406342,5406344,5406345,5406346,5406352,5406353,5406354,5406356,5406357,5406358,5406360,5406361,5406362,5406368,5406369,5406370,5406372,5406373,5406374,5406376,5406377,5406378,5406464,5406465,5406466,5406468,5406469,5406470,5406472,5406473,5406474,5406480,5406481,5406482,5406484,5406485,5406486,5406488,5406489,5406490,5406496,5406497,5406498,5406500,5406501,5406502,5406504,5406505,5406506,5406528,5406529,5406530,5406532,5406533,5406534,5406536,5406537,5406538,5406544,5406545,5406546,5406548,5406549,5406550,5406552,5406553,5406554,5406560,5406561,5406562,5406564,5406565,5406566,5406568,5406569,5406570,5406592,5406593,5406594,5406596,5406597,5406598,5406600,5406601,5406602,5406608,5406609,5406610,5406612,5406613,5406614,5406616,5406617,5406618,5406624,5406625,5406626,5406628,5406629,5406630,5406632,5406633,5406634],"Polished Blackstone Bricks":[5404672],"Polished Blackstone Button":[5401600,5401601,5401602,5401603,5401604,5401605,5401608,5401609,5401610,5401611,5401612,5401613],"Polished Blackstone Pressure Plate":[5402112,5402113],"Polished Blackstone Slab":[5402624,5402625,5402626],"Polished Blackstone Stairs":[5403136,5403137,5403138,5403139,5403140,5403141,5403142,5403143],"Polished Blackstone Wall":[5403648,5403649,5403650,5403652,5403653,5403654,5403656,5403657,5403658,5403664,5403665,5403666,5403668,5403669,5403670,5403672,5403673,5403674,5403680,5403681,5403682,5403684,5403685,5403686,5403688,5403689,5403690,5403712,5403713,5403714,5403716,5403717,5403718,5403720,5403721,5403722,5403728,5403729,5403730,5403732,5403733,5403734,5403736,5403737,5403738,5403744,5403745,5403746,5403748,5403749,5403750,5403752,5403753,5403754,5403776,5403777,5403778,5403780,5403781,5403782,5403784,5403785,5403786,5403792,5403793,5403794,5403796,5403797,5403798,5403800,5403801,5403802,5403808,5403809,5403810,5403812,5403813,5403814,5403816,5403817,5403818,5403904,5403905,5403906,5403908,5403909,5403910,5403912,5403913,5403914,5403920,5403921,5403922,5403924,5403925,5403926,5403928,5403929,5403930,5403936,5403937,5403938,5403940,5403941,5403942,5403944,5403945,5403946,5403968,5403969,5403970,5403972,5403973,5403974,5403976,5403977,5403978,5403984,5403985,5403986,5403988,5403989,5403990,5403992,5403993,5403994,5404000,5404001,5404002,5404004,5404005,5404006,5404008,5404009,5404010,5404032,5404033,5404034,5404036,5404037,5404038,5404040,5404041,5404042,5404048,5404049,5404050,5404052,5404053,5404054,5404056,5404057,5404058,5404064,5404065,5404066,5404068,5404069,5404070,5404072,5404073,5404074],"Polished Deepslate":[5417472],"Polished Deepslate Slab":[5417984,5417985,5417986],"Polished Deepslate Stairs":[5418496,5418497,5418498,5418499,5418500,5418501,5418502,5418503],"Polished Deepslate Wall":[5419008,5419009,5419010,5419012,5419013,5419014,5419016,5419017,5419018,5419024,5419025,5419026,5419028,5419029,5419030,5419032,5419033,5419034,5419040,5419041,5419042,5419044,5419045,5419046,5419048,5419049,5419050,5419072,5419073,5419074,5419076,5419077,5419078,5419080,5419081,5419082,5419088,5419089,5419090,5419092,5419093,5419094,5419096,5419097,5419098,5419104,5419105,5419106,5419108,5419109,5419110,5419112,5419113,5419114,5419136,5419137,5419138,5419140,5419141,5419142,5419144,5419145,5419146,5419152,5419153,5419154,5419156,5419157,5419158,5419160,5419161,5419162,5419168,5419169,5419170,5419172,5419173,5419174,5419176,5419177,5419178,5419264,5419265,5419266,5419268,5419269,5419270,5419272,5419273,5419274,5419280,5419281,5419282,5419284,5419285,5419286,5419288,5419289,5419290,5419296,5419297,5419298,5419300,5419301,5419302,5419304,5419305,5419306,5419328,5419329,5419330,5419332,5419333,5419334,5419336,5419337,5419338,5419344,5419345,5419346,5419348,5419349,5419350,5419352,5419353,5419354,5419360,5419361,5419362,5419364,5419365,5419366,5419368,5419369,5419370,5419392,5419393,5419394,5419396,5419397,5419398,5419400,5419401,5419402,5419408,5419409,5419410,5419412,5419413,5419414,5419416,5419417,5419418,5419424,5419425,5419426,5419428,5419429,5419430,5419432,5419433,5419434],"Polished Diorite":[5324288],"Polished Diorite Slab":[5324800,5324801,5324802],"Polished Diorite Stairs":[5325312,5325313,5325314,5325315,5325316,5325317,5325318,5325319],"Polished Granite":[5325824],"Polished Granite Slab":[5326336,5326337,5326338],"Polished Granite Stairs":[5326848,5326849,5326850,5326851,5326852,5326853,5326854,5326855],"Polonium":[5228544],"Poppy":[5327360],"Potassium":[5229056],"Potato Block":[5327872,5327873,5327874,5327875,5327876,5327877,5327878,5327879],"Potion Cauldron":[5464576,5464577,5464578,5464579,5464580,5464581],"Powered Rail":[5328384,5328385,5328386,5328387,5328388,5328389,5328392,5328393,5328394,5328395,5328396,5328397],"Praseodymium":[5229568],"Prismarine":[5328896],"Prismarine Bricks":[5329408],"Prismarine Bricks Slab":[5329920,5329921,5329922],"Prismarine Bricks Stairs":[5330432,5330433,5330434,5330435,5330436,5330437,5330438,5330439],"Prismarine Slab":[5330944,5330945,5330946],"Prismarine Stairs":[5331456,5331457,5331458,5331459,5331460,5331461,5331462,5331463],"Prismarine Wall":[5331968,5331969,5331970,5331972,5331973,5331974,5331976,5331977,5331978,5331984,5331985,5331986,5331988,5331989,5331990,5331992,5331993,5331994,5332000,5332001,5332002,5332004,5332005,5332006,5332008,5332009,5332010,5332032,5332033,5332034,5332036,5332037,5332038,5332040,5332041,5332042,5332048,5332049,5332050,5332052,5332053,5332054,5332056,5332057,5332058,5332064,5332065,5332066,5332068,5332069,5332070,5332072,5332073,5332074,5332096,5332097,5332098,5332100,5332101,5332102,5332104,5332105,5332106,5332112,5332113,5332114,5332116,5332117,5332118,5332120,5332121,5332122,5332128,5332129,5332130,5332132,5332133,5332134,5332136,5332137,5332138,5332224,5332225,5332226,5332228,5332229,5332230,5332232,5332233,5332234,5332240,5332241,5332242,5332244,5332245,5332246,5332248,5332249,5332250,5332256,5332257,5332258,5332260,5332261,5332262,5332264,5332265,5332266,5332288,5332289,5332290,5332292,5332293,5332294,5332296,5332297,5332298,5332304,5332305,5332306,5332308,5332309,5332310,5332312,5332313,5332314,5332320,5332321,5332322,5332324,5332325,5332326,5332328,5332329,5332330,5332352,5332353,5332354,5332356,5332357,5332358,5332360,5332361,5332362,5332368,5332369,5332370,5332372,5332373,5332374,5332376,5332377,5332378,5332384,5332385,5332386,5332388,5332389,5332390,5332392,5332393,5332394],"Promethium":[5230080],"Protactinium":[5230592],"Pumpkin":[5332480],"Pumpkin Stem":[5332992,5332993,5332994,5332995,5332996,5332997,5332998,5332999],"Purple Torch":[5334017,5334018,5334019,5334020,5334021],"Purpur Block":[5334528],"Purpur Pillar":[5335040,5335041,5335042],"Purpur Slab":[5335552,5335553,5335554],"Purpur Stairs":[5336064,5336065,5336066,5336067,5336068,5336069,5336070,5336071],"Quartz Block":[5336576],"Quartz Bricks":[5419520],"Quartz Pillar":[5337088,5337089,5337090],"Quartz Slab":[5337600,5337601,5337602],"Quartz Stairs":[5338112,5338113,5338114,5338115,5338116,5338117,5338118,5338119],"Radium":[5231104],"Radon":[5231616],"Rail":[5338624,5338625,5338626,5338627,5338628,5338629,5338630,5338631,5338632,5338633],"Raw Copper Block":[5407744],"Raw Gold Block":[5408256],"Raw Iron Block":[5408768],"Red Mushroom":[5339648],"Red Mushroom Block":[5340160,5340161,5340162,5340163,5340164,5340165,5340166,5340167,5340168,5340169,5340170],"Red Nether Brick Slab":[5340672,5340673,5340674],"Red Nether Brick Stairs":[5341184,5341185,5341186,5341187,5341188,5341189,5341190,5341191],"Red Nether Brick Wall":[5341696,5341697,5341698,5341700,5341701,5341702,5341704,5341705,5341706,5341712,5341713,5341714,5341716,5341717,5341718,5341720,5341721,5341722,5341728,5341729,5341730,5341732,5341733,5341734,5341736,5341737,5341738,5341760,5341761,5341762,5341764,5341765,5341766,5341768,5341769,5341770,5341776,5341777,5341778,5341780,5341781,5341782,5341784,5341785,5341786,5341792,5341793,5341794,5341796,5341797,5341798,5341800,5341801,5341802,5341824,5341825,5341826,5341828,5341829,5341830,5341832,5341833,5341834,5341840,5341841,5341842,5341844,5341845,5341846,5341848,5341849,5341850,5341856,5341857,5341858,5341860,5341861,5341862,5341864,5341865,5341866,5341952,5341953,5341954,5341956,5341957,5341958,5341960,5341961,5341962,5341968,5341969,5341970,5341972,5341973,5341974,5341976,5341977,5341978,5341984,5341985,5341986,5341988,5341989,5341990,5341992,5341993,5341994,5342016,5342017,5342018,5342020,5342021,5342022,5342024,5342025,5342026,5342032,5342033,5342034,5342036,5342037,5342038,5342040,5342041,5342042,5342048,5342049,5342050,5342052,5342053,5342054,5342056,5342057,5342058,5342080,5342081,5342082,5342084,5342085,5342086,5342088,5342089,5342090,5342096,5342097,5342098,5342100,5342101,5342102,5342104,5342105,5342106,5342112,5342113,5342114,5342116,5342117,5342118,5342120,5342121,5342122],"Red Nether Bricks":[5342208],"Red Sand":[5342720],"Red Sandstone":[5343232],"Red Sandstone Slab":[5343744,5343745,5343746],"Red Sandstone Stairs":[5344256,5344257,5344258,5344259,5344260,5344261,5344262,5344263],"Red Sandstone Wall":[5344768,5344769,5344770,5344772,5344773,5344774,5344776,5344777,5344778,5344784,5344785,5344786,5344788,5344789,5344790,5344792,5344793,5344794,5344800,5344801,5344802,5344804,5344805,5344806,5344808,5344809,5344810,5344832,5344833,5344834,5344836,5344837,5344838,5344840,5344841,5344842,5344848,5344849,5344850,5344852,5344853,5344854,5344856,5344857,5344858,5344864,5344865,5344866,5344868,5344869,5344870,5344872,5344873,5344874,5344896,5344897,5344898,5344900,5344901,5344902,5344904,5344905,5344906,5344912,5344913,5344914,5344916,5344917,5344918,5344920,5344921,5344922,5344928,5344929,5344930,5344932,5344933,5344934,5344936,5344937,5344938,5345024,5345025,5345026,5345028,5345029,5345030,5345032,5345033,5345034,5345040,5345041,5345042,5345044,5345045,5345046,5345048,5345049,5345050,5345056,5345057,5345058,5345060,5345061,5345062,5345064,5345065,5345066,5345088,5345089,5345090,5345092,5345093,5345094,5345096,5345097,5345098,5345104,5345105,5345106,5345108,5345109,5345110,5345112,5345113,5345114,5345120,5345121,5345122,5345124,5345125,5345126,5345128,5345129,5345130,5345152,5345153,5345154,5345156,5345157,5345158,5345160,5345161,5345162,5345168,5345169,5345170,5345172,5345173,5345174,5345176,5345177,5345178,5345184,5345185,5345186,5345188,5345189,5345190,5345192,5345193,5345194],"Red Torch":[5345281,5345282,5345283,5345284,5345285],"Red Tulip":[5345792],"Redstone":[5349376,5349377,5349378,5349379,5349380,5349381,5349382,5349383,5349384,5349385,5349386,5349387,5349388,5349389,5349390,5349391],"Redstone Block":[5346304],"Redstone Comparator":[5346816,5346817,5346818,5346819,5346820,5346821,5346822,5346823,5346824,5346825,5346826,5346827,5346828,5346829,5346830,5346831],"Redstone Lamp":[5347328,5347329],"Redstone Ore":[5347840,5347841],"Redstone Repeater":[5348352,5348353,5348354,5348355,5348356,5348357,5348358,5348359,5348360,5348361,5348362,5348363,5348364,5348365,5348366,5348367,5348368,5348369,5348370,5348371,5348372,5348373,5348374,5348375,5348376,5348377,5348378,5348379,5348380,5348381,5348382,5348383],"Redstone Torch":[5348865,5348866,5348867,5348868,5348869,5348873,5348874,5348875,5348876,5348877],"Rhenium":[5232128],"Rhodium":[5232640],"Roentgenium":[5233152],"Rose Bush":[5350400,5350401],"Rubidium":[5233664],"Ruthenium":[5234176],"Rutherfordium":[5234688],"Samarium":[5235200],"Sand":[5350912],"Sandstone":[5351424],"Sandstone Slab":[5351936,5351937,5351938],"Sandstone Stairs":[5352448,5352449,5352450,5352451,5352452,5352453,5352454,5352455],"Sandstone Wall":[5352960,5352961,5352962,5352964,5352965,5352966,5352968,5352969,5352970,5352976,5352977,5352978,5352980,5352981,5352982,5352984,5352985,5352986,5352992,5352993,5352994,5352996,5352997,5352998,5353000,5353001,5353002,5353024,5353025,5353026,5353028,5353029,5353030,5353032,5353033,5353034,5353040,5353041,5353042,5353044,5353045,5353046,5353048,5353049,5353050,5353056,5353057,5353058,5353060,5353061,5353062,5353064,5353065,5353066,5353088,5353089,5353090,5353092,5353093,5353094,5353096,5353097,5353098,5353104,5353105,5353106,5353108,5353109,5353110,5353112,5353113,5353114,5353120,5353121,5353122,5353124,5353125,5353126,5353128,5353129,5353130,5353216,5353217,5353218,5353220,5353221,5353222,5353224,5353225,5353226,5353232,5353233,5353234,5353236,5353237,5353238,5353240,5353241,5353242,5353248,5353249,5353250,5353252,5353253,5353254,5353256,5353257,5353258,5353280,5353281,5353282,5353284,5353285,5353286,5353288,5353289,5353290,5353296,5353297,5353298,5353300,5353301,5353302,5353304,5353305,5353306,5353312,5353313,5353314,5353316,5353317,5353318,5353320,5353321,5353322,5353344,5353345,5353346,5353348,5353349,5353350,5353352,5353353,5353354,5353360,5353361,5353362,5353364,5353365,5353366,5353368,5353369,5353370,5353376,5353377,5353378,5353380,5353381,5353382,5353384,5353385,5353386],"Scandium":[5235712],"Sculk":[5469696],"Sea Lantern":[5353472],"Sea Pickle":[5353984,5353985,5353986,5353987,5353988,5353989,5353990,5353991],"Seaborgium":[5236224],"Selenium":[5236736],"Shroomlight":[5424128],"Shulker Box":[5354496],"Silicon":[5237248],"Silver":[5237760],"Slime Block":[5355008],"Smithing Table":[5461504],"Smoker":[5355520,5355521,5355522,5355523,5355524,5355525,5355526,5355527],"Smooth Basalt":[5398528],"Smooth Quartz Block":[5356032],"Smooth Quartz Slab":[5356544,5356545,5356546],"Smooth Quartz Stairs":[5357056,5357057,5357058,5357059,5357060,5357061,5357062,5357063],"Smooth Red Sandstone":[5357568],"Smooth Red Sandstone Slab":[5358080,5358081,5358082],"Smooth Red Sandstone Stairs":[5358592,5358593,5358594,5358595,5358596,5358597,5358598,5358599],"Smooth Sandstone":[5359104],"Smooth Sandstone Slab":[5359616,5359617,5359618],"Smooth Sandstone Stairs":[5360128,5360129,5360130,5360131,5360132,5360133,5360134,5360135],"Smooth Stone":[5360640],"Smooth Stone Slab":[5361152,5361153,5361154],"Snow Block":[5361664],"Snow Layer":[5362176,5362177,5362178,5362179,5362180,5362181,5362182,5362183],"Sodium":[5238272],"Soul Fire":[5423616],"Soul Lantern":[5422592,5422593],"Soul Sand":[5362688],"Soul Soil":[5423104],"Soul Torch":[5422081,5422082,5422083,5422084,5422085],"Sponge":[5363200,5363201],"Spore Blossom":[5462528],"Spruce Button":[5363712,5363713,5363714,5363715,5363716,5363717,5363720,5363721,5363722,5363723,5363724,5363725],"Spruce Door":[5364224,5364225,5364226,5364227,5364228,5364229,5364230,5364231,5364232,5364233,5364234,5364235,5364236,5364237,5364238,5364239,5364240,5364241,5364242,5364243,5364244,5364245,5364246,5364247,5364248,5364249,5364250,5364251,5364252,5364253,5364254,5364255],"Spruce Fence":[5364736],"Spruce Fence Gate":[5365248,5365249,5365250,5365251,5365252,5365253,5365254,5365255,5365256,5365257,5365258,5365259,5365260,5365261,5365262,5365263],"Spruce Leaves":[5365760,5365761,5365762,5365763],"Spruce Log":[5366272,5366273,5366274,5366275,5366276,5366277],"Spruce Planks":[5366784],"Spruce Pressure Plate":[5367296,5367297],"Spruce Sapling":[5367808,5367809],"Spruce Sign":[5368320,5368321,5368322,5368323,5368324,5368325,5368326,5368327,5368328,5368329,5368330,5368331,5368332,5368333,5368334,5368335],"Spruce Slab":[5368832,5368833,5368834],"Spruce Stairs":[5369344,5369345,5369346,5369347,5369348,5369349,5369350,5369351],"Spruce Trapdoor":[5369856,5369857,5369858,5369859,5369860,5369861,5369862,5369863,5369864,5369865,5369866,5369867,5369868,5369869,5369870,5369871],"Spruce Wall Sign":[5370368,5370369,5370370,5370371],"Spruce Wood":[5370880,5370881,5370882,5370883,5370884,5370885],"Stained Clay":[5371392,5371393,5371394,5371395,5371396,5371397,5371398,5371399,5371400,5371401,5371402,5371403,5371404,5371405,5371406,5371407],"Stained Glass":[5371904,5371905,5371906,5371907,5371908,5371909,5371910,5371911,5371912,5371913,5371914,5371915,5371916,5371917,5371918,5371919],"Stained Glass Pane":[5372416,5372417,5372418,5372419,5372420,5372421,5372422,5372423,5372424,5372425,5372426,5372427,5372428,5372429,5372430,5372431],"Stained Hardened Glass":[5372928,5372929,5372930,5372931,5372932,5372933,5372934,5372935,5372936,5372937,5372938,5372939,5372940,5372941,5372942,5372943],"Stained Hardened Glass Pane":[5373440,5373441,5373442,5373443,5373444,5373445,5373446,5373447,5373448,5373449,5373450,5373451,5373452,5373453,5373454,5373455],"Stone":[5373952],"Stone Brick Slab":[5374464,5374465,5374466],"Stone Brick Stairs":[5374976,5374977,5374978,5374979,5374980,5374981,5374982,5374983],"Stone Brick Wall":[5375488,5375489,5375490,5375492,5375493,5375494,5375496,5375497,5375498,5375504,5375505,5375506,5375508,5375509,5375510,5375512,5375513,5375514,5375520,5375521,5375522,5375524,5375525,5375526,5375528,5375529,5375530,5375552,5375553,5375554,5375556,5375557,5375558,5375560,5375561,5375562,5375568,5375569,5375570,5375572,5375573,5375574,5375576,5375577,5375578,5375584,5375585,5375586,5375588,5375589,5375590,5375592,5375593,5375594,5375616,5375617,5375618,5375620,5375621,5375622,5375624,5375625,5375626,5375632,5375633,5375634,5375636,5375637,5375638,5375640,5375641,5375642,5375648,5375649,5375650,5375652,5375653,5375654,5375656,5375657,5375658,5375744,5375745,5375746,5375748,5375749,5375750,5375752,5375753,5375754,5375760,5375761,5375762,5375764,5375765,5375766,5375768,5375769,5375770,5375776,5375777,5375778,5375780,5375781,5375782,5375784,5375785,5375786,5375808,5375809,5375810,5375812,5375813,5375814,5375816,5375817,5375818,5375824,5375825,5375826,5375828,5375829,5375830,5375832,5375833,5375834,5375840,5375841,5375842,5375844,5375845,5375846,5375848,5375849,5375850,5375872,5375873,5375874,5375876,5375877,5375878,5375880,5375881,5375882,5375888,5375889,5375890,5375892,5375893,5375894,5375896,5375897,5375898,5375904,5375905,5375906,5375908,5375909,5375910,5375912,5375913,5375914],"Stone Bricks":[5376000],"Stone Button":[5376512,5376513,5376514,5376515,5376516,5376517,5376520,5376521,5376522,5376523,5376524,5376525],"Stone Pressure Plate":[5377024,5377025],"Stone Slab":[5377536,5377537,5377538],"Stone Stairs":[5378048,5378049,5378050,5378051,5378052,5378053,5378054,5378055],"Stonecutter":[5378560,5378561,5378562,5378563],"Strontium":[5238784],"Sugarcane":[5385216,5385217,5385218,5385219,5385220,5385221,5385222,5385223,5385224,5385225,5385226,5385227,5385228,5385229,5385230,5385231],"Sulfur":[5239296],"Sunflower":[5385728,5385729],"Sweet Berry Bush":[5386240,5386241,5386242,5386243],"TNT":[5387264,5387265,5387266,5387267],"Tall Grass":[5386752],"Tantalum":[5239808],"Technetium":[5240320],"Tellurium":[5240832],"Tennessine":[5241344],"Terbium":[5241856],"Thallium":[5242368],"Thorium":[5242880],"Thulium":[5243392],"Tin":[5243904],"Tinted Glass":[5444608],"Titanium":[5244416],"Torch":[5387777,5387778,5387779,5387780,5387781],"Trapped Chest":[5388288,5388289,5388290,5388291],"Tripwire":[5388800,5388801,5388802,5388803,5388804,5388805,5388806,5388807,5388808,5388809,5388810,5388811,5388812,5388813,5388814,5388815],"Tripwire Hook":[5389312,5389313,5389314,5389315,5389316,5389317,5389318,5389319,5389320,5389321,5389322,5389323,5389324,5389325,5389326,5389327],"Tuff":[5421568],"Tungsten":[5244928],"Twisting Vines":[5468160,5468161,5468162,5468163,5468164,5468165,5468166,5468167,5468168,5468169,5468170,5468171,5468172,5468173,5468174,5468175,5468176,5468177,5468178,5468179,5468180,5468181,5468182,5468183,5468184,5468185],"Underwater Torch":[5389825,5389826,5389827,5389828,5389829],"Uranium":[5245440],"Vanadium":[5245952],"Vines":[5390336,5390337,5390338,5390339,5390340,5390341,5390342,5390343,5390344,5390345,5390346,5390347,5390348,5390349,5390350,5390351],"Wall Banner":[5390848,5390849,5390850,5390851,5390852,5390853,5390854,5390855,5390856,5390857,5390858,5390859,5390860,5390861,5390862,5390863,5390864,5390865,5390866,5390867,5390868,5390869,5390870,5390871,5390872,5390873,5390874,5390875,5390876,5390877,5390878,5390879,5390880,5390881,5390882,5390883,5390884,5390885,5390886,5390887,5390888,5390889,5390890,5390891,5390892,5390893,5390894,5390895,5390896,5390897,5390898,5390899,5390900,5390901,5390902,5390903,5390904,5390905,5390906,5390907,5390908,5390909,5390910,5390911],"Wall Coral Fan":[5391360,5391361,5391362,5391363,5391364,5391368,5391369,5391370,5391371,5391372,5391376,5391377,5391378,5391379,5391380,5391384,5391385,5391386,5391387,5391388,5391392,5391393,5391394,5391395,5391396,5391400,5391401,5391402,5391403,5391404,5391408,5391409,5391410,5391411,5391412,5391416,5391417,5391418,5391419,5391420],"Warped Button":[5434880,5434881,5434882,5434883,5434884,5434885,5434888,5434889,5434890,5434891,5434892,5434893],"Warped Door":[5437952,5437953,5437954,5437955,5437956,5437957,5437958,5437959,5437960,5437961,5437962,5437963,5437964,5437965,5437966,5437967,5437968,5437969,5437970,5437971,5437972,5437973,5437974,5437975,5437976,5437977,5437978,5437979,5437980,5437981,5437982,5437983],"Warped Fence":[5427200],"Warped Fence Gate":[5439488,5439489,5439490,5439491,5439492,5439493,5439494,5439495,5439496,5439497,5439498,5439499,5439500,5439501,5439502,5439503],"Warped Hyphae":[5431808,5431809,5431810,5431811,5431812,5431813],"Warped Planks":[5425664],"Warped Pressure Plate":[5436416,5436417],"Warped Sign":[5442560,5442561,5442562,5442563,5442564,5442565,5442566,5442567,5442568,5442569,5442570,5442571,5442572,5442573,5442574,5442575],"Warped Slab":[5428736,5428737,5428738],"Warped Stairs":[5441024,5441025,5441026,5441027,5441028,5441029,5441030,5441031],"Warped Stem":[5430272,5430273,5430274,5430275,5430276,5430277],"Warped Trapdoor":[5433344,5433345,5433346,5433347,5433348,5433349,5433350,5433351,5433352,5433353,5433354,5433355,5433356,5433357,5433358,5433359],"Warped Wall Sign":[5444096,5444097,5444098,5444099],"Warped Wart Block":[5453824],"Water":[5391872,5391873,5391874,5391875,5391876,5391877,5391878,5391879,5391880,5391881,5391882,5391883,5391884,5391885,5391886,5391887,5391888,5391889,5391890,5391891,5391892,5391893,5391894,5391895,5391896,5391897,5391898,5391899,5391900,5391901,5391902,5391903],"Water Cauldron":[5463552,5463553,5463554,5463555,5463556,5463557],"Weeping Vines":[5468672,5468673,5468674,5468675,5468676,5468677,5468678,5468679,5468680,5468681,5468682,5468683,5468684,5468685,5468686,5468687,5468688,5468689,5468690,5468691,5468692,5468693,5468694,5468695,5468696,5468697],"Weighted Pressure Plate Heavy":[5392384,5392385,5392386,5392387,5392388,5392389,5392390,5392391,5392392,5392393,5392394,5392395,5392396,5392397,5392398,5392399],"Weighted Pressure Plate Light":[5392896,5392897,5392898,5392899,5392900,5392901,5392902,5392903,5392904,5392905,5392906,5392907,5392908,5392909,5392910,5392911],"Wheat Block":[5393408,5393409,5393410,5393411,5393412,5393413,5393414,5393415],"White Tulip":[5394432],"Wither Rose":[5459968],"Wool":[5394944,5394945,5394946,5394947,5394948,5394949,5394950,5394951,5394952,5394953,5394954,5394955,5394956,5394957,5394958,5394959],"Xenon":[5246464],"Ytterbium":[5246976],"Yttrium":[5247488],"Zinc":[5248512],"Zirconium":[5249024],"ate!upd":[5274112],"reserved6":[5349888],"update!":[5273600]},"stateDataBits":9} \ No newline at end of file +{"knownStates":{"???":[5248000],"Acacia Button":[5120512,5120513,5120514,5120515,5120516,5120517,5120520,5120521,5120522,5120523,5120524,5120525],"Acacia Door":[5121024,5121025,5121026,5121027,5121028,5121029,5121030,5121031,5121032,5121033,5121034,5121035,5121036,5121037,5121038,5121039,5121040,5121041,5121042,5121043,5121044,5121045,5121046,5121047,5121048,5121049,5121050,5121051,5121052,5121053,5121054,5121055],"Acacia Fence":[5121536],"Acacia Fence Gate":[5122048,5122049,5122050,5122051,5122052,5122053,5122054,5122055,5122056,5122057,5122058,5122059,5122060,5122061,5122062,5122063],"Acacia Leaves":[5122560,5122561,5122562,5122563],"Acacia Log":[5123072,5123073,5123074,5123075,5123076,5123077],"Acacia Planks":[5123584],"Acacia Pressure Plate":[5124096,5124097],"Acacia Sapling":[5124608,5124609],"Acacia Sign":[5125120,5125121,5125122,5125123,5125124,5125125,5125126,5125127,5125128,5125129,5125130,5125131,5125132,5125133,5125134,5125135],"Acacia Slab":[5125632,5125633,5125634],"Acacia Stairs":[5126144,5126145,5126146,5126147,5126148,5126149,5126150,5126151],"Acacia Trapdoor":[5126656,5126657,5126658,5126659,5126660,5126661,5126662,5126663,5126664,5126665,5126666,5126667,5126668,5126669,5126670,5126671],"Acacia Wall Sign":[5127168,5127169,5127170,5127171],"Acacia Wood":[5127680,5127681,5127682,5127683,5127684,5127685],"Actinium":[5188096],"Activator Rail":[5128192,5128193,5128194,5128195,5128196,5128197,5128200,5128201,5128202,5128203,5128204,5128205],"Air":[5120000],"All Sided Mushroom Stem":[5128704],"Allium":[5129216],"Aluminum":[5188608],"Americium":[5189120],"Amethyst":[5396480],"Ancient Debris":[5396992],"Andesite":[5129728],"Andesite Slab":[5130240,5130241,5130242],"Andesite Stairs":[5130752,5130753,5130754,5130755,5130756,5130757,5130758,5130759],"Andesite Wall":[5131264,5131265,5131266,5131268,5131269,5131270,5131272,5131273,5131274,5131280,5131281,5131282,5131284,5131285,5131286,5131288,5131289,5131290,5131296,5131297,5131298,5131300,5131301,5131302,5131304,5131305,5131306,5131328,5131329,5131330,5131332,5131333,5131334,5131336,5131337,5131338,5131344,5131345,5131346,5131348,5131349,5131350,5131352,5131353,5131354,5131360,5131361,5131362,5131364,5131365,5131366,5131368,5131369,5131370,5131392,5131393,5131394,5131396,5131397,5131398,5131400,5131401,5131402,5131408,5131409,5131410,5131412,5131413,5131414,5131416,5131417,5131418,5131424,5131425,5131426,5131428,5131429,5131430,5131432,5131433,5131434,5131520,5131521,5131522,5131524,5131525,5131526,5131528,5131529,5131530,5131536,5131537,5131538,5131540,5131541,5131542,5131544,5131545,5131546,5131552,5131553,5131554,5131556,5131557,5131558,5131560,5131561,5131562,5131584,5131585,5131586,5131588,5131589,5131590,5131592,5131593,5131594,5131600,5131601,5131602,5131604,5131605,5131606,5131608,5131609,5131610,5131616,5131617,5131618,5131620,5131621,5131622,5131624,5131625,5131626,5131648,5131649,5131650,5131652,5131653,5131654,5131656,5131657,5131658,5131664,5131665,5131666,5131668,5131669,5131670,5131672,5131673,5131674,5131680,5131681,5131682,5131684,5131685,5131686,5131688,5131689,5131690],"Antimony":[5189632],"Anvil":[5131776,5131777,5131778,5131780,5131781,5131782,5131784,5131785,5131786,5131788,5131789,5131790],"Argon":[5190144],"Arsenic":[5190656],"Astatine":[5191168],"Azure Bluet":[5132288],"Bamboo":[5132800,5132801,5132802,5132804,5132805,5132806,5132808,5132809,5132810,5132812,5132813,5132814],"Bamboo Sapling":[5133312,5133313],"Banner":[5133824,5133825,5133826,5133827,5133828,5133829,5133830,5133831,5133832,5133833,5133834,5133835,5133836,5133837,5133838,5133839,5133840,5133841,5133842,5133843,5133844,5133845,5133846,5133847,5133848,5133849,5133850,5133851,5133852,5133853,5133854,5133855,5133856,5133857,5133858,5133859,5133860,5133861,5133862,5133863,5133864,5133865,5133866,5133867,5133868,5133869,5133870,5133871,5133872,5133873,5133874,5133875,5133876,5133877,5133878,5133879,5133880,5133881,5133882,5133883,5133884,5133885,5133886,5133887,5133888,5133889,5133890,5133891,5133892,5133893,5133894,5133895,5133896,5133897,5133898,5133899,5133900,5133901,5133902,5133903,5133904,5133905,5133906,5133907,5133908,5133909,5133910,5133911,5133912,5133913,5133914,5133915,5133916,5133917,5133918,5133919,5133920,5133921,5133922,5133923,5133924,5133925,5133926,5133927,5133928,5133929,5133930,5133931,5133932,5133933,5133934,5133935,5133936,5133937,5133938,5133939,5133940,5133941,5133942,5133943,5133944,5133945,5133946,5133947,5133948,5133949,5133950,5133951,5133952,5133953,5133954,5133955,5133956,5133957,5133958,5133959,5133960,5133961,5133962,5133963,5133964,5133965,5133966,5133967,5133968,5133969,5133970,5133971,5133972,5133973,5133974,5133975,5133976,5133977,5133978,5133979,5133980,5133981,5133982,5133983,5133984,5133985,5133986,5133987,5133988,5133989,5133990,5133991,5133992,5133993,5133994,5133995,5133996,5133997,5133998,5133999,5134000,5134001,5134002,5134003,5134004,5134005,5134006,5134007,5134008,5134009,5134010,5134011,5134012,5134013,5134014,5134015,5134016,5134017,5134018,5134019,5134020,5134021,5134022,5134023,5134024,5134025,5134026,5134027,5134028,5134029,5134030,5134031,5134032,5134033,5134034,5134035,5134036,5134037,5134038,5134039,5134040,5134041,5134042,5134043,5134044,5134045,5134046,5134047,5134048,5134049,5134050,5134051,5134052,5134053,5134054,5134055,5134056,5134057,5134058,5134059,5134060,5134061,5134062,5134063,5134064,5134065,5134066,5134067,5134068,5134069,5134070,5134071,5134072,5134073,5134074,5134075,5134076,5134077,5134078,5134079],"Barium":[5191680],"Barrel":[5134336,5134337,5134338,5134339,5134340,5134341,5134344,5134345,5134346,5134347,5134348,5134349],"Barrier":[5134848],"Basalt":[5397504,5397505,5397506],"Beacon":[5135360],"Bed Block":[5135872,5135873,5135874,5135875,5135876,5135877,5135878,5135879,5135880,5135881,5135882,5135883,5135884,5135885,5135886,5135887,5135888,5135889,5135890,5135891,5135892,5135893,5135894,5135895,5135896,5135897,5135898,5135899,5135900,5135901,5135902,5135903,5135904,5135905,5135906,5135907,5135908,5135909,5135910,5135911,5135912,5135913,5135914,5135915,5135916,5135917,5135918,5135919,5135920,5135921,5135922,5135923,5135924,5135925,5135926,5135927,5135928,5135929,5135930,5135931,5135932,5135933,5135934,5135935,5135936,5135937,5135938,5135939,5135940,5135941,5135942,5135943,5135944,5135945,5135946,5135947,5135948,5135949,5135950,5135951,5135952,5135953,5135954,5135955,5135956,5135957,5135958,5135959,5135960,5135961,5135962,5135963,5135964,5135965,5135966,5135967,5135968,5135969,5135970,5135971,5135972,5135973,5135974,5135975,5135976,5135977,5135978,5135979,5135980,5135981,5135982,5135983,5135984,5135985,5135986,5135987,5135988,5135989,5135990,5135991,5135992,5135993,5135994,5135995,5135996,5135997,5135998,5135999,5136000,5136001,5136002,5136003,5136004,5136005,5136006,5136007,5136008,5136009,5136010,5136011,5136012,5136013,5136014,5136015,5136016,5136017,5136018,5136019,5136020,5136021,5136022,5136023,5136024,5136025,5136026,5136027,5136028,5136029,5136030,5136031,5136032,5136033,5136034,5136035,5136036,5136037,5136038,5136039,5136040,5136041,5136042,5136043,5136044,5136045,5136046,5136047,5136048,5136049,5136050,5136051,5136052,5136053,5136054,5136055,5136056,5136057,5136058,5136059,5136060,5136061,5136062,5136063,5136064,5136065,5136066,5136067,5136068,5136069,5136070,5136071,5136072,5136073,5136074,5136075,5136076,5136077,5136078,5136079,5136080,5136081,5136082,5136083,5136084,5136085,5136086,5136087,5136088,5136089,5136090,5136091,5136092,5136093,5136094,5136095,5136096,5136097,5136098,5136099,5136100,5136101,5136102,5136103,5136104,5136105,5136106,5136107,5136108,5136109,5136110,5136111,5136112,5136113,5136114,5136115,5136116,5136117,5136118,5136119,5136120,5136121,5136122,5136123,5136124,5136125,5136126,5136127],"Bedrock":[5136384,5136385],"Beetroot Block":[5136896,5136897,5136898,5136899,5136900,5136901,5136902,5136903],"Bell":[5137408,5137409,5137410,5137411,5137412,5137413,5137414,5137415,5137416,5137417,5137418,5137419,5137420,5137421,5137422,5137423],"Berkelium":[5192192],"Beryllium":[5192704],"Birch Button":[5137920,5137921,5137922,5137923,5137924,5137925,5137928,5137929,5137930,5137931,5137932,5137933],"Birch Door":[5138432,5138433,5138434,5138435,5138436,5138437,5138438,5138439,5138440,5138441,5138442,5138443,5138444,5138445,5138446,5138447,5138448,5138449,5138450,5138451,5138452,5138453,5138454,5138455,5138456,5138457,5138458,5138459,5138460,5138461,5138462,5138463],"Birch Fence":[5138944],"Birch Fence Gate":[5139456,5139457,5139458,5139459,5139460,5139461,5139462,5139463,5139464,5139465,5139466,5139467,5139468,5139469,5139470,5139471],"Birch Leaves":[5139968,5139969,5139970,5139971],"Birch Log":[5140480,5140481,5140482,5140483,5140484,5140485],"Birch Planks":[5140992],"Birch Pressure Plate":[5141504,5141505],"Birch Sapling":[5142016,5142017],"Birch Sign":[5142528,5142529,5142530,5142531,5142532,5142533,5142534,5142535,5142536,5142537,5142538,5142539,5142540,5142541,5142542,5142543],"Birch Slab":[5143040,5143041,5143042],"Birch Stairs":[5143552,5143553,5143554,5143555,5143556,5143557,5143558,5143559],"Birch Trapdoor":[5144064,5144065,5144066,5144067,5144068,5144069,5144070,5144071,5144072,5144073,5144074,5144075,5144076,5144077,5144078,5144079],"Birch Wall Sign":[5144576,5144577,5144578,5144579],"Birch Wood":[5145088,5145089,5145090,5145091,5145092,5145093],"Bismuth":[5193216],"Blackstone":[5399040],"Blackstone Slab":[5399552,5399553,5399554],"Blackstone Stairs":[5400064,5400065,5400066,5400067,5400068,5400069,5400070,5400071],"Blackstone Wall":[5400576,5400577,5400578,5400580,5400581,5400582,5400584,5400585,5400586,5400592,5400593,5400594,5400596,5400597,5400598,5400600,5400601,5400602,5400608,5400609,5400610,5400612,5400613,5400614,5400616,5400617,5400618,5400640,5400641,5400642,5400644,5400645,5400646,5400648,5400649,5400650,5400656,5400657,5400658,5400660,5400661,5400662,5400664,5400665,5400666,5400672,5400673,5400674,5400676,5400677,5400678,5400680,5400681,5400682,5400704,5400705,5400706,5400708,5400709,5400710,5400712,5400713,5400714,5400720,5400721,5400722,5400724,5400725,5400726,5400728,5400729,5400730,5400736,5400737,5400738,5400740,5400741,5400742,5400744,5400745,5400746,5400832,5400833,5400834,5400836,5400837,5400838,5400840,5400841,5400842,5400848,5400849,5400850,5400852,5400853,5400854,5400856,5400857,5400858,5400864,5400865,5400866,5400868,5400869,5400870,5400872,5400873,5400874,5400896,5400897,5400898,5400900,5400901,5400902,5400904,5400905,5400906,5400912,5400913,5400914,5400916,5400917,5400918,5400920,5400921,5400922,5400928,5400929,5400930,5400932,5400933,5400934,5400936,5400937,5400938,5400960,5400961,5400962,5400964,5400965,5400966,5400968,5400969,5400970,5400976,5400977,5400978,5400980,5400981,5400982,5400984,5400985,5400986,5400992,5400993,5400994,5400996,5400997,5400998,5401000,5401001,5401002],"Blast Furnace":[5146112,5146113,5146114,5146115,5146116,5146117,5146118,5146119],"Blue Ice":[5147136],"Blue Orchid":[5147648],"Blue Torch":[5148161,5148162,5148163,5148164,5148165],"Bohrium":[5193728],"Bone Block":[5148672,5148673,5148674],"Bookshelf":[5149184],"Boron":[5194240],"Brewing Stand":[5149696,5149697,5149698,5149699,5149700,5149701,5149702,5149703],"Brick Slab":[5150208,5150209,5150210],"Brick Stairs":[5150720,5150721,5150722,5150723,5150724,5150725,5150726,5150727],"Brick Wall":[5151232,5151233,5151234,5151236,5151237,5151238,5151240,5151241,5151242,5151248,5151249,5151250,5151252,5151253,5151254,5151256,5151257,5151258,5151264,5151265,5151266,5151268,5151269,5151270,5151272,5151273,5151274,5151296,5151297,5151298,5151300,5151301,5151302,5151304,5151305,5151306,5151312,5151313,5151314,5151316,5151317,5151318,5151320,5151321,5151322,5151328,5151329,5151330,5151332,5151333,5151334,5151336,5151337,5151338,5151360,5151361,5151362,5151364,5151365,5151366,5151368,5151369,5151370,5151376,5151377,5151378,5151380,5151381,5151382,5151384,5151385,5151386,5151392,5151393,5151394,5151396,5151397,5151398,5151400,5151401,5151402,5151488,5151489,5151490,5151492,5151493,5151494,5151496,5151497,5151498,5151504,5151505,5151506,5151508,5151509,5151510,5151512,5151513,5151514,5151520,5151521,5151522,5151524,5151525,5151526,5151528,5151529,5151530,5151552,5151553,5151554,5151556,5151557,5151558,5151560,5151561,5151562,5151568,5151569,5151570,5151572,5151573,5151574,5151576,5151577,5151578,5151584,5151585,5151586,5151588,5151589,5151590,5151592,5151593,5151594,5151616,5151617,5151618,5151620,5151621,5151622,5151624,5151625,5151626,5151632,5151633,5151634,5151636,5151637,5151638,5151640,5151641,5151642,5151648,5151649,5151650,5151652,5151653,5151654,5151656,5151657,5151658],"Bricks":[5151744],"Bromine":[5194752],"Brown Mushroom":[5152768],"Brown Mushroom Block":[5153280,5153281,5153282,5153283,5153284,5153285,5153286,5153287,5153288,5153289,5153290],"Cactus":[5153792,5153793,5153794,5153795,5153796,5153797,5153798,5153799,5153800,5153801,5153802,5153803,5153804,5153805,5153806,5153807],"Cadmium":[5195264],"Cake":[5154304,5154305,5154306,5154307,5154308,5154309,5154310],"Cake With Candle":[5458944,5458945],"Cake With Dyed Candle":[5459456,5459457,5459458,5459459,5459460,5459461,5459462,5459463,5459464,5459465,5459466,5459467,5459468,5459469,5459470,5459471,5459472,5459473,5459474,5459475,5459476,5459477,5459478,5459479,5459480,5459481,5459482,5459483,5459484,5459485,5459486,5459487],"Calcite":[5409280],"Calcium":[5195776],"Californium":[5196288],"Candle":[5457920,5457921,5457922,5457923,5457924,5457925,5457926,5457927],"Carbon":[5196800],"Carpet":[5154816,5154817,5154818,5154819,5154820,5154821,5154822,5154823,5154824,5154825,5154826,5154827,5154828,5154829,5154830,5154831],"Carrot Block":[5155328,5155329,5155330,5155331,5155332,5155333,5155334,5155335],"Cartography Table":[5460992],"Carved Pumpkin":[5155840,5155841,5155842,5155843],"Cauldron":[5463040],"Cerium":[5197312],"Cesium":[5197824],"Chain":[5469184,5469185,5469186],"Chest":[5156864,5156865,5156866,5156867],"Chiseled Deepslate":[5420032],"Chiseled Nether Bricks":[5420544],"Chiseled Polished Blackstone":[5404160],"Chiseled Quartz Block":[5157376,5157377,5157378],"Chiseled Red Sandstone":[5157888],"Chiseled Sandstone":[5158400],"Chiseled Stone Bricks":[5158912],"Chlorine":[5198336],"Chorus Flower":[5465600,5465601,5465602,5465603,5465604,5465605],"Chorus Plant":[5466112],"Chromium":[5198848],"Clay Block":[5159424],"Coal Block":[5159936],"Coal Ore":[5160448],"Cobalt":[5199360],"Cobbled Deepslate":[5415424],"Cobbled Deepslate Slab":[5415936,5415937,5415938],"Cobbled Deepslate Stairs":[5416448,5416449,5416450,5416451,5416452,5416453,5416454,5416455],"Cobbled Deepslate Wall":[5416960,5416961,5416962,5416964,5416965,5416966,5416968,5416969,5416970,5416976,5416977,5416978,5416980,5416981,5416982,5416984,5416985,5416986,5416992,5416993,5416994,5416996,5416997,5416998,5417000,5417001,5417002,5417024,5417025,5417026,5417028,5417029,5417030,5417032,5417033,5417034,5417040,5417041,5417042,5417044,5417045,5417046,5417048,5417049,5417050,5417056,5417057,5417058,5417060,5417061,5417062,5417064,5417065,5417066,5417088,5417089,5417090,5417092,5417093,5417094,5417096,5417097,5417098,5417104,5417105,5417106,5417108,5417109,5417110,5417112,5417113,5417114,5417120,5417121,5417122,5417124,5417125,5417126,5417128,5417129,5417130,5417216,5417217,5417218,5417220,5417221,5417222,5417224,5417225,5417226,5417232,5417233,5417234,5417236,5417237,5417238,5417240,5417241,5417242,5417248,5417249,5417250,5417252,5417253,5417254,5417256,5417257,5417258,5417280,5417281,5417282,5417284,5417285,5417286,5417288,5417289,5417290,5417296,5417297,5417298,5417300,5417301,5417302,5417304,5417305,5417306,5417312,5417313,5417314,5417316,5417317,5417318,5417320,5417321,5417322,5417344,5417345,5417346,5417348,5417349,5417350,5417352,5417353,5417354,5417360,5417361,5417362,5417364,5417365,5417366,5417368,5417369,5417370,5417376,5417377,5417378,5417380,5417381,5417382,5417384,5417385,5417386],"Cobblestone":[5160960],"Cobblestone Slab":[5161472,5161473,5161474],"Cobblestone Stairs":[5161984,5161985,5161986,5161987,5161988,5161989,5161990,5161991],"Cobblestone Wall":[5162496,5162497,5162498,5162500,5162501,5162502,5162504,5162505,5162506,5162512,5162513,5162514,5162516,5162517,5162518,5162520,5162521,5162522,5162528,5162529,5162530,5162532,5162533,5162534,5162536,5162537,5162538,5162560,5162561,5162562,5162564,5162565,5162566,5162568,5162569,5162570,5162576,5162577,5162578,5162580,5162581,5162582,5162584,5162585,5162586,5162592,5162593,5162594,5162596,5162597,5162598,5162600,5162601,5162602,5162624,5162625,5162626,5162628,5162629,5162630,5162632,5162633,5162634,5162640,5162641,5162642,5162644,5162645,5162646,5162648,5162649,5162650,5162656,5162657,5162658,5162660,5162661,5162662,5162664,5162665,5162666,5162752,5162753,5162754,5162756,5162757,5162758,5162760,5162761,5162762,5162768,5162769,5162770,5162772,5162773,5162774,5162776,5162777,5162778,5162784,5162785,5162786,5162788,5162789,5162790,5162792,5162793,5162794,5162816,5162817,5162818,5162820,5162821,5162822,5162824,5162825,5162826,5162832,5162833,5162834,5162836,5162837,5162838,5162840,5162841,5162842,5162848,5162849,5162850,5162852,5162853,5162854,5162856,5162857,5162858,5162880,5162881,5162882,5162884,5162885,5162886,5162888,5162889,5162890,5162896,5162897,5162898,5162900,5162901,5162902,5162904,5162905,5162906,5162912,5162913,5162914,5162916,5162917,5162918,5162920,5162921,5162922],"Cobweb":[5163008],"Cocoa Block":[5163520,5163521,5163522,5163523,5163524,5163525,5163526,5163527,5163528,5163529,5163530,5163531],"Compound Creator":[5164032,5164033,5164034,5164035],"Concrete":[5164544,5164545,5164546,5164547,5164548,5164549,5164550,5164551,5164552,5164553,5164554,5164555,5164556,5164557,5164558,5164559],"Concrete Powder":[5165056,5165057,5165058,5165059,5165060,5165061,5165062,5165063,5165064,5165065,5165066,5165067,5165068,5165069,5165070,5165071],"Copernicium":[5200384],"Copper":[5200896],"Copper Block":[5455872,5455873,5455874,5455875,5455876,5455877,5455878,5455879],"Copper Ore":[5449728],"Coral":[5165568,5165569,5165570,5165571,5165572,5165576,5165577,5165578,5165579,5165580],"Coral Block":[5166080,5166081,5166082,5166083,5166084,5166088,5166089,5166090,5166091,5166092],"Coral Fan":[5166592,5166593,5166594,5166595,5166596,5166600,5166601,5166602,5166603,5166604,5166608,5166609,5166610,5166611,5166612,5166616,5166617,5166618,5166619,5166620],"Cornflower":[5167104],"Cracked Deepslate Bricks":[5412352],"Cracked Deepslate Tiles":[5414912],"Cracked Nether Bricks":[5421056],"Cracked Polished Blackstone Bricks":[5406720],"Cracked Stone Bricks":[5167616],"Crafting Table":[5168128],"Crimson Button":[5434368,5434369,5434370,5434371,5434372,5434373,5434376,5434377,5434378,5434379,5434380,5434381],"Crimson Door":[5437440,5437441,5437442,5437443,5437444,5437445,5437446,5437447,5437448,5437449,5437450,5437451,5437452,5437453,5437454,5437455,5437456,5437457,5437458,5437459,5437460,5437461,5437462,5437463,5437464,5437465,5437466,5437467,5437468,5437469,5437470,5437471],"Crimson Fence":[5426688],"Crimson Fence Gate":[5438976,5438977,5438978,5438979,5438980,5438981,5438982,5438983,5438984,5438985,5438986,5438987,5438988,5438989,5438990,5438991],"Crimson Hyphae":[5431296,5431297,5431298,5431299,5431300,5431301],"Crimson Planks":[5425152],"Crimson Pressure Plate":[5435904,5435905],"Crimson Sign":[5442048,5442049,5442050,5442051,5442052,5442053,5442054,5442055,5442056,5442057,5442058,5442059,5442060,5442061,5442062,5442063],"Crimson Slab":[5428224,5428225,5428226],"Crimson Stairs":[5440512,5440513,5440514,5440515,5440516,5440517,5440518,5440519],"Crimson Stem":[5429760,5429761,5429762,5429763,5429764,5429765],"Crimson Trapdoor":[5432832,5432833,5432834,5432835,5432836,5432837,5432838,5432839,5432840,5432841,5432842,5432843,5432844,5432845,5432846,5432847],"Crimson Wall Sign":[5443584,5443585,5443586,5443587],"Crying Obsidian":[5454336],"Curium":[5201408],"Cut Copper Block":[5456384,5456385,5456386,5456387,5456388,5456389,5456390,5456391],"Cut Copper Slab Slab":[5456896,5456897,5456898,5456899,5456900,5456901,5456902,5456903,5456904,5456905,5456906,5456907,5456908,5456909,5456910,5456911,5456912,5456913,5456914,5456915,5456916,5456917,5456918,5456919],"Cut Copper Stairs":[5457408,5457409,5457410,5457411,5457412,5457413,5457414,5457415,5457416,5457417,5457418,5457419,5457420,5457421,5457422,5457423,5457424,5457425,5457426,5457427,5457428,5457429,5457430,5457431,5457432,5457433,5457434,5457435,5457436,5457437,5457438,5457439,5457440,5457441,5457442,5457443,5457444,5457445,5457446,5457447,5457448,5457449,5457450,5457451,5457452,5457453,5457454,5457455,5457456,5457457,5457458,5457459,5457460,5457461,5457462,5457463,5457464,5457465,5457466,5457467,5457468,5457469,5457470,5457471],"Cut Red Sandstone":[5168640],"Cut Red Sandstone Slab":[5169152,5169153,5169154],"Cut Sandstone":[5169664],"Cut Sandstone Slab":[5170176,5170177,5170178],"Dandelion":[5171200],"Dark Oak Button":[5171712,5171713,5171714,5171715,5171716,5171717,5171720,5171721,5171722,5171723,5171724,5171725],"Dark Oak Door":[5172224,5172225,5172226,5172227,5172228,5172229,5172230,5172231,5172232,5172233,5172234,5172235,5172236,5172237,5172238,5172239,5172240,5172241,5172242,5172243,5172244,5172245,5172246,5172247,5172248,5172249,5172250,5172251,5172252,5172253,5172254,5172255],"Dark Oak Fence":[5172736],"Dark Oak Fence Gate":[5173248,5173249,5173250,5173251,5173252,5173253,5173254,5173255,5173256,5173257,5173258,5173259,5173260,5173261,5173262,5173263],"Dark Oak Leaves":[5173760,5173761,5173762,5173763],"Dark Oak Log":[5174272,5174273,5174274,5174275,5174276,5174277],"Dark Oak Planks":[5174784],"Dark Oak Pressure Plate":[5175296,5175297],"Dark Oak Sapling":[5175808,5175809],"Dark Oak Sign":[5176320,5176321,5176322,5176323,5176324,5176325,5176326,5176327,5176328,5176329,5176330,5176331,5176332,5176333,5176334,5176335],"Dark Oak Slab":[5176832,5176833,5176834],"Dark Oak Stairs":[5177344,5177345,5177346,5177347,5177348,5177349,5177350,5177351],"Dark Oak Trapdoor":[5177856,5177857,5177858,5177859,5177860,5177861,5177862,5177863,5177864,5177865,5177866,5177867,5177868,5177869,5177870,5177871],"Dark Oak Wall Sign":[5178368,5178369,5178370,5178371],"Dark Oak Wood":[5178880,5178881,5178882,5178883,5178884,5178885],"Dark Prismarine":[5179392],"Dark Prismarine Slab":[5179904,5179905,5179906],"Dark Prismarine Stairs":[5180416,5180417,5180418,5180419,5180420,5180421,5180422,5180423],"Darmstadtium":[5201920],"Daylight Sensor":[5180928,5180929,5180930,5180931,5180932,5180933,5180934,5180935,5180936,5180937,5180938,5180939,5180940,5180941,5180942,5180943,5180944,5180945,5180946,5180947,5180948,5180949,5180950,5180951,5180952,5180953,5180954,5180955,5180956,5180957,5180958,5180959],"Dead Bush":[5181440],"Deepslate":[5409792,5409793,5409794],"Deepslate Brick Slab":[5410816,5410817,5410818],"Deepslate Brick Stairs":[5411328,5411329,5411330,5411331,5411332,5411333,5411334,5411335],"Deepslate Brick Wall":[5411840,5411841,5411842,5411844,5411845,5411846,5411848,5411849,5411850,5411856,5411857,5411858,5411860,5411861,5411862,5411864,5411865,5411866,5411872,5411873,5411874,5411876,5411877,5411878,5411880,5411881,5411882,5411904,5411905,5411906,5411908,5411909,5411910,5411912,5411913,5411914,5411920,5411921,5411922,5411924,5411925,5411926,5411928,5411929,5411930,5411936,5411937,5411938,5411940,5411941,5411942,5411944,5411945,5411946,5411968,5411969,5411970,5411972,5411973,5411974,5411976,5411977,5411978,5411984,5411985,5411986,5411988,5411989,5411990,5411992,5411993,5411994,5412000,5412001,5412002,5412004,5412005,5412006,5412008,5412009,5412010,5412096,5412097,5412098,5412100,5412101,5412102,5412104,5412105,5412106,5412112,5412113,5412114,5412116,5412117,5412118,5412120,5412121,5412122,5412128,5412129,5412130,5412132,5412133,5412134,5412136,5412137,5412138,5412160,5412161,5412162,5412164,5412165,5412166,5412168,5412169,5412170,5412176,5412177,5412178,5412180,5412181,5412182,5412184,5412185,5412186,5412192,5412193,5412194,5412196,5412197,5412198,5412200,5412201,5412202,5412224,5412225,5412226,5412228,5412229,5412230,5412232,5412233,5412234,5412240,5412241,5412242,5412244,5412245,5412246,5412248,5412249,5412250,5412256,5412257,5412258,5412260,5412261,5412262,5412264,5412265,5412266],"Deepslate Bricks":[5410304],"Deepslate Coal Ore":[5445632],"Deepslate Copper Ore":[5449216],"Deepslate Diamond Ore":[5446144],"Deepslate Emerald Ore":[5446656],"Deepslate Gold Ore":[5448704],"Deepslate Iron Ore":[5448192],"Deepslate Lapis Lazuli Ore":[5447168],"Deepslate Redstone Ore":[5447680,5447681],"Deepslate Tile Slab":[5413376,5413377,5413378],"Deepslate Tile Stairs":[5413888,5413889,5413890,5413891,5413892,5413893,5413894,5413895],"Deepslate Tile Wall":[5414400,5414401,5414402,5414404,5414405,5414406,5414408,5414409,5414410,5414416,5414417,5414418,5414420,5414421,5414422,5414424,5414425,5414426,5414432,5414433,5414434,5414436,5414437,5414438,5414440,5414441,5414442,5414464,5414465,5414466,5414468,5414469,5414470,5414472,5414473,5414474,5414480,5414481,5414482,5414484,5414485,5414486,5414488,5414489,5414490,5414496,5414497,5414498,5414500,5414501,5414502,5414504,5414505,5414506,5414528,5414529,5414530,5414532,5414533,5414534,5414536,5414537,5414538,5414544,5414545,5414546,5414548,5414549,5414550,5414552,5414553,5414554,5414560,5414561,5414562,5414564,5414565,5414566,5414568,5414569,5414570,5414656,5414657,5414658,5414660,5414661,5414662,5414664,5414665,5414666,5414672,5414673,5414674,5414676,5414677,5414678,5414680,5414681,5414682,5414688,5414689,5414690,5414692,5414693,5414694,5414696,5414697,5414698,5414720,5414721,5414722,5414724,5414725,5414726,5414728,5414729,5414730,5414736,5414737,5414738,5414740,5414741,5414742,5414744,5414745,5414746,5414752,5414753,5414754,5414756,5414757,5414758,5414760,5414761,5414762,5414784,5414785,5414786,5414788,5414789,5414790,5414792,5414793,5414794,5414800,5414801,5414802,5414804,5414805,5414806,5414808,5414809,5414810,5414816,5414817,5414818,5414820,5414821,5414822,5414824,5414825,5414826],"Deepslate Tiles":[5412864],"Detector Rail":[5181952,5181953,5181954,5181955,5181956,5181957,5181960,5181961,5181962,5181963,5181964,5181965],"Diamond Block":[5182464],"Diamond Ore":[5182976],"Diorite":[5183488],"Diorite Slab":[5184000,5184001,5184002],"Diorite Stairs":[5184512,5184513,5184514,5184515,5184516,5184517,5184518,5184519],"Diorite Wall":[5185024,5185025,5185026,5185028,5185029,5185030,5185032,5185033,5185034,5185040,5185041,5185042,5185044,5185045,5185046,5185048,5185049,5185050,5185056,5185057,5185058,5185060,5185061,5185062,5185064,5185065,5185066,5185088,5185089,5185090,5185092,5185093,5185094,5185096,5185097,5185098,5185104,5185105,5185106,5185108,5185109,5185110,5185112,5185113,5185114,5185120,5185121,5185122,5185124,5185125,5185126,5185128,5185129,5185130,5185152,5185153,5185154,5185156,5185157,5185158,5185160,5185161,5185162,5185168,5185169,5185170,5185172,5185173,5185174,5185176,5185177,5185178,5185184,5185185,5185186,5185188,5185189,5185190,5185192,5185193,5185194,5185280,5185281,5185282,5185284,5185285,5185286,5185288,5185289,5185290,5185296,5185297,5185298,5185300,5185301,5185302,5185304,5185305,5185306,5185312,5185313,5185314,5185316,5185317,5185318,5185320,5185321,5185322,5185344,5185345,5185346,5185348,5185349,5185350,5185352,5185353,5185354,5185360,5185361,5185362,5185364,5185365,5185366,5185368,5185369,5185370,5185376,5185377,5185378,5185380,5185381,5185382,5185384,5185385,5185386,5185408,5185409,5185410,5185412,5185413,5185414,5185416,5185417,5185418,5185424,5185425,5185426,5185428,5185429,5185430,5185432,5185433,5185434,5185440,5185441,5185442,5185444,5185445,5185446,5185448,5185449,5185450],"Dirt":[5185536,5185537,5185538],"Double Tallgrass":[5186048,5186049],"Dragon Egg":[5186560],"Dried Kelp Block":[5187072],"Dubnium":[5202432],"Dyed Candle":[5458432,5458433,5458434,5458435,5458436,5458437,5458438,5458439,5458440,5458441,5458442,5458443,5458444,5458445,5458446,5458447,5458448,5458449,5458450,5458451,5458452,5458453,5458454,5458455,5458456,5458457,5458458,5458459,5458460,5458461,5458462,5458463,5458464,5458465,5458466,5458467,5458468,5458469,5458470,5458471,5458472,5458473,5458474,5458475,5458476,5458477,5458478,5458479,5458480,5458481,5458482,5458483,5458484,5458485,5458486,5458487,5458488,5458489,5458490,5458491,5458492,5458493,5458494,5458495,5458496,5458497,5458498,5458499,5458500,5458501,5458502,5458503,5458504,5458505,5458506,5458507,5458508,5458509,5458510,5458511,5458512,5458513,5458514,5458515,5458516,5458517,5458518,5458519,5458520,5458521,5458522,5458523,5458524,5458525,5458526,5458527,5458528,5458529,5458530,5458531,5458532,5458533,5458534,5458535,5458536,5458537,5458538,5458539,5458540,5458541,5458542,5458543,5458544,5458545,5458546,5458547,5458548,5458549,5458550,5458551,5458552,5458553,5458554,5458555,5458556,5458557,5458558,5458559],"Dyed Shulker Box":[5187584,5187585,5187586,5187587,5187588,5187589,5187590,5187591,5187592,5187593,5187594,5187595,5187596,5187597,5187598,5187599],"Dysprosium":[5202944],"Einsteinium":[5203456],"Element Constructor":[5199872,5199873,5199874,5199875],"Emerald Block":[5249536],"Emerald Ore":[5250048],"Enchanting Table":[5250560],"End Portal Frame":[5251072,5251073,5251074,5251075,5251076,5251077,5251078,5251079],"End Rod":[5251584,5251585,5251586,5251587,5251588,5251589],"End Stone":[5252096],"End Stone Brick Slab":[5252608,5252609,5252610],"End Stone Brick Stairs":[5253120,5253121,5253122,5253123,5253124,5253125,5253126,5253127],"End Stone Brick Wall":[5253632,5253633,5253634,5253636,5253637,5253638,5253640,5253641,5253642,5253648,5253649,5253650,5253652,5253653,5253654,5253656,5253657,5253658,5253664,5253665,5253666,5253668,5253669,5253670,5253672,5253673,5253674,5253696,5253697,5253698,5253700,5253701,5253702,5253704,5253705,5253706,5253712,5253713,5253714,5253716,5253717,5253718,5253720,5253721,5253722,5253728,5253729,5253730,5253732,5253733,5253734,5253736,5253737,5253738,5253760,5253761,5253762,5253764,5253765,5253766,5253768,5253769,5253770,5253776,5253777,5253778,5253780,5253781,5253782,5253784,5253785,5253786,5253792,5253793,5253794,5253796,5253797,5253798,5253800,5253801,5253802,5253888,5253889,5253890,5253892,5253893,5253894,5253896,5253897,5253898,5253904,5253905,5253906,5253908,5253909,5253910,5253912,5253913,5253914,5253920,5253921,5253922,5253924,5253925,5253926,5253928,5253929,5253930,5253952,5253953,5253954,5253956,5253957,5253958,5253960,5253961,5253962,5253968,5253969,5253970,5253972,5253973,5253974,5253976,5253977,5253978,5253984,5253985,5253986,5253988,5253989,5253990,5253992,5253993,5253994,5254016,5254017,5254018,5254020,5254021,5254022,5254024,5254025,5254026,5254032,5254033,5254034,5254036,5254037,5254038,5254040,5254041,5254042,5254048,5254049,5254050,5254052,5254053,5254054,5254056,5254057,5254058],"End Stone Bricks":[5254144],"Ender Chest":[5254656,5254657,5254658,5254659],"Erbium":[5203968],"Europium":[5204480],"Fake Wooden Slab":[5255168,5255169,5255170],"Farmland":[5255680,5255681,5255682,5255683,5255684,5255685,5255686,5255687],"Fermium":[5204992],"Fern":[5256192],"Fire Block":[5256704,5256705,5256706,5256707,5256708,5256709,5256710,5256711,5256712,5256713,5256714,5256715,5256716,5256717,5256718,5256719],"Flerovium":[5205504],"Fletching Table":[5257216],"Flower Pot":[5257728],"Fluorine":[5206016],"Francium":[5206528],"Froglight":[5467648,5467649,5467650,5467652,5467653,5467654,5467656,5467657,5467658],"Frosted Ice":[5258240,5258241,5258242,5258243],"Furnace":[5258752,5258753,5258754,5258755,5258756,5258757,5258758,5258759],"Gadolinium":[5207040],"Gallium":[5207552],"Germanium":[5208064],"Gilded Blackstone":[5454848],"Glass":[5259264],"Glass Pane":[5259776],"Glazed Terracotta":[5395968,5395969,5395970,5395971,5395972,5395973,5395974,5395975,5395976,5395977,5395978,5395979,5395980,5395981,5395982,5395983,5395984,5395985,5395986,5395987,5395988,5395989,5395990,5395991,5395992,5395993,5395994,5395995,5395996,5395997,5395998,5395999,5396000,5396001,5396002,5396003,5396004,5396005,5396006,5396007,5396008,5396009,5396010,5396011,5396012,5396013,5396014,5396015,5396016,5396017,5396018,5396019,5396020,5396021,5396022,5396023,5396024,5396025,5396026,5396027,5396028,5396029,5396030,5396031],"Glow Item Frame":[5470208,5470209,5470210,5470211,5470212,5470213,5470216,5470217,5470218,5470219,5470220,5470221],"Glowing Obsidian":[5260288],"Glowstone":[5260800],"Gold":[5208576],"Gold Block":[5261312],"Gold Ore":[5261824],"Granite":[5262336],"Granite Slab":[5262848,5262849,5262850],"Granite Stairs":[5263360,5263361,5263362,5263363,5263364,5263365,5263366,5263367],"Granite Wall":[5263872,5263873,5263874,5263876,5263877,5263878,5263880,5263881,5263882,5263888,5263889,5263890,5263892,5263893,5263894,5263896,5263897,5263898,5263904,5263905,5263906,5263908,5263909,5263910,5263912,5263913,5263914,5263936,5263937,5263938,5263940,5263941,5263942,5263944,5263945,5263946,5263952,5263953,5263954,5263956,5263957,5263958,5263960,5263961,5263962,5263968,5263969,5263970,5263972,5263973,5263974,5263976,5263977,5263978,5264000,5264001,5264002,5264004,5264005,5264006,5264008,5264009,5264010,5264016,5264017,5264018,5264020,5264021,5264022,5264024,5264025,5264026,5264032,5264033,5264034,5264036,5264037,5264038,5264040,5264041,5264042,5264128,5264129,5264130,5264132,5264133,5264134,5264136,5264137,5264138,5264144,5264145,5264146,5264148,5264149,5264150,5264152,5264153,5264154,5264160,5264161,5264162,5264164,5264165,5264166,5264168,5264169,5264170,5264192,5264193,5264194,5264196,5264197,5264198,5264200,5264201,5264202,5264208,5264209,5264210,5264212,5264213,5264214,5264216,5264217,5264218,5264224,5264225,5264226,5264228,5264229,5264230,5264232,5264233,5264234,5264256,5264257,5264258,5264260,5264261,5264262,5264264,5264265,5264266,5264272,5264273,5264274,5264276,5264277,5264278,5264280,5264281,5264282,5264288,5264289,5264290,5264292,5264293,5264294,5264296,5264297,5264298],"Grass":[5264384],"Grass Path":[5264896],"Gravel":[5265408],"Green Torch":[5266945,5266946,5266947,5266948,5266949],"Hafnium":[5209088],"Hanging Roots":[5460480],"Hardened Clay":[5267456],"Hardened Glass":[5267968],"Hardened Glass Pane":[5268480],"Hassium":[5209600],"Hay Bale":[5268992,5268993,5268994],"Heat Block":[5156352],"Helium":[5210112],"Holmium":[5210624],"Honeycomb Block":[5445120],"Hopper":[5269504,5269506,5269507,5269508,5269509,5269512,5269514,5269515,5269516,5269517],"Hydrogen":[5211136],"Ice":[5270016],"Indium":[5211648],"Infested Chiseled Stone Brick":[5270528],"Infested Cobblestone":[5271040],"Infested Cracked Stone Brick":[5271552],"Infested Mossy Stone Brick":[5272064],"Infested Stone":[5272576],"Infested Stone Brick":[5273088],"Invisible Bedrock":[5274624],"Iodine":[5212160],"Iridium":[5212672],"Iron":[5213184],"Iron Bars":[5275648],"Iron Block":[5275136],"Iron Door":[5276160,5276161,5276162,5276163,5276164,5276165,5276166,5276167,5276168,5276169,5276170,5276171,5276172,5276173,5276174,5276175,5276176,5276177,5276178,5276179,5276180,5276181,5276182,5276183,5276184,5276185,5276186,5276187,5276188,5276189,5276190,5276191],"Iron Ore":[5276672],"Iron Trapdoor":[5277184,5277185,5277186,5277187,5277188,5277189,5277190,5277191,5277192,5277193,5277194,5277195,5277196,5277197,5277198,5277199],"Item Frame":[5277696,5277697,5277698,5277699,5277700,5277701,5277704,5277705,5277706,5277707,5277708,5277709],"Jack o'Lantern":[5294592,5294593,5294594,5294595],"Jukebox":[5278208],"Jungle Button":[5278720,5278721,5278722,5278723,5278724,5278725,5278728,5278729,5278730,5278731,5278732,5278733],"Jungle Door":[5279232,5279233,5279234,5279235,5279236,5279237,5279238,5279239,5279240,5279241,5279242,5279243,5279244,5279245,5279246,5279247,5279248,5279249,5279250,5279251,5279252,5279253,5279254,5279255,5279256,5279257,5279258,5279259,5279260,5279261,5279262,5279263],"Jungle Fence":[5279744],"Jungle Fence Gate":[5280256,5280257,5280258,5280259,5280260,5280261,5280262,5280263,5280264,5280265,5280266,5280267,5280268,5280269,5280270,5280271],"Jungle Leaves":[5280768,5280769,5280770,5280771],"Jungle Log":[5281280,5281281,5281282,5281283,5281284,5281285],"Jungle Planks":[5281792],"Jungle Pressure Plate":[5282304,5282305],"Jungle Sapling":[5282816,5282817],"Jungle Sign":[5283328,5283329,5283330,5283331,5283332,5283333,5283334,5283335,5283336,5283337,5283338,5283339,5283340,5283341,5283342,5283343],"Jungle Slab":[5283840,5283841,5283842],"Jungle Stairs":[5284352,5284353,5284354,5284355,5284356,5284357,5284358,5284359],"Jungle Trapdoor":[5284864,5284865,5284866,5284867,5284868,5284869,5284870,5284871,5284872,5284873,5284874,5284875,5284876,5284877,5284878,5284879],"Jungle Wall Sign":[5285376,5285377,5285378,5285379],"Jungle Wood":[5285888,5285889,5285890,5285891,5285892,5285893],"Krypton":[5213696],"Lab Table":[5286400,5286401,5286402,5286403],"Ladder":[5286912,5286913,5286914,5286915],"Lantern":[5287424,5287425],"Lanthanum":[5214208],"Lapis Lazuli Block":[5287936],"Lapis Lazuli Ore":[5288448],"Large Fern":[5288960,5288961],"Lava":[5289472,5289473,5289474,5289475,5289476,5289477,5289478,5289479,5289480,5289481,5289482,5289483,5289484,5289485,5289486,5289487,5289488,5289489,5289490,5289491,5289492,5289493,5289494,5289495,5289496,5289497,5289498,5289499,5289500,5289501,5289502,5289503],"Lava Cauldron":[5464064,5464065,5464066,5464067,5464068,5464069],"Lawrencium":[5214720],"Lead":[5215232],"Lectern":[5289984,5289985,5289986,5289987,5289988,5289989,5289990,5289991],"Legacy Stonecutter":[5290496],"Lever":[5291008,5291009,5291010,5291011,5291012,5291013,5291014,5291015,5291016,5291017,5291018,5291019,5291020,5291021,5291022,5291023],"Light Block":[5407232,5407233,5407234,5407235,5407236,5407237,5407238,5407239,5407240,5407241,5407242,5407243,5407244,5407245,5407246,5407247],"Lightning Rod":[5455360,5455361,5455362,5455363,5455364,5455365],"Lilac":[5292544,5292545],"Lily Pad":[5293568],"Lily of the Valley":[5293056],"Lithium":[5215744],"Livermorium":[5216256],"Loom":[5295104,5295105,5295106,5295107],"Lutetium":[5216768],"Magma Block":[5296128],"Magnesium":[5217280],"Manganese":[5217792],"Mangrove Button":[5433856,5433857,5433858,5433859,5433860,5433861,5433864,5433865,5433866,5433867,5433868,5433869],"Mangrove Door":[5436928,5436929,5436930,5436931,5436932,5436933,5436934,5436935,5436936,5436937,5436938,5436939,5436940,5436941,5436942,5436943,5436944,5436945,5436946,5436947,5436948,5436949,5436950,5436951,5436952,5436953,5436954,5436955,5436956,5436957,5436958,5436959],"Mangrove Fence":[5426176],"Mangrove Fence Gate":[5438464,5438465,5438466,5438467,5438468,5438469,5438470,5438471,5438472,5438473,5438474,5438475,5438476,5438477,5438478,5438479],"Mangrove Log":[5429248,5429249,5429250,5429251,5429252,5429253],"Mangrove Planks":[5424640],"Mangrove Pressure Plate":[5435392,5435393],"Mangrove Roots":[5466624],"Mangrove Sign":[5441536,5441537,5441538,5441539,5441540,5441541,5441542,5441543,5441544,5441545,5441546,5441547,5441548,5441549,5441550,5441551],"Mangrove Slab":[5427712,5427713,5427714],"Mangrove Stairs":[5440000,5440001,5440002,5440003,5440004,5440005,5440006,5440007],"Mangrove Trapdoor":[5432320,5432321,5432322,5432323,5432324,5432325,5432326,5432327,5432328,5432329,5432330,5432331,5432332,5432333,5432334,5432335],"Mangrove Wall Sign":[5443072,5443073,5443074,5443075],"Mangrove Wood":[5430784,5430785,5430786,5430787,5430788,5430789],"Material Reducer":[5296640,5296641,5296642,5296643],"Meitnerium":[5218304],"Melon Block":[5297152],"Melon Stem":[5297664,5297665,5297666,5297667,5297668,5297669,5297670,5297671],"Mendelevium":[5218816],"Mercury":[5219328],"Mob Head":[5298184,5298185,5298186,5298187,5298188,5298189,5298192,5298193,5298194,5298195,5298196,5298197,5298200,5298201,5298202,5298203,5298204,5298205,5298208,5298209,5298210,5298211,5298212,5298213,5298216,5298217,5298218,5298219,5298220,5298221],"Molybdenum":[5219840],"Monster Spawner":[5298688],"Moscovium":[5220352],"Mossy Cobblestone":[5299200],"Mossy Cobblestone Slab":[5299712,5299713,5299714],"Mossy Cobblestone Stairs":[5300224,5300225,5300226,5300227,5300228,5300229,5300230,5300231],"Mossy Cobblestone Wall":[5300736,5300737,5300738,5300740,5300741,5300742,5300744,5300745,5300746,5300752,5300753,5300754,5300756,5300757,5300758,5300760,5300761,5300762,5300768,5300769,5300770,5300772,5300773,5300774,5300776,5300777,5300778,5300800,5300801,5300802,5300804,5300805,5300806,5300808,5300809,5300810,5300816,5300817,5300818,5300820,5300821,5300822,5300824,5300825,5300826,5300832,5300833,5300834,5300836,5300837,5300838,5300840,5300841,5300842,5300864,5300865,5300866,5300868,5300869,5300870,5300872,5300873,5300874,5300880,5300881,5300882,5300884,5300885,5300886,5300888,5300889,5300890,5300896,5300897,5300898,5300900,5300901,5300902,5300904,5300905,5300906,5300992,5300993,5300994,5300996,5300997,5300998,5301000,5301001,5301002,5301008,5301009,5301010,5301012,5301013,5301014,5301016,5301017,5301018,5301024,5301025,5301026,5301028,5301029,5301030,5301032,5301033,5301034,5301056,5301057,5301058,5301060,5301061,5301062,5301064,5301065,5301066,5301072,5301073,5301074,5301076,5301077,5301078,5301080,5301081,5301082,5301088,5301089,5301090,5301092,5301093,5301094,5301096,5301097,5301098,5301120,5301121,5301122,5301124,5301125,5301126,5301128,5301129,5301130,5301136,5301137,5301138,5301140,5301141,5301142,5301144,5301145,5301146,5301152,5301153,5301154,5301156,5301157,5301158,5301160,5301161,5301162],"Mossy Stone Brick Slab":[5301248,5301249,5301250],"Mossy Stone Brick Stairs":[5301760,5301761,5301762,5301763,5301764,5301765,5301766,5301767],"Mossy Stone Brick Wall":[5302272,5302273,5302274,5302276,5302277,5302278,5302280,5302281,5302282,5302288,5302289,5302290,5302292,5302293,5302294,5302296,5302297,5302298,5302304,5302305,5302306,5302308,5302309,5302310,5302312,5302313,5302314,5302336,5302337,5302338,5302340,5302341,5302342,5302344,5302345,5302346,5302352,5302353,5302354,5302356,5302357,5302358,5302360,5302361,5302362,5302368,5302369,5302370,5302372,5302373,5302374,5302376,5302377,5302378,5302400,5302401,5302402,5302404,5302405,5302406,5302408,5302409,5302410,5302416,5302417,5302418,5302420,5302421,5302422,5302424,5302425,5302426,5302432,5302433,5302434,5302436,5302437,5302438,5302440,5302441,5302442,5302528,5302529,5302530,5302532,5302533,5302534,5302536,5302537,5302538,5302544,5302545,5302546,5302548,5302549,5302550,5302552,5302553,5302554,5302560,5302561,5302562,5302564,5302565,5302566,5302568,5302569,5302570,5302592,5302593,5302594,5302596,5302597,5302598,5302600,5302601,5302602,5302608,5302609,5302610,5302612,5302613,5302614,5302616,5302617,5302618,5302624,5302625,5302626,5302628,5302629,5302630,5302632,5302633,5302634,5302656,5302657,5302658,5302660,5302661,5302662,5302664,5302665,5302666,5302672,5302673,5302674,5302676,5302677,5302678,5302680,5302681,5302682,5302688,5302689,5302690,5302692,5302693,5302694,5302696,5302697,5302698],"Mossy Stone Bricks":[5302784],"Mud":[5450752],"Mud Brick Slab":[5451776,5451777,5451778],"Mud Brick Stairs":[5452288,5452289,5452290,5452291,5452292,5452293,5452294,5452295],"Mud Brick Wall":[5452800,5452801,5452802,5452804,5452805,5452806,5452808,5452809,5452810,5452816,5452817,5452818,5452820,5452821,5452822,5452824,5452825,5452826,5452832,5452833,5452834,5452836,5452837,5452838,5452840,5452841,5452842,5452864,5452865,5452866,5452868,5452869,5452870,5452872,5452873,5452874,5452880,5452881,5452882,5452884,5452885,5452886,5452888,5452889,5452890,5452896,5452897,5452898,5452900,5452901,5452902,5452904,5452905,5452906,5452928,5452929,5452930,5452932,5452933,5452934,5452936,5452937,5452938,5452944,5452945,5452946,5452948,5452949,5452950,5452952,5452953,5452954,5452960,5452961,5452962,5452964,5452965,5452966,5452968,5452969,5452970,5453056,5453057,5453058,5453060,5453061,5453062,5453064,5453065,5453066,5453072,5453073,5453074,5453076,5453077,5453078,5453080,5453081,5453082,5453088,5453089,5453090,5453092,5453093,5453094,5453096,5453097,5453098,5453120,5453121,5453122,5453124,5453125,5453126,5453128,5453129,5453130,5453136,5453137,5453138,5453140,5453141,5453142,5453144,5453145,5453146,5453152,5453153,5453154,5453156,5453157,5453158,5453160,5453161,5453162,5453184,5453185,5453186,5453188,5453189,5453190,5453192,5453193,5453194,5453200,5453201,5453202,5453204,5453205,5453206,5453208,5453209,5453210,5453216,5453217,5453218,5453220,5453221,5453222,5453224,5453225,5453226],"Mud Bricks":[5451264],"Muddy Mangrove Roots":[5467136,5467137,5467138],"Mushroom Stem":[5303296],"Mycelium":[5303808],"Neodymium":[5220864],"Neon":[5221376],"Neptunium":[5221888],"Nether Brick Fence":[5304320],"Nether Brick Slab":[5304832,5304833,5304834],"Nether Brick Stairs":[5305344,5305345,5305346,5305347,5305348,5305349,5305350,5305351],"Nether Brick Wall":[5305856,5305857,5305858,5305860,5305861,5305862,5305864,5305865,5305866,5305872,5305873,5305874,5305876,5305877,5305878,5305880,5305881,5305882,5305888,5305889,5305890,5305892,5305893,5305894,5305896,5305897,5305898,5305920,5305921,5305922,5305924,5305925,5305926,5305928,5305929,5305930,5305936,5305937,5305938,5305940,5305941,5305942,5305944,5305945,5305946,5305952,5305953,5305954,5305956,5305957,5305958,5305960,5305961,5305962,5305984,5305985,5305986,5305988,5305989,5305990,5305992,5305993,5305994,5306000,5306001,5306002,5306004,5306005,5306006,5306008,5306009,5306010,5306016,5306017,5306018,5306020,5306021,5306022,5306024,5306025,5306026,5306112,5306113,5306114,5306116,5306117,5306118,5306120,5306121,5306122,5306128,5306129,5306130,5306132,5306133,5306134,5306136,5306137,5306138,5306144,5306145,5306146,5306148,5306149,5306150,5306152,5306153,5306154,5306176,5306177,5306178,5306180,5306181,5306182,5306184,5306185,5306186,5306192,5306193,5306194,5306196,5306197,5306198,5306200,5306201,5306202,5306208,5306209,5306210,5306212,5306213,5306214,5306216,5306217,5306218,5306240,5306241,5306242,5306244,5306245,5306246,5306248,5306249,5306250,5306256,5306257,5306258,5306260,5306261,5306262,5306264,5306265,5306266,5306272,5306273,5306274,5306276,5306277,5306278,5306280,5306281,5306282],"Nether Bricks":[5306368],"Nether Gold Ore":[5450240],"Nether Portal":[5306880,5306881],"Nether Quartz Ore":[5307392],"Nether Reactor Core":[5307904],"Nether Wart":[5308416,5308417,5308418,5308419],"Nether Wart Block":[5308928],"Netherite Block":[5462016],"Netherrack":[5309440],"Nickel":[5222400],"Nihonium":[5222912],"Niobium":[5223424],"Nitrogen":[5223936],"Nobelium":[5224448],"Note Block":[5309952],"Oak Button":[5310464,5310465,5310466,5310467,5310468,5310469,5310472,5310473,5310474,5310475,5310476,5310477],"Oak Door":[5310976,5310977,5310978,5310979,5310980,5310981,5310982,5310983,5310984,5310985,5310986,5310987,5310988,5310989,5310990,5310991,5310992,5310993,5310994,5310995,5310996,5310997,5310998,5310999,5311000,5311001,5311002,5311003,5311004,5311005,5311006,5311007],"Oak Fence":[5311488],"Oak Fence Gate":[5312000,5312001,5312002,5312003,5312004,5312005,5312006,5312007,5312008,5312009,5312010,5312011,5312012,5312013,5312014,5312015],"Oak Leaves":[5312512,5312513,5312514,5312515],"Oak Log":[5313024,5313025,5313026,5313027,5313028,5313029],"Oak Planks":[5313536],"Oak Pressure Plate":[5314048,5314049],"Oak Sapling":[5314560,5314561],"Oak Sign":[5315072,5315073,5315074,5315075,5315076,5315077,5315078,5315079,5315080,5315081,5315082,5315083,5315084,5315085,5315086,5315087],"Oak Slab":[5315584,5315585,5315586],"Oak Stairs":[5316096,5316097,5316098,5316099,5316100,5316101,5316102,5316103],"Oak Trapdoor":[5316608,5316609,5316610,5316611,5316612,5316613,5316614,5316615,5316616,5316617,5316618,5316619,5316620,5316621,5316622,5316623],"Oak Wall Sign":[5317120,5317121,5317122,5317123],"Oak Wood":[5317632,5317633,5317634,5317635,5317636,5317637],"Obsidian":[5318144],"Oganesson":[5224960],"Orange Tulip":[5319168],"Osmium":[5225472],"Oxeye Daisy":[5319680],"Oxygen":[5225984],"Packed Ice":[5320192],"Packed Mud":[5453312],"Palladium":[5226496],"Peony":[5320704,5320705],"Phosphorus":[5227008],"Pink Tulip":[5321728],"Platinum":[5227520],"Plutonium":[5228032],"Podzol":[5322240],"Polished Andesite":[5322752],"Polished Andesite Slab":[5323264,5323265,5323266],"Polished Andesite Stairs":[5323776,5323777,5323778,5323779,5323780,5323781,5323782,5323783],"Polished Basalt":[5398016,5398017,5398018],"Polished Blackstone":[5401088],"Polished Blackstone Brick Slab":[5405184,5405185,5405186],"Polished Blackstone Brick Stairs":[5405696,5405697,5405698,5405699,5405700,5405701,5405702,5405703],"Polished Blackstone Brick Wall":[5406208,5406209,5406210,5406212,5406213,5406214,5406216,5406217,5406218,5406224,5406225,5406226,5406228,5406229,5406230,5406232,5406233,5406234,5406240,5406241,5406242,5406244,5406245,5406246,5406248,5406249,5406250,5406272,5406273,5406274,5406276,5406277,5406278,5406280,5406281,5406282,5406288,5406289,5406290,5406292,5406293,5406294,5406296,5406297,5406298,5406304,5406305,5406306,5406308,5406309,5406310,5406312,5406313,5406314,5406336,5406337,5406338,5406340,5406341,5406342,5406344,5406345,5406346,5406352,5406353,5406354,5406356,5406357,5406358,5406360,5406361,5406362,5406368,5406369,5406370,5406372,5406373,5406374,5406376,5406377,5406378,5406464,5406465,5406466,5406468,5406469,5406470,5406472,5406473,5406474,5406480,5406481,5406482,5406484,5406485,5406486,5406488,5406489,5406490,5406496,5406497,5406498,5406500,5406501,5406502,5406504,5406505,5406506,5406528,5406529,5406530,5406532,5406533,5406534,5406536,5406537,5406538,5406544,5406545,5406546,5406548,5406549,5406550,5406552,5406553,5406554,5406560,5406561,5406562,5406564,5406565,5406566,5406568,5406569,5406570,5406592,5406593,5406594,5406596,5406597,5406598,5406600,5406601,5406602,5406608,5406609,5406610,5406612,5406613,5406614,5406616,5406617,5406618,5406624,5406625,5406626,5406628,5406629,5406630,5406632,5406633,5406634],"Polished Blackstone Bricks":[5404672],"Polished Blackstone Button":[5401600,5401601,5401602,5401603,5401604,5401605,5401608,5401609,5401610,5401611,5401612,5401613],"Polished Blackstone Pressure Plate":[5402112,5402113],"Polished Blackstone Slab":[5402624,5402625,5402626],"Polished Blackstone Stairs":[5403136,5403137,5403138,5403139,5403140,5403141,5403142,5403143],"Polished Blackstone Wall":[5403648,5403649,5403650,5403652,5403653,5403654,5403656,5403657,5403658,5403664,5403665,5403666,5403668,5403669,5403670,5403672,5403673,5403674,5403680,5403681,5403682,5403684,5403685,5403686,5403688,5403689,5403690,5403712,5403713,5403714,5403716,5403717,5403718,5403720,5403721,5403722,5403728,5403729,5403730,5403732,5403733,5403734,5403736,5403737,5403738,5403744,5403745,5403746,5403748,5403749,5403750,5403752,5403753,5403754,5403776,5403777,5403778,5403780,5403781,5403782,5403784,5403785,5403786,5403792,5403793,5403794,5403796,5403797,5403798,5403800,5403801,5403802,5403808,5403809,5403810,5403812,5403813,5403814,5403816,5403817,5403818,5403904,5403905,5403906,5403908,5403909,5403910,5403912,5403913,5403914,5403920,5403921,5403922,5403924,5403925,5403926,5403928,5403929,5403930,5403936,5403937,5403938,5403940,5403941,5403942,5403944,5403945,5403946,5403968,5403969,5403970,5403972,5403973,5403974,5403976,5403977,5403978,5403984,5403985,5403986,5403988,5403989,5403990,5403992,5403993,5403994,5404000,5404001,5404002,5404004,5404005,5404006,5404008,5404009,5404010,5404032,5404033,5404034,5404036,5404037,5404038,5404040,5404041,5404042,5404048,5404049,5404050,5404052,5404053,5404054,5404056,5404057,5404058,5404064,5404065,5404066,5404068,5404069,5404070,5404072,5404073,5404074],"Polished Deepslate":[5417472],"Polished Deepslate Slab":[5417984,5417985,5417986],"Polished Deepslate Stairs":[5418496,5418497,5418498,5418499,5418500,5418501,5418502,5418503],"Polished Deepslate Wall":[5419008,5419009,5419010,5419012,5419013,5419014,5419016,5419017,5419018,5419024,5419025,5419026,5419028,5419029,5419030,5419032,5419033,5419034,5419040,5419041,5419042,5419044,5419045,5419046,5419048,5419049,5419050,5419072,5419073,5419074,5419076,5419077,5419078,5419080,5419081,5419082,5419088,5419089,5419090,5419092,5419093,5419094,5419096,5419097,5419098,5419104,5419105,5419106,5419108,5419109,5419110,5419112,5419113,5419114,5419136,5419137,5419138,5419140,5419141,5419142,5419144,5419145,5419146,5419152,5419153,5419154,5419156,5419157,5419158,5419160,5419161,5419162,5419168,5419169,5419170,5419172,5419173,5419174,5419176,5419177,5419178,5419264,5419265,5419266,5419268,5419269,5419270,5419272,5419273,5419274,5419280,5419281,5419282,5419284,5419285,5419286,5419288,5419289,5419290,5419296,5419297,5419298,5419300,5419301,5419302,5419304,5419305,5419306,5419328,5419329,5419330,5419332,5419333,5419334,5419336,5419337,5419338,5419344,5419345,5419346,5419348,5419349,5419350,5419352,5419353,5419354,5419360,5419361,5419362,5419364,5419365,5419366,5419368,5419369,5419370,5419392,5419393,5419394,5419396,5419397,5419398,5419400,5419401,5419402,5419408,5419409,5419410,5419412,5419413,5419414,5419416,5419417,5419418,5419424,5419425,5419426,5419428,5419429,5419430,5419432,5419433,5419434],"Polished Diorite":[5324288],"Polished Diorite Slab":[5324800,5324801,5324802],"Polished Diorite Stairs":[5325312,5325313,5325314,5325315,5325316,5325317,5325318,5325319],"Polished Granite":[5325824],"Polished Granite Slab":[5326336,5326337,5326338],"Polished Granite Stairs":[5326848,5326849,5326850,5326851,5326852,5326853,5326854,5326855],"Polonium":[5228544],"Poppy":[5327360],"Potassium":[5229056],"Potato Block":[5327872,5327873,5327874,5327875,5327876,5327877,5327878,5327879],"Potion Cauldron":[5464576,5464577,5464578,5464579,5464580,5464581],"Powered Rail":[5328384,5328385,5328386,5328387,5328388,5328389,5328392,5328393,5328394,5328395,5328396,5328397],"Praseodymium":[5229568],"Prismarine":[5328896],"Prismarine Bricks":[5329408],"Prismarine Bricks Slab":[5329920,5329921,5329922],"Prismarine Bricks Stairs":[5330432,5330433,5330434,5330435,5330436,5330437,5330438,5330439],"Prismarine Slab":[5330944,5330945,5330946],"Prismarine Stairs":[5331456,5331457,5331458,5331459,5331460,5331461,5331462,5331463],"Prismarine Wall":[5331968,5331969,5331970,5331972,5331973,5331974,5331976,5331977,5331978,5331984,5331985,5331986,5331988,5331989,5331990,5331992,5331993,5331994,5332000,5332001,5332002,5332004,5332005,5332006,5332008,5332009,5332010,5332032,5332033,5332034,5332036,5332037,5332038,5332040,5332041,5332042,5332048,5332049,5332050,5332052,5332053,5332054,5332056,5332057,5332058,5332064,5332065,5332066,5332068,5332069,5332070,5332072,5332073,5332074,5332096,5332097,5332098,5332100,5332101,5332102,5332104,5332105,5332106,5332112,5332113,5332114,5332116,5332117,5332118,5332120,5332121,5332122,5332128,5332129,5332130,5332132,5332133,5332134,5332136,5332137,5332138,5332224,5332225,5332226,5332228,5332229,5332230,5332232,5332233,5332234,5332240,5332241,5332242,5332244,5332245,5332246,5332248,5332249,5332250,5332256,5332257,5332258,5332260,5332261,5332262,5332264,5332265,5332266,5332288,5332289,5332290,5332292,5332293,5332294,5332296,5332297,5332298,5332304,5332305,5332306,5332308,5332309,5332310,5332312,5332313,5332314,5332320,5332321,5332322,5332324,5332325,5332326,5332328,5332329,5332330,5332352,5332353,5332354,5332356,5332357,5332358,5332360,5332361,5332362,5332368,5332369,5332370,5332372,5332373,5332374,5332376,5332377,5332378,5332384,5332385,5332386,5332388,5332389,5332390,5332392,5332393,5332394],"Promethium":[5230080],"Protactinium":[5230592],"Pumpkin":[5332480],"Pumpkin Stem":[5332992,5332993,5332994,5332995,5332996,5332997,5332998,5332999],"Purple Torch":[5334017,5334018,5334019,5334020,5334021],"Purpur Block":[5334528],"Purpur Pillar":[5335040,5335041,5335042],"Purpur Slab":[5335552,5335553,5335554],"Purpur Stairs":[5336064,5336065,5336066,5336067,5336068,5336069,5336070,5336071],"Quartz Block":[5336576],"Quartz Bricks":[5419520],"Quartz Pillar":[5337088,5337089,5337090],"Quartz Slab":[5337600,5337601,5337602],"Quartz Stairs":[5338112,5338113,5338114,5338115,5338116,5338117,5338118,5338119],"Radium":[5231104],"Radon":[5231616],"Rail":[5338624,5338625,5338626,5338627,5338628,5338629,5338630,5338631,5338632,5338633],"Raw Copper Block":[5407744],"Raw Gold Block":[5408256],"Raw Iron Block":[5408768],"Red Mushroom":[5339648],"Red Mushroom Block":[5340160,5340161,5340162,5340163,5340164,5340165,5340166,5340167,5340168,5340169,5340170],"Red Nether Brick Slab":[5340672,5340673,5340674],"Red Nether Brick Stairs":[5341184,5341185,5341186,5341187,5341188,5341189,5341190,5341191],"Red Nether Brick Wall":[5341696,5341697,5341698,5341700,5341701,5341702,5341704,5341705,5341706,5341712,5341713,5341714,5341716,5341717,5341718,5341720,5341721,5341722,5341728,5341729,5341730,5341732,5341733,5341734,5341736,5341737,5341738,5341760,5341761,5341762,5341764,5341765,5341766,5341768,5341769,5341770,5341776,5341777,5341778,5341780,5341781,5341782,5341784,5341785,5341786,5341792,5341793,5341794,5341796,5341797,5341798,5341800,5341801,5341802,5341824,5341825,5341826,5341828,5341829,5341830,5341832,5341833,5341834,5341840,5341841,5341842,5341844,5341845,5341846,5341848,5341849,5341850,5341856,5341857,5341858,5341860,5341861,5341862,5341864,5341865,5341866,5341952,5341953,5341954,5341956,5341957,5341958,5341960,5341961,5341962,5341968,5341969,5341970,5341972,5341973,5341974,5341976,5341977,5341978,5341984,5341985,5341986,5341988,5341989,5341990,5341992,5341993,5341994,5342016,5342017,5342018,5342020,5342021,5342022,5342024,5342025,5342026,5342032,5342033,5342034,5342036,5342037,5342038,5342040,5342041,5342042,5342048,5342049,5342050,5342052,5342053,5342054,5342056,5342057,5342058,5342080,5342081,5342082,5342084,5342085,5342086,5342088,5342089,5342090,5342096,5342097,5342098,5342100,5342101,5342102,5342104,5342105,5342106,5342112,5342113,5342114,5342116,5342117,5342118,5342120,5342121,5342122],"Red Nether Bricks":[5342208],"Red Sand":[5342720],"Red Sandstone":[5343232],"Red Sandstone Slab":[5343744,5343745,5343746],"Red Sandstone Stairs":[5344256,5344257,5344258,5344259,5344260,5344261,5344262,5344263],"Red Sandstone Wall":[5344768,5344769,5344770,5344772,5344773,5344774,5344776,5344777,5344778,5344784,5344785,5344786,5344788,5344789,5344790,5344792,5344793,5344794,5344800,5344801,5344802,5344804,5344805,5344806,5344808,5344809,5344810,5344832,5344833,5344834,5344836,5344837,5344838,5344840,5344841,5344842,5344848,5344849,5344850,5344852,5344853,5344854,5344856,5344857,5344858,5344864,5344865,5344866,5344868,5344869,5344870,5344872,5344873,5344874,5344896,5344897,5344898,5344900,5344901,5344902,5344904,5344905,5344906,5344912,5344913,5344914,5344916,5344917,5344918,5344920,5344921,5344922,5344928,5344929,5344930,5344932,5344933,5344934,5344936,5344937,5344938,5345024,5345025,5345026,5345028,5345029,5345030,5345032,5345033,5345034,5345040,5345041,5345042,5345044,5345045,5345046,5345048,5345049,5345050,5345056,5345057,5345058,5345060,5345061,5345062,5345064,5345065,5345066,5345088,5345089,5345090,5345092,5345093,5345094,5345096,5345097,5345098,5345104,5345105,5345106,5345108,5345109,5345110,5345112,5345113,5345114,5345120,5345121,5345122,5345124,5345125,5345126,5345128,5345129,5345130,5345152,5345153,5345154,5345156,5345157,5345158,5345160,5345161,5345162,5345168,5345169,5345170,5345172,5345173,5345174,5345176,5345177,5345178,5345184,5345185,5345186,5345188,5345189,5345190,5345192,5345193,5345194],"Red Torch":[5345281,5345282,5345283,5345284,5345285],"Red Tulip":[5345792],"Redstone":[5349376,5349377,5349378,5349379,5349380,5349381,5349382,5349383,5349384,5349385,5349386,5349387,5349388,5349389,5349390,5349391],"Redstone Block":[5346304],"Redstone Comparator":[5346816,5346817,5346818,5346819,5346820,5346821,5346822,5346823,5346824,5346825,5346826,5346827,5346828,5346829,5346830,5346831],"Redstone Lamp":[5347328,5347329],"Redstone Ore":[5347840,5347841],"Redstone Repeater":[5348352,5348353,5348354,5348355,5348356,5348357,5348358,5348359,5348360,5348361,5348362,5348363,5348364,5348365,5348366,5348367,5348368,5348369,5348370,5348371,5348372,5348373,5348374,5348375,5348376,5348377,5348378,5348379,5348380,5348381,5348382,5348383],"Redstone Torch":[5348865,5348866,5348867,5348868,5348869,5348873,5348874,5348875,5348876,5348877],"Rhenium":[5232128],"Rhodium":[5232640],"Roentgenium":[5233152],"Rose Bush":[5350400,5350401],"Rubidium":[5233664],"Ruthenium":[5234176],"Rutherfordium":[5234688],"Samarium":[5235200],"Sand":[5350912],"Sandstone":[5351424],"Sandstone Slab":[5351936,5351937,5351938],"Sandstone Stairs":[5352448,5352449,5352450,5352451,5352452,5352453,5352454,5352455],"Sandstone Wall":[5352960,5352961,5352962,5352964,5352965,5352966,5352968,5352969,5352970,5352976,5352977,5352978,5352980,5352981,5352982,5352984,5352985,5352986,5352992,5352993,5352994,5352996,5352997,5352998,5353000,5353001,5353002,5353024,5353025,5353026,5353028,5353029,5353030,5353032,5353033,5353034,5353040,5353041,5353042,5353044,5353045,5353046,5353048,5353049,5353050,5353056,5353057,5353058,5353060,5353061,5353062,5353064,5353065,5353066,5353088,5353089,5353090,5353092,5353093,5353094,5353096,5353097,5353098,5353104,5353105,5353106,5353108,5353109,5353110,5353112,5353113,5353114,5353120,5353121,5353122,5353124,5353125,5353126,5353128,5353129,5353130,5353216,5353217,5353218,5353220,5353221,5353222,5353224,5353225,5353226,5353232,5353233,5353234,5353236,5353237,5353238,5353240,5353241,5353242,5353248,5353249,5353250,5353252,5353253,5353254,5353256,5353257,5353258,5353280,5353281,5353282,5353284,5353285,5353286,5353288,5353289,5353290,5353296,5353297,5353298,5353300,5353301,5353302,5353304,5353305,5353306,5353312,5353313,5353314,5353316,5353317,5353318,5353320,5353321,5353322,5353344,5353345,5353346,5353348,5353349,5353350,5353352,5353353,5353354,5353360,5353361,5353362,5353364,5353365,5353366,5353368,5353369,5353370,5353376,5353377,5353378,5353380,5353381,5353382,5353384,5353385,5353386],"Scandium":[5235712],"Sculk":[5469696],"Sea Lantern":[5353472],"Sea Pickle":[5353984,5353985,5353986,5353987,5353988,5353989,5353990,5353991],"Seaborgium":[5236224],"Selenium":[5236736],"Shroomlight":[5424128],"Shulker Box":[5354496],"Silicon":[5237248],"Silver":[5237760],"Slime Block":[5355008],"Smithing Table":[5461504],"Smoker":[5355520,5355521,5355522,5355523,5355524,5355525,5355526,5355527],"Smooth Basalt":[5398528],"Smooth Quartz Block":[5356032],"Smooth Quartz Slab":[5356544,5356545,5356546],"Smooth Quartz Stairs":[5357056,5357057,5357058,5357059,5357060,5357061,5357062,5357063],"Smooth Red Sandstone":[5357568],"Smooth Red Sandstone Slab":[5358080,5358081,5358082],"Smooth Red Sandstone Stairs":[5358592,5358593,5358594,5358595,5358596,5358597,5358598,5358599],"Smooth Sandstone":[5359104],"Smooth Sandstone Slab":[5359616,5359617,5359618],"Smooth Sandstone Stairs":[5360128,5360129,5360130,5360131,5360132,5360133,5360134,5360135],"Smooth Stone":[5360640],"Smooth Stone Slab":[5361152,5361153,5361154],"Snow Block":[5361664],"Snow Layer":[5362176,5362177,5362178,5362179,5362180,5362181,5362182,5362183],"Sodium":[5238272],"Soul Fire":[5423616],"Soul Lantern":[5422592,5422593],"Soul Sand":[5362688],"Soul Soil":[5423104],"Soul Torch":[5422081,5422082,5422083,5422084,5422085],"Sponge":[5363200,5363201],"Spore Blossom":[5462528],"Spruce Button":[5363712,5363713,5363714,5363715,5363716,5363717,5363720,5363721,5363722,5363723,5363724,5363725],"Spruce Door":[5364224,5364225,5364226,5364227,5364228,5364229,5364230,5364231,5364232,5364233,5364234,5364235,5364236,5364237,5364238,5364239,5364240,5364241,5364242,5364243,5364244,5364245,5364246,5364247,5364248,5364249,5364250,5364251,5364252,5364253,5364254,5364255],"Spruce Fence":[5364736],"Spruce Fence Gate":[5365248,5365249,5365250,5365251,5365252,5365253,5365254,5365255,5365256,5365257,5365258,5365259,5365260,5365261,5365262,5365263],"Spruce Leaves":[5365760,5365761,5365762,5365763],"Spruce Log":[5366272,5366273,5366274,5366275,5366276,5366277],"Spruce Planks":[5366784],"Spruce Pressure Plate":[5367296,5367297],"Spruce Sapling":[5367808,5367809],"Spruce Sign":[5368320,5368321,5368322,5368323,5368324,5368325,5368326,5368327,5368328,5368329,5368330,5368331,5368332,5368333,5368334,5368335],"Spruce Slab":[5368832,5368833,5368834],"Spruce Stairs":[5369344,5369345,5369346,5369347,5369348,5369349,5369350,5369351],"Spruce Trapdoor":[5369856,5369857,5369858,5369859,5369860,5369861,5369862,5369863,5369864,5369865,5369866,5369867,5369868,5369869,5369870,5369871],"Spruce Wall Sign":[5370368,5370369,5370370,5370371],"Spruce Wood":[5370880,5370881,5370882,5370883,5370884,5370885],"Stained Clay":[5371392,5371393,5371394,5371395,5371396,5371397,5371398,5371399,5371400,5371401,5371402,5371403,5371404,5371405,5371406,5371407],"Stained Glass":[5371904,5371905,5371906,5371907,5371908,5371909,5371910,5371911,5371912,5371913,5371914,5371915,5371916,5371917,5371918,5371919],"Stained Glass Pane":[5372416,5372417,5372418,5372419,5372420,5372421,5372422,5372423,5372424,5372425,5372426,5372427,5372428,5372429,5372430,5372431],"Stained Hardened Glass":[5372928,5372929,5372930,5372931,5372932,5372933,5372934,5372935,5372936,5372937,5372938,5372939,5372940,5372941,5372942,5372943],"Stained Hardened Glass Pane":[5373440,5373441,5373442,5373443,5373444,5373445,5373446,5373447,5373448,5373449,5373450,5373451,5373452,5373453,5373454,5373455],"Stone":[5373952],"Stone Brick Slab":[5374464,5374465,5374466],"Stone Brick Stairs":[5374976,5374977,5374978,5374979,5374980,5374981,5374982,5374983],"Stone Brick Wall":[5375488,5375489,5375490,5375492,5375493,5375494,5375496,5375497,5375498,5375504,5375505,5375506,5375508,5375509,5375510,5375512,5375513,5375514,5375520,5375521,5375522,5375524,5375525,5375526,5375528,5375529,5375530,5375552,5375553,5375554,5375556,5375557,5375558,5375560,5375561,5375562,5375568,5375569,5375570,5375572,5375573,5375574,5375576,5375577,5375578,5375584,5375585,5375586,5375588,5375589,5375590,5375592,5375593,5375594,5375616,5375617,5375618,5375620,5375621,5375622,5375624,5375625,5375626,5375632,5375633,5375634,5375636,5375637,5375638,5375640,5375641,5375642,5375648,5375649,5375650,5375652,5375653,5375654,5375656,5375657,5375658,5375744,5375745,5375746,5375748,5375749,5375750,5375752,5375753,5375754,5375760,5375761,5375762,5375764,5375765,5375766,5375768,5375769,5375770,5375776,5375777,5375778,5375780,5375781,5375782,5375784,5375785,5375786,5375808,5375809,5375810,5375812,5375813,5375814,5375816,5375817,5375818,5375824,5375825,5375826,5375828,5375829,5375830,5375832,5375833,5375834,5375840,5375841,5375842,5375844,5375845,5375846,5375848,5375849,5375850,5375872,5375873,5375874,5375876,5375877,5375878,5375880,5375881,5375882,5375888,5375889,5375890,5375892,5375893,5375894,5375896,5375897,5375898,5375904,5375905,5375906,5375908,5375909,5375910,5375912,5375913,5375914],"Stone Bricks":[5376000],"Stone Button":[5376512,5376513,5376514,5376515,5376516,5376517,5376520,5376521,5376522,5376523,5376524,5376525],"Stone Pressure Plate":[5377024,5377025],"Stone Slab":[5377536,5377537,5377538],"Stone Stairs":[5378048,5378049,5378050,5378051,5378052,5378053,5378054,5378055],"Stonecutter":[5378560,5378561,5378562,5378563],"Strontium":[5238784],"Sugarcane":[5385216,5385217,5385218,5385219,5385220,5385221,5385222,5385223,5385224,5385225,5385226,5385227,5385228,5385229,5385230,5385231],"Sulfur":[5239296],"Sunflower":[5385728,5385729],"Sweet Berry Bush":[5386240,5386241,5386242,5386243],"TNT":[5387264,5387265,5387266,5387267],"Tall Grass":[5386752],"Tantalum":[5239808],"Technetium":[5240320],"Tellurium":[5240832],"Tennessine":[5241344],"Terbium":[5241856],"Thallium":[5242368],"Thorium":[5242880],"Thulium":[5243392],"Tin":[5243904],"Tinted Glass":[5444608],"Titanium":[5244416],"Torch":[5387777,5387778,5387779,5387780,5387781],"Trapped Chest":[5388288,5388289,5388290,5388291],"Tripwire":[5388800,5388801,5388802,5388803,5388804,5388805,5388806,5388807,5388808,5388809,5388810,5388811,5388812,5388813,5388814,5388815],"Tripwire Hook":[5389312,5389313,5389314,5389315,5389316,5389317,5389318,5389319,5389320,5389321,5389322,5389323,5389324,5389325,5389326,5389327],"Tuff":[5421568],"Tungsten":[5244928],"Twisting Vines":[5468160,5468161,5468162,5468163,5468164,5468165,5468166,5468167,5468168,5468169,5468170,5468171,5468172,5468173,5468174,5468175,5468176,5468177,5468178,5468179,5468180,5468181,5468182,5468183,5468184,5468185],"Underwater Torch":[5389825,5389826,5389827,5389828,5389829],"Uranium":[5245440],"Vanadium":[5245952],"Vines":[5390336,5390337,5390338,5390339,5390340,5390341,5390342,5390343,5390344,5390345,5390346,5390347,5390348,5390349,5390350,5390351],"Wall Banner":[5390848,5390849,5390850,5390851,5390852,5390853,5390854,5390855,5390856,5390857,5390858,5390859,5390860,5390861,5390862,5390863,5390864,5390865,5390866,5390867,5390868,5390869,5390870,5390871,5390872,5390873,5390874,5390875,5390876,5390877,5390878,5390879,5390880,5390881,5390882,5390883,5390884,5390885,5390886,5390887,5390888,5390889,5390890,5390891,5390892,5390893,5390894,5390895,5390896,5390897,5390898,5390899,5390900,5390901,5390902,5390903,5390904,5390905,5390906,5390907,5390908,5390909,5390910,5390911],"Wall Coral Fan":[5391360,5391361,5391362,5391363,5391364,5391368,5391369,5391370,5391371,5391372,5391376,5391377,5391378,5391379,5391380,5391384,5391385,5391386,5391387,5391388,5391392,5391393,5391394,5391395,5391396,5391400,5391401,5391402,5391403,5391404,5391408,5391409,5391410,5391411,5391412,5391416,5391417,5391418,5391419,5391420],"Warped Button":[5434880,5434881,5434882,5434883,5434884,5434885,5434888,5434889,5434890,5434891,5434892,5434893],"Warped Door":[5437952,5437953,5437954,5437955,5437956,5437957,5437958,5437959,5437960,5437961,5437962,5437963,5437964,5437965,5437966,5437967,5437968,5437969,5437970,5437971,5437972,5437973,5437974,5437975,5437976,5437977,5437978,5437979,5437980,5437981,5437982,5437983],"Warped Fence":[5427200],"Warped Fence Gate":[5439488,5439489,5439490,5439491,5439492,5439493,5439494,5439495,5439496,5439497,5439498,5439499,5439500,5439501,5439502,5439503],"Warped Hyphae":[5431808,5431809,5431810,5431811,5431812,5431813],"Warped Planks":[5425664],"Warped Pressure Plate":[5436416,5436417],"Warped Sign":[5442560,5442561,5442562,5442563,5442564,5442565,5442566,5442567,5442568,5442569,5442570,5442571,5442572,5442573,5442574,5442575],"Warped Slab":[5428736,5428737,5428738],"Warped Stairs":[5441024,5441025,5441026,5441027,5441028,5441029,5441030,5441031],"Warped Stem":[5430272,5430273,5430274,5430275,5430276,5430277],"Warped Trapdoor":[5433344,5433345,5433346,5433347,5433348,5433349,5433350,5433351,5433352,5433353,5433354,5433355,5433356,5433357,5433358,5433359],"Warped Wall Sign":[5444096,5444097,5444098,5444099],"Warped Wart Block":[5453824],"Water":[5391872,5391873,5391874,5391875,5391876,5391877,5391878,5391879,5391880,5391881,5391882,5391883,5391884,5391885,5391886,5391887,5391888,5391889,5391890,5391891,5391892,5391893,5391894,5391895,5391896,5391897,5391898,5391899,5391900,5391901,5391902,5391903],"Water Cauldron":[5463552,5463553,5463554,5463555,5463556,5463557],"Weeping Vines":[5468672,5468673,5468674,5468675,5468676,5468677,5468678,5468679,5468680,5468681,5468682,5468683,5468684,5468685,5468686,5468687,5468688,5468689,5468690,5468691,5468692,5468693,5468694,5468695,5468696,5468697],"Weighted Pressure Plate Heavy":[5392384,5392385,5392386,5392387,5392388,5392389,5392390,5392391,5392392,5392393,5392394,5392395,5392396,5392397,5392398,5392399],"Weighted Pressure Plate Light":[5392896,5392897,5392898,5392899,5392900,5392901,5392902,5392903,5392904,5392905,5392906,5392907,5392908,5392909,5392910,5392911],"Wheat Block":[5393408,5393409,5393410,5393411,5393412,5393413,5393414,5393415],"White Tulip":[5394432],"Wither Rose":[5459968],"Wool":[5394944,5394945,5394946,5394947,5394948,5394949,5394950,5394951,5394952,5394953,5394954,5394955,5394956,5394957,5394958,5394959],"Xenon":[5246464],"Ytterbium":[5246976],"Yttrium":[5247488],"Zinc":[5248512],"Zirconium":[5249024],"ate!upd":[5274112],"reserved6":[5349888],"update!":[5273600]},"stateDataBits":9} \ No newline at end of file