diff --git a/src/main/java/cn/nukkit/AdventureSettings.java b/src/main/java/cn/nukkit/AdventureSettings.java index 939e38145b6..f63f15b4e86 100644 --- a/src/main/java/cn/nukkit/AdventureSettings.java +++ b/src/main/java/cn/nukkit/AdventureSettings.java @@ -103,9 +103,9 @@ void update(boolean reset) { layer.getAbilityValues().add(PlayerAbility.OPERATOR_COMMANDS); } - layer.setWalkSpeed(Player.DEFAULT_SPEED); - layer.setFlySpeed(Player.DEFAULT_FLY_SPEED); - layer.setVerticalFlySpeed(1.0f); + layer.setWalkSpeed(player.getWalkSpeed()); + layer.setFlySpeed(player.getFlySpeed()); + layer.setVerticalFlySpeed(player.getVerticalFlySpeed()); packet.getAbilityLayers().add(layer); if (player.isSpectator()) { diff --git a/src/main/java/cn/nukkit/Player.java b/src/main/java/cn/nukkit/Player.java index 4d7da94d5a1..ff802e586df 100644 --- a/src/main/java/cn/nukkit/Player.java +++ b/src/main/java/cn/nukkit/Player.java @@ -71,12 +71,15 @@ import com.google.common.base.Strings; import com.google.common.collect.BiMap; import com.google.common.collect.HashBiMap; -import com.google.common.collect.Sets; import io.netty.util.internal.PlatformDependent; +import it.unimi.dsi.fastutil.bytes.ByteOpenHashSet; import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; import it.unimi.dsi.fastutil.ints.IntArrayList; import it.unimi.dsi.fastutil.ints.IntOpenHashSet; -import it.unimi.dsi.fastutil.longs.*; +import it.unimi.dsi.fastutil.longs.Long2ObjectLinkedOpenHashMap; +import it.unimi.dsi.fastutil.longs.Long2ObjectMap; +import it.unimi.dsi.fastutil.longs.Long2ObjectOpenHashMap; +import it.unimi.dsi.fastutil.longs.LongIterator; import it.unimi.dsi.fastutil.objects.ObjectIterator; import lombok.Getter; import lombok.Setter; @@ -90,10 +93,10 @@ import java.lang.reflect.Field; import java.net.InetSocketAddress; import java.nio.ByteOrder; -import java.util.List; import java.util.*; -import java.util.Queue; +import java.util.List; import java.util.Map.Entry; +import java.util.Queue; import java.util.concurrent.ThreadLocalRandom; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicReference; @@ -125,6 +128,7 @@ public class Player extends EntityHuman implements CommandSender, InventoryHolde public static final float DEFAULT_SPEED = 0.1f; public static final float MAXIMUM_SPEED = 6f; // TODO: Decrease when block collisions are fixed public static final float DEFAULT_FLY_SPEED = 0.05f; + public static final float DEFAULT_VERTICAL_FLY_SPEED = 1f; public static final int PERMISSION_CUSTOM = 3; public static final int PERMISSION_OPERATOR = 2; @@ -178,7 +182,7 @@ public class Player extends EntityHuman implements CommandSender, InventoryHolde protected Vector3 teleportPosition; protected Vector3 newPosition; protected Vector3 sleeping; - private Vector3 lastRightClickPos; + private BlockVector3 lastRightClickPos; private final Queue clientMovements = PlatformDependent.newMpscQueue(4); protected boolean connected = true; @@ -215,6 +219,24 @@ public class Player extends EntityHuman implements CommandSender, InventoryHolde @Getter @Setter private boolean canTickShield = true; + /** + * Player's client-side walk speed. Remember to call getAdventureSettings().update() if changed. + */ + @Getter + @Setter + private float walkSpeed = DEFAULT_SPEED; + /** + * Player's client-side fly speed. Remember to call getAdventureSettings().update() if changed. + */ + @Getter + @Setter + private float flySpeed = DEFAULT_FLY_SPEED; + /** + * Player's client-side vertical fly speed. Remember to call getAdventureSettings().update() if changed. + */ + @Getter + @Setter + private float verticalFlySpeed = DEFAULT_VERTICAL_FLY_SPEED; private int exp; private int expLevel; @@ -296,7 +318,7 @@ public class Player extends EntityHuman implements CommandSender, InventoryHolde /** * Packets that can be received before the player has logged in */ - private static final Set PRE_LOGIN_PACKETS = Sets.newHashSet(ProtocolInfo.BATCH_PACKET, ProtocolInfo.LOGIN_PACKET, ProtocolInfo.REQUEST_NETWORK_SETTINGS_PACKET, ProtocolInfo.REQUEST_CHUNK_RADIUS_PACKET, ProtocolInfo.SET_LOCAL_PLAYER_AS_INITIALIZED_PACKET, ProtocolInfo.RESOURCE_PACK_CHUNK_REQUEST_PACKET, ProtocolInfo.RESOURCE_PACK_CLIENT_RESPONSE_PACKET, ProtocolInfo.CLIENT_CACHE_STATUS_PACKET, ProtocolInfo.PACKET_VIOLATION_WARNING_PACKET, ProtocolInfo.CLIENT_TO_SERVER_HANDSHAKE_PACKET); + private static final ByteOpenHashSet PRE_LOGIN_PACKETS = new ByteOpenHashSet(new byte[]{ProtocolInfo.BATCH_PACKET, ProtocolInfo.LOGIN_PACKET, ProtocolInfo.REQUEST_NETWORK_SETTINGS_PACKET, ProtocolInfo.REQUEST_CHUNK_RADIUS_PACKET, ProtocolInfo.SET_LOCAL_PLAYER_AS_INITIALIZED_PACKET, ProtocolInfo.RESOURCE_PACK_CHUNK_REQUEST_PACKET, ProtocolInfo.RESOURCE_PACK_CLIENT_RESPONSE_PACKET, ProtocolInfo.CLIENT_CACHE_STATUS_PACKET, ProtocolInfo.PACKET_VIOLATION_WARNING_PACKET, ProtocolInfo.CLIENT_TO_SERVER_HANDSHAKE_PACKET}); /** * Default kick message for flying */ @@ -4197,7 +4219,6 @@ public void onCompletion(Server server) { UseItemData useItemData = (UseItemData) transactionPacket.transactionData; BlockVector3 blockVector = useItemData.blockPos; BlockFace face = useItemData.face; - int type = useItemData.actionType; this.setShieldBlockingDelay(5); @@ -4209,14 +4230,14 @@ public void onCompletion(Server server) { itemSent = true; // Assume that the item is still correct even if the selected slot is not } - switch (type) { + switch (useItemData.actionType) { case InventoryTransactionPacket.USE_ITEM_ACTION_CLICK_BLOCK: // Hack: Fix client spamming right clicks if ((lastRightClickPos != null && this.getInventory().getItemInHandFast().getBlockId() == BlockID.AIR && System.currentTimeMillis() - lastRightClickTime < 200.0 && blockVector.distanceSquared(lastRightClickPos) < 0.00001)) { return; } - lastRightClickPos = blockVector.asVector3(); + lastRightClickPos = blockVector; lastRightClickTime = System.currentTimeMillis(); this.breakingBlock = null; @@ -4366,17 +4387,15 @@ public void onCompletion(Server server) { return; } - type = useItemOnEntityData.actionType; - if (inventory.getHeldItemIndex() != useItemOnEntityData.hotbarSlot) { inventory.equipItem(useItemOnEntityData.hotbarSlot); } item = this.inventory.getItemInHand(); - switch (type) { + switch (useItemOnEntityData.actionType) { case InventoryTransactionPacket.USE_ITEM_ON_ENTITY_ACTION_INTERACT: - if (this.distanceSquared(target) > 1000) { + if (this.distanceSquared(target) > 256) { // TODO: Note entity scale this.getServer().getLogger().debug(username + ": target entity is too far away"); return; } @@ -4513,8 +4532,7 @@ public void onCompletion(Server server) { ReleaseItemData releaseItemData = (ReleaseItemData) transactionPacket.transactionData; try { - type = releaseItemData.actionType; - switch (type) { + switch (releaseItemData.actionType) { case InventoryTransactionPacket.RELEASE_ITEM_ACTION_RELEASE: if (this.isUsingItem()) { int ticksUsed = this.server.getTick() - this.startAction; @@ -4529,7 +4547,7 @@ public void onCompletion(Server server) { case InventoryTransactionPacket.RELEASE_ITEM_ACTION_CONSUME: return; default: - this.getServer().getLogger().debug(username + ": unknown release item action type: " + type); + this.getServer().getLogger().debug(username + ": unknown release item action type: " + releaseItemData.actionType); } } finally { this.setUsingItem(false); @@ -4687,12 +4705,11 @@ public void onCompletion(Server server) { } LecternUpdatePacket lecternUpdatePacket = (LecternUpdatePacket) packet; - Vector3 lecternPos = lecternUpdatePacket.blockPosition.asVector3(); - if (lecternPos.distanceSquared(this) > 4096) { + if (lecternUpdatePacket.blockPosition.distanceSquared(this) > 4096) { return; } if (!lecternUpdatePacket.dropBook) { - BlockEntity blockEntityLectern = this.level.getBlockEntityIfLoaded(this.chunk, lecternPos); + BlockEntity blockEntityLectern = this.level.getBlockEntityIfLoaded(this.chunk, lecternUpdatePacket.blockPosition.asVector3()); if (blockEntityLectern instanceof BlockEntityLectern) { BlockEntityLectern lectern = (BlockEntityLectern) blockEntityLectern; if (lectern.getRawPage() != lecternUpdatePacket.page) { @@ -4917,8 +4934,9 @@ private void onBlockBreakComplete(BlockVector3 blockPos, BlockFace face) { // Fr } this.needSendHeldItem = true; if (blockPos.distanceSquared(this) < 10000) { - this.level.sendBlocks(this, new Block[]{this.level.getBlock(blockPos.asVector3(), false)}, UpdateBlockPacket.FLAG_ALL_PRIORITY); - BlockEntity blockEntity = this.level.getBlockEntityIfLoaded(this.chunk, blockPos.asVector3()); + Vector3 pos = blockPos.asVector3(); + this.level.sendBlocks(this, new Block[]{this.level.getBlock(pos, false)}, UpdateBlockPacket.FLAG_ALL_PRIORITY); + BlockEntity blockEntity = this.level.getBlockEntityIfLoaded(this.chunk, pos); if (blockEntity instanceof BlockEntitySpawnable) { ((BlockEntitySpawnable) blockEntity).spawnTo(this); } diff --git a/src/main/java/cn/nukkit/block/Block.java b/src/main/java/cn/nukkit/block/Block.java index 7ee9eef8d8e..df41fc34d99 100644 --- a/src/main/java/cn/nukkit/block/Block.java +++ b/src/main/java/cn/nukkit/block/Block.java @@ -640,7 +640,7 @@ public Block getSide(BlockLayer layer, BlockFace face, int step) { if (this.isValid()) { return this.getLevel().getBlock(super.getSide(face, step), layer, true); } - return Block.get(AIR, 0, Position.fromObject(new Vector3(this.x, this.y, this.z).getSide(face, step)), layer); + return Block.get(AIR, 0, Position.fromObject(this.getSideVec(face, step)), layer); } protected Block getSideIfLoaded(BlockFace face) { @@ -649,7 +649,7 @@ protected Block getSideIfLoaded(BlockFace face) { (int) this.x + face.getXOffset(), (int) this.y + face.getYOffset(), (int) this.z + face.getZOffset(), BlockLayer.NORMAL, false); } - return Block.get(AIR, 0, Position.fromObject(new Vector3(this.x, this.y, this.z).getSide(face, 1)), BlockLayer.NORMAL); + return Block.get(AIR, 0, Position.fromObject(this.getSideVec(face, 1)), BlockLayer.NORMAL); } protected Block getSideIfLoadedOrNull(BlockFace face) { @@ -667,7 +667,7 @@ protected Block getSideIfLoadedOrNull(BlockFace face) { BlockLayer.NORMAL, false); } - return Block.get(AIR, 0, Position.fromObject(new Vector3(this.x, this.y, this.z).getSide(face, 1)), BlockLayer.NORMAL); + return Block.get(AIR, 0, Position.fromObject(this.getSideVec(face, 1)), BlockLayer.NORMAL); } public Block up() { diff --git a/src/main/java/cn/nukkit/block/BlockCactus.java b/src/main/java/cn/nukkit/block/BlockCactus.java index c7c3af41f2b..4b86bbcf21d 100644 --- a/src/main/java/cn/nukkit/block/BlockCactus.java +++ b/src/main/java/cn/nukkit/block/BlockCactus.java @@ -9,7 +9,9 @@ import cn.nukkit.item.Item; import cn.nukkit.level.Level; import cn.nukkit.level.format.FullChunk; +import cn.nukkit.math.AxisAlignedBB; import cn.nukkit.math.BlockFace; +import cn.nukkit.math.SimpleAxisAlignedBB; import cn.nukkit.utils.BlockColor; /** @@ -45,7 +47,7 @@ public boolean hasEntityCollision() { return true; } - /*@Override + @Override public double getMinX() { return this.x + 0.0625; } @@ -63,11 +65,12 @@ public double getMaxX() { @Override public double getMaxZ() { return this.z + 0.9375; - }*/ + } - // Hack: Fix entity collisions - // No need for separate collision box - // Y-collisions need another fix anyway + @Override + protected AxisAlignedBB recalculateCollisionBoundingBox() { + return new SimpleAxisAlignedBB(x, y, z, x + 1, y + 1, z + 1); + } @Override public double getMaxY() { diff --git a/src/main/java/cn/nukkit/block/BlockCampfire.java b/src/main/java/cn/nukkit/block/BlockCampfire.java index 2e5b9ce443b..2720372ba27 100644 --- a/src/main/java/cn/nukkit/block/BlockCampfire.java +++ b/src/main/java/cn/nukkit/block/BlockCampfire.java @@ -62,11 +62,6 @@ public int getToolType() { return ItemTool.TYPE_AXE; } - @Override - public boolean canHarvestWithHand() { - return false; - } - @Override public Item[] getDrops(Item item) { return new Item[] {Item.get(ItemID.COAL, 0, 1 + ThreadLocalRandom.current().nextInt(1))}; diff --git a/src/main/java/cn/nukkit/block/BlockChorusFlower.java b/src/main/java/cn/nukkit/block/BlockChorusFlower.java index 0c8fd5a7e1a..80a01866397 100644 --- a/src/main/java/cn/nukkit/block/BlockChorusFlower.java +++ b/src/main/java/cn/nukkit/block/BlockChorusFlower.java @@ -3,8 +3,11 @@ import cn.nukkit.Player; import cn.nukkit.Server; import cn.nukkit.entity.Entity; +import cn.nukkit.entity.item.EntityFirework; import cn.nukkit.entity.projectile.EntityArrow; +import cn.nukkit.entity.projectile.EntityEgg; import cn.nukkit.entity.projectile.EntitySnowball; +import cn.nukkit.entity.projectile.EntityThrownTrident; import cn.nukkit.event.block.BlockGrowEvent; import cn.nukkit.item.Item; import cn.nukkit.item.ItemBlock; @@ -194,9 +197,15 @@ public Item toItem() { return new ItemBlock(Block.get(this.getId(), 0), 0); } + @Override + public boolean hasEntityCollision() { + return true; + } + @Override public void onEntityCollide(Entity entity) { - if (entity instanceof EntityArrow || entity instanceof EntitySnowball) { + int e = entity.getNetworkId(); + if (e == EntityArrow.NETWORK_ID || e == EntityThrownTrident.NETWORK_ID || e == EntityFirework.NETWORK_ID || e == EntitySnowball.NETWORK_ID || e == EntityEgg.NETWORK_ID || e == 85 || e == 94 || e == 79 || e == 89) { entity.close(); this.getLevel().useBreakOn(this); } diff --git a/src/main/java/cn/nukkit/block/BlockJukebox.java b/src/main/java/cn/nukkit/block/BlockJukebox.java index 9fadda9c14c..c53b1a6b9d4 100644 --- a/src/main/java/cn/nukkit/block/BlockJukebox.java +++ b/src/main/java/cn/nukkit/block/BlockJukebox.java @@ -109,4 +109,15 @@ public BlockColor getColor() { public boolean canBePushed() { return false; } + + @Override + public boolean hasComparatorInputOverride() { + return true; + } + + @Override + public int getComparatorInputOverride() { + BlockEntity blockEntity = this.getLevel().getBlockEntityIfLoaded(this); + return blockEntity instanceof BlockEntityJukebox ? ((BlockEntityJukebox) blockEntity).getComparatorSignal() : 0; + } } diff --git a/src/main/java/cn/nukkit/block/BlockLeaves.java b/src/main/java/cn/nukkit/block/BlockLeaves.java index f415320c2cf..a5996b02a23 100644 --- a/src/main/java/cn/nukkit/block/BlockLeaves.java +++ b/src/main/java/cn/nukkit/block/BlockLeaves.java @@ -116,6 +116,10 @@ public Item[] getDrops(Item item) { @Override public int onUpdate(int type) { if (type == Level.BLOCK_UPDATE_NORMAL && !isPersistent() && !isCheckDecay()) { + if (this.level.getBlockIdAt((int) this.x, (int) this.y, (int) this.z) != this.getId()) { + return 0; + } + setCheckDecay(true); getLevel().setBlock((int) this.x, (int) this.y, (int) this.z, BlockLayer.NORMAL, this, false, false, false); // No need to send this to client diff --git a/src/main/java/cn/nukkit/block/BlockLectern.java b/src/main/java/cn/nukkit/block/BlockLectern.java index a5c6e1f8246..da07e9b6d9a 100644 --- a/src/main/java/cn/nukkit/block/BlockLectern.java +++ b/src/main/java/cn/nukkit/block/BlockLectern.java @@ -7,7 +7,9 @@ import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; import cn.nukkit.item.ItemTool; +import cn.nukkit.level.Level; import cn.nukkit.math.BlockFace; +import cn.nukkit.math.NukkitMath; import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.network.protocol.ContainerOpenPacket; import cn.nukkit.network.protocol.LevelSoundEventPacket; @@ -80,21 +82,6 @@ public BlockFace getBlockFace() { return BlockFace.fromHorizontalIndex(getDamage() & 0b11); } - public boolean dropBook() { - BlockEntity blockEntity = this.getLevel().getBlockEntity(this); - if (blockEntity instanceof BlockEntityLectern) { - BlockEntityLectern lectern = (BlockEntityLectern) blockEntity; - Item book = lectern.getBook(); - if (book.getId() != BlockID.AIR) { - lectern.setBook(Item.get(BlockID.AIR)); - lectern.spawnToAll(); - this.level.dropItem(lectern.add(0.5f, 1, 0.5f), book); - return true; - } - } - return false; - } - @Override public boolean isPowerSource() { return true; @@ -167,4 +154,41 @@ public boolean onActivate(Item item, Player player) { public boolean canBePushed() { return false; // prevent item loss issue with pistons until a working implementation } + + @Override + public boolean hasComparatorInputOverride() { + return true; + } + + @Override + public int getComparatorInputOverride() { + int power = 0; + BlockEntity lectern = level.getBlockEntityIfLoaded(this); + if (lectern instanceof BlockEntityLectern && ((BlockEntityLectern) lectern).hasBook()) { + int currentPage = ((BlockEntityLectern) lectern).getLeftPage(); + int totalPages = ((BlockEntityLectern) lectern).getTotalPages(); + power = NukkitMath.floorDouble(1 + ((double) (currentPage - 1) / (totalPages - 1)) * 14); + } + return power; + } + + public void onPageChange(boolean active) { + if (isActivated() != active) { + setActivated(active); + level.setBlock((int) this.x, (int) this.y, (int) this.z, BlockLayer.NORMAL, this, false, false, false); // No need to send this to client + level.updateAroundRedstone(this, null); + if (active) { + level.scheduleUpdate(this, 1); + } + } + } + + @Override + public int onUpdate(int type) { + if (type == Level.BLOCK_UPDATE_SCHEDULED || type == Level.BLOCK_UPDATE_NORMAL) { + onPageChange(false); + } + + return 0; + } } diff --git a/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java b/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java index 2e338cb2a92..c0e4259d048 100644 --- a/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java +++ b/src/main/java/cn/nukkit/block/BlockRespawnAnchor.java @@ -149,4 +149,25 @@ public boolean onBreak(Item item) { } return r; } + + @Override + public boolean hasComparatorInputOverride() { + return true; + } + + @Override + public int getComparatorInputOverride() { + switch (this.getDamage()) { + case 1: + return 3; + case 2: + return 7; + case 3: + return 11; + case 4: + return 15; + default: + return 0; + } + } } diff --git a/src/main/java/cn/nukkit/block/BlockSculk.java b/src/main/java/cn/nukkit/block/BlockSculk.java index bb4ac659f42..3775181de66 100644 --- a/src/main/java/cn/nukkit/block/BlockSculk.java +++ b/src/main/java/cn/nukkit/block/BlockSculk.java @@ -24,22 +24,12 @@ public int getToolType() { @Override public double getHardness() { - return 1.5; + return 0.2; } @Override public double getResistance() { - return 1.5; - } - - @Override - public int getLightLevel() { - return 1; - } - - @Override - public boolean canHarvestWithHand() { - return false; + return 0.2; } @Override diff --git a/src/main/java/cn/nukkit/block/BlockTarget.java b/src/main/java/cn/nukkit/block/BlockTarget.java index 287c2144bca..084ba09680b 100644 --- a/src/main/java/cn/nukkit/block/BlockTarget.java +++ b/src/main/java/cn/nukkit/block/BlockTarget.java @@ -9,16 +9,13 @@ import cn.nukkit.item.ItemTool; import cn.nukkit.level.Level; import cn.nukkit.math.BlockFace; +import cn.nukkit.math.SimpleAxisAlignedBB; import cn.nukkit.utils.BlockColor; -public class BlockTarget extends BlockSolidMeta { +public class BlockTarget extends BlockSolid { public BlockTarget() { - this(0); - } - - public BlockTarget(int meta) { - super(meta); + super(); } @Override @@ -73,7 +70,13 @@ public boolean isPowerSource() { @Override public int getWeakPower(BlockFace face) { - return this.getDamage() > 0 ? 10 : 0; + for (Entity e : level.getCollidingEntities(new SimpleAxisAlignedBB(x - 0.000001, y - 0.000001, z - 0.000001, x + 1.000001, y + 1.000001, z + 1.000001))) { + if (e instanceof EntityProjectile && ((level.getServer().getTick() - ((EntityProjectile) e).getCollidedTick()) < ((e instanceof EntityArrow || e instanceof EntityThrownTrident) ? 10 : 4))) { + return 10; + } + } + + return 0; } @Override @@ -84,14 +87,12 @@ public boolean hasEntityCollision() { @Override public void onEntityCollide(Entity entity) { if (entity instanceof EntityProjectile) { - this.setDamage(1); - this.level.setBlock((int) this.x, (int) this.y, (int) this.z, BlockLayer.NORMAL, this, false, true, false); // No need to send this to client this.level.updateAroundRedstone(this, null); if (entity instanceof EntityArrow || entity instanceof EntityThrownTrident) { - this.level.scheduleUpdate(this, 20); + this.level.scheduleUpdate(this, 10); } else { - this.level.scheduleUpdate(this, 8); + this.level.scheduleUpdate(this, 4); } } } @@ -99,8 +100,6 @@ public void onEntityCollide(Entity entity) { @Override public int onUpdate(int type) { if (type == Level.BLOCK_UPDATE_SCHEDULED) { - this.setDamage(0); - this.level.setBlock((int) this.x, (int) this.y, (int) this.z, BlockLayer.NORMAL, this, false, true, false); // No need to send this to client this.level.updateAroundRedstone(this, null); return Level.BLOCK_UPDATE_SCHEDULED; } diff --git a/src/main/java/cn/nukkit/block/BlockWitherRose.java b/src/main/java/cn/nukkit/block/BlockWitherRose.java index fb275d6fc88..471aca54f6d 100644 --- a/src/main/java/cn/nukkit/block/BlockWitherRose.java +++ b/src/main/java/cn/nukkit/block/BlockWitherRose.java @@ -33,7 +33,7 @@ public void onEntityCollide(Entity entity) { if (!living.invulnerable && !living.hasEffect(Effect.WITHER) && (!(living instanceof Player) || !((Player) living).isCreative() && !((Player) living).isSpectator())) { Effect effect = Effect.getEffect(Effect.WITHER); - effect.setDuration(40); + effect.setDuration(50); // No damage is given if less due to how the effect is ticked living.addEffect(effect, EntityPotionEffectEvent.Cause.WITHER_ROSE); } } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityBell.java b/src/main/java/cn/nukkit/blockentity/BlockEntityBell.java index 30e788bf4d6..8e3d4b3ac16 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityBell.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityBell.java @@ -126,7 +126,7 @@ public void setTicks(int ticks) { @Override public CompoundTag getSpawnCompound() { - CompoundTag tag = new CompoundTag() + return new CompoundTag() .putString("id", BlockEntity.BELL) .putInt("x", (int) this.x) .putInt("y", (int) this.y) @@ -134,7 +134,6 @@ public CompoundTag getSpawnCompound() { .putBoolean("Ringing", this.ringing) .putInt("Direction", this.direction) .putInt("Ticks", this.ticks); - return tag; } @Override diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityHopper.java b/src/main/java/cn/nukkit/blockentity/BlockEntityHopper.java index 245f0267a7e..cda8a2b3d28 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityHopper.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityHopper.java @@ -349,6 +349,9 @@ private boolean pullItems(BlockEntity blockEntity, Block block) { } } else if (block instanceof BlockComposter) { BlockComposter composter = (BlockComposter) block; + if (!composter.isFull()) { + return false; + } Item item = composter.empty(); if (item == null || item.isNull()) { return false; @@ -433,7 +436,7 @@ public void onBreak() { } public boolean pushItems() { - int blockData = this.level.getBlockDataAt(this.chunk, (int) x, (int) y, (int) z, Block.LAYER_NORMAL); + int blockData = this.level.getBlockDataAt(this.chunk, (int) x, (int) y, (int) z, Block.LAYER_NORMAL) & 0x7; BlockEntity be = this.level.getBlockEntity(this.chunk, this.getSide(BlockFace.fromIndex(blockData))); if (!(be instanceof InventoryHolder) || (be instanceof BlockEntityHopper && blockData == 0)) { diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityJukebox.java b/src/main/java/cn/nukkit/blockentity/BlockEntityJukebox.java index d5f15c7c9c7..32006ef6c6a 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityJukebox.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityJukebox.java @@ -130,4 +130,43 @@ public CompoundTag getSpawnCompound() { public void onBreak() { this.dropItem(); } + + public int getComparatorSignal() { + if (this.recordItem instanceof ItemRecord) { + switch (this.recordItem.getId()) { + case Item.RECORD_13: + return 1; + case Item.RECORD_CAT: + return 2; + case Item.RECORD_BLOCKS: + return 3; + case Item.RECORD_CHIRP: + return 4; + case Item.RECORD_FAR: + return 5; + case Item.RECORD_MALL: + return 6; + case Item.RECORD_MELLOHI: + return 7; + case Item.RECORD_STAL: + return 8; + case Item.RECORD_STRAD: + return 9; + case Item.RECORD_WARD: + return 10; + case Item.RECORD_11: + return 11; + case Item.RECORD_WAIT: + return 12; + case Item.RECORD_PIGSTEP: + return 13; + case Item.RECORD_OTHERSIDE: + return 14; + case Item.RECORD_5: + case Item.RECORD_RELIC: + return 15; + } + } + return 0; + } } diff --git a/src/main/java/cn/nukkit/blockentity/BlockEntityLectern.java b/src/main/java/cn/nukkit/blockentity/BlockEntityLectern.java index e4386f41a10..e826fadcca0 100644 --- a/src/main/java/cn/nukkit/blockentity/BlockEntityLectern.java +++ b/src/main/java/cn/nukkit/blockentity/BlockEntityLectern.java @@ -1,7 +1,9 @@ package cn.nukkit.blockentity; import cn.nukkit.Player; +import cn.nukkit.block.Block; import cn.nukkit.block.BlockID; +import cn.nukkit.block.BlockLectern; import cn.nukkit.item.Item; import cn.nukkit.item.ItemID; import cn.nukkit.level.GameRule; @@ -29,7 +31,7 @@ protected void initBlockEntity() { this.namedTag.remove("page"); } - updateTotalPages(false); + updateTotalPages(); } @Override @@ -98,7 +100,7 @@ public void setBook(Item item) { item_ = null; } - updateTotalPages(true); + updateTotalPages(); setDirty(); } @@ -121,7 +123,11 @@ public void setRightPage(int newRightPage) { public void setRawPage(int page) { this.namedTag.putInt("page", Math.min(page, totalPages)); setDirty(); - this.getLevel().updateAround(this); + + Block block = getLevelBlock(); + if (block instanceof BlockLectern) { + ((BlockLectern) block).onPageChange(hasBook()); + } } public int getRawPage() { @@ -132,17 +138,13 @@ public int getTotalPages() { return totalPages; } - private void updateTotalPages(boolean updateRedstone) { + private void updateTotalPages() { Item book = getBook(); if (book.getId() == BlockID.AIR || !book.hasCompoundTag()) { totalPages = 0; } else { totalPages = book.getNamedTag().getList("pages", CompoundTag.class).size(); } - - if (updateRedstone) { - this.getLevel().updateAroundRedstone(this, null); - } } public boolean dropBook(Player player) { @@ -150,6 +152,11 @@ public boolean dropBook(Player player) { if (item != null && item.getId() != Item.AIR) { this.setBook(null); this.level.dropItem(this.add(0.5, 1, 0.5), item); + + Block block = getLevelBlock(); + if (block instanceof BlockLectern) { + ((BlockLectern) block).onPageChange(false); + } return true; } return false; diff --git a/src/main/java/cn/nukkit/dispenser/ShearsDispenseBehaviour.java b/src/main/java/cn/nukkit/dispenser/ShearsDispenseBehaviour.java index e0f805a11a1..18fcb9fecb3 100644 --- a/src/main/java/cn/nukkit/dispenser/ShearsDispenseBehaviour.java +++ b/src/main/java/cn/nukkit/dispenser/ShearsDispenseBehaviour.java @@ -1,6 +1,7 @@ package cn.nukkit.dispenser; import cn.nukkit.block.Block; +import cn.nukkit.block.BlockBeehive; import cn.nukkit.block.BlockDispenser; import cn.nukkit.entity.Entity; import cn.nukkit.entity.passive.EntitySheep; @@ -30,6 +31,11 @@ public Item dispense(BlockDispenser block, BlockFace face, Item item) { } } } + + if (target instanceof BlockBeehive && target.onActivate(item, null)) { + return item.getDamage() >= item.getMaxDurability() ? null : item; + } + return item; } } diff --git a/src/main/java/cn/nukkit/entity/Entity.java b/src/main/java/cn/nukkit/entity/Entity.java index ee2396d9a5d..30b9471cf37 100644 --- a/src/main/java/cn/nukkit/entity/Entity.java +++ b/src/main/java/cn/nukkit/entity/Entity.java @@ -324,6 +324,9 @@ public abstract class Entity extends Location implements Metadatable { public static final int DATA_FLAG_TIMER_FLAG_3 = 117; public static final int DATA_FLAG_BODY_ROTATION_BLOCKED = 118; public static final int DATA_FLAG_RENDER_WHEN_INVISIBLE = 119; + public static final int DATA_FLAG_BODY_ROTATION_AXIS_ALIGNED = 120; + public static final int DATA_FLAG_COLLIDABLE = 121; + public static final int DATA_FLAG_WASD_AIR_CONTROLLED = 122; public static final double STEP_CLIP_MULTIPLIER = 0.4; @@ -1578,10 +1581,14 @@ protected boolean checkObstruction(double x, double y, double z) { return false; } + @Deprecated public boolean entityBaseTick() { return this.entityBaseTick(1); } + /** + * Entity base tick, called from onUpdate if the entity is alive. Result is applied to onUpdate. updateMovement is called afterward automatically. + */ public boolean entityBaseTick(int tickDiff) { if (!(this instanceof Player)) { //this.blocksAround = null; // Use only when entity moves for better performance diff --git a/src/main/java/cn/nukkit/entity/item/EntityBoat.java b/src/main/java/cn/nukkit/entity/item/EntityBoat.java index 5c9fdffa2ac..83311149a02 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityBoat.java +++ b/src/main/java/cn/nukkit/entity/item/EntityBoat.java @@ -125,88 +125,70 @@ public void close() { } @Override - public boolean onUpdate(int currentTick) { - if (this.closed) { - return false; - } - - int tickDiff = currentTick - this.lastUpdate; - - if (tickDiff <= 0 && !this.justCreated) { - return true; - } + public boolean entityBaseTick(int tickDiff) { + boolean hasUpdate = false; - this.lastUpdate = currentTick; + double waterDiff = getWaterLevel(); - boolean hasUpdate = this.entityBaseTick(tickDiff); - - if (this.isAlive()) { - super.onUpdate(currentTick); - - double waterDiff = getWaterLevel(); - if (!hasControllingPassenger()) { - if (waterDiff > SINKING_DEPTH && !sinking) { - sinking = true; - } else if (waterDiff < -0.07 && sinking) { - sinking = false; - } - - if (waterDiff < -0.07) { - this.motionY = Math.min(0.05, this.motionY + 0.005); - } else if (waterDiff < 0 || !sinking) { - this.motionY = this.motionY > SINKING_MAX_SPEED ? Math.max(this.motionY - 0.02, SINKING_MAX_SPEED) : this.motionY + SINKING_SPEED; - } + if (!hasControllingPassenger()) { + if (waterDiff > SINKING_DEPTH && !sinking) { + sinking = true; + } else if (waterDiff < -0.07 && sinking) { + sinking = false; } - if (this.checkObstruction(this.x, this.y, this.z)) { - hasUpdate = true; + if (waterDiff < -0.07) { + this.motionY = Math.min(0.05, this.motionY + 0.005); + } else if (waterDiff < 0 || !sinking) { + this.motionY = this.motionY > SINKING_MAX_SPEED ? Math.max(this.motionY - 0.02, SINKING_MAX_SPEED) : this.motionY + SINKING_SPEED; } + } - //this.move(this.motionX, this.motionY, this.motionZ); + if (this.checkObstruction(this.x, this.y, this.z)) { + hasUpdate = true; + } - double friction = 1 - this.getDrag(); + double friction = 1 - this.getDrag(); - if (this.onGround && (Math.abs(this.motionX) > 0.00001 || Math.abs(this.motionZ) > 0.00001)) { - friction *= this.getLevel().getBlock(this.chunk, getFloorX(), getFloorY() - 1, getFloorZ(), false).getFrictionFactor(); - } + if (this.onGround && (Math.abs(this.motionX) > 0.00001 || Math.abs(this.motionZ) > 0.00001)) { + friction *= this.getLevel().getBlock(this.chunk, getFloorX(), getFloorY() - 1, getFloorZ(), false).getFrictionFactor(); + } - this.motionX *= friction; + this.motionX *= friction; - if (!hasControllingPassenger()) { - if (waterDiff > SINKING_DEPTH || sinking) { - this.motionY = waterDiff > 0.5 ? this.motionY - this.getGravity() : (this.motionY - SINKING_SPEED < -0.005 ? this.motionY : this.motionY - SINKING_SPEED); - } + if (!hasControllingPassenger()) { + if (waterDiff > SINKING_DEPTH || sinking) { + this.motionY = waterDiff > 0.5 ? this.motionY - this.getGravity() : (this.motionY - SINKING_SPEED < -0.005 ? this.motionY : this.motionY - SINKING_SPEED); } + } - this.motionZ *= friction; - - Location from = new Location(lastX, lastY, lastZ, lastYaw, lastPitch, level); - Location to = new Location(this.x, this.y, this.z, this.yaw, this.pitch, level); + this.motionZ *= friction; - this.getServer().getPluginManager().callEvent(new VehicleUpdateEvent(this)); + Location from = new Location(lastX, lastY, lastZ, lastYaw, lastPitch, level); + Location to = new Location(this.x, this.y, this.z, this.yaw, this.pitch, level); - if (!from.equals(to)) { - this.getServer().getPluginManager().callEvent(new VehicleMoveEvent(this, from, to)); - } + this.getServer().getPluginManager().callEvent(new VehicleUpdateEvent(this)); - this.move(this.motionX, this.motionY, this.motionZ); + if (!from.equals(to)) { + this.getServer().getPluginManager().callEvent(new VehicleMoveEvent(this, from, to)); + } - this.updateMovement(); + this.move(this.motionX, this.motionY, this.motionZ); - if (this.age % 5 == 0) { - if (!this.passengers.isEmpty() && this.passengers.get(0) instanceof Player) { - Block[] blocks = this.level.getCollisionBlocks(this.getBoundingBox().grow(0.1, 0.3, 0.1)); - for (Block b : blocks) { - if (b.getId() == Block.LILY_PAD) { - this.level.setBlockAt((int) b.x, (int) b.y, (int) b.z, 0, 0); - this.level.dropItem(b, Item.get(Item.LILY_PAD, 0, 1)); - } + if (this.age % 5 == 0) { + if (!this.passengers.isEmpty() && this.passengers.get(0) instanceof Player) { + Block[] blocks = this.level.getCollisionBlocks(this.getBoundingBox().grow(0.1, 0.3, 0.1)); + for (Block b : blocks) { + if (b.getId() == Block.LILY_PAD) { + this.level.setBlockAt((int) b.x, (int) b.y, (int) b.z, 0, 0); + this.level.dropItem(b, Item.get(Item.LILY_PAD, 0, 1)); } } } } - return hasUpdate || !this.onGround || Math.abs(this.motionX) > 0.00001 || Math.abs(this.motionY) > 0.00001 || Math.abs(this.motionZ) > 0.00001; + // We call super here after movement code so block collision checks use up to date position + return super.entityBaseTick(tickDiff) || hasUpdate || !this.onGround || Math.abs(this.motionX) > 0.00001 || Math.abs(this.motionY) > 0.00001 || Math.abs(this.motionZ) > 0.00001; } public void updatePassengers() { diff --git a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java index 9340c02849d..091c8e037e4 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java +++ b/src/main/java/cn/nukkit/entity/item/EntityFallingBlock.java @@ -11,6 +11,7 @@ import cn.nukkit.event.entity.EntityDamageEvent; import cn.nukkit.event.entity.EntityDamageEvent.DamageCause; import cn.nukkit.item.Item; +import cn.nukkit.item.ItemBlock; import cn.nukkit.level.GameRule; import cn.nukkit.level.GlobalBlockPalette; import cn.nukkit.level.format.FullChunk; @@ -164,7 +165,7 @@ public boolean onUpdate(int currentTick) { } } else if ((floorBlock.isTransparent() && !floorBlock.canBeReplaced() || this.getBlock() == Block.SNOW_LAYER && floorBlock instanceof BlockLiquid)) { if (this.getBlock() != Block.SNOW_LAYER ? this.level.getGameRules().getBoolean(GameRule.DO_ENTITY_DROPS) : this.level.getGameRules().getBoolean(GameRule.DO_TILE_DROPS)) { - getLevel().dropItem(this, Item.get(this.blockId, this.damage, 1)); + getLevel().dropItem(this, new ItemBlock(Block.get(this.blockId, this.damage), this.damage, 1)); } } else if (floorBlock.canBeReplaced()) { EntityBlockChangeEvent event = new EntityBlockChangeEvent(this, floorBlock, Block.get(blockId, damage)); diff --git a/src/main/java/cn/nukkit/entity/item/EntityItem.java b/src/main/java/cn/nukkit/entity/item/EntityItem.java index e2f1b0a41e2..dbc87f6acbf 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityItem.java +++ b/src/main/java/cn/nukkit/entity/item/EntityItem.java @@ -3,9 +3,7 @@ import cn.nukkit.Player; import cn.nukkit.Server; import cn.nukkit.block.Block; -import cn.nukkit.block.BlockID; import cn.nukkit.entity.Entity; -import cn.nukkit.event.entity.EntityDamageByBlockEvent; import cn.nukkit.event.entity.EntityDamageEvent; import cn.nukkit.event.entity.EntityDamageEvent.DamageCause; import cn.nukkit.event.entity.ItemDespawnEvent; @@ -252,17 +250,6 @@ public boolean onUpdate(int currentTick) { if (this.motionY == 0) { this.motionY = 0.00001; } - - if (!this.fireProof) { // Fix missed collisions - Block block = level.getBlock(this.chunk, this.getFloorX(), this.getFloorY(), this.getFloorZ(), false); - int bid = block.getId(); - if (bid == BlockID.FIRE || bid == BlockID.SOUL_FIRE || bid == BlockID.LAVA || bid == BlockID.STILL_LAVA) { - this.attack(new EntityDamageByBlockEvent(block, this, DamageCause.FIRE, 1)); - } else if (bid == BlockID.CACTUS) { - this.attack(new EntityDamageByBlockEvent(block, this, DamageCause.CONTACT, 1)); - return true; - } - } } // Flowing water diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartAbstract.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartAbstract.java index 012a126c743..8f35cd2db6b 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartAbstract.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartAbstract.java @@ -25,7 +25,6 @@ import cn.nukkit.utils.Rail.Orientation; import java.util.ArrayList; -import java.util.Iterator; import java.util.Objects; /** @@ -119,151 +118,106 @@ public void initEntity() { } @Override - public boolean onUpdate(int currentTick) { - if (this.closed) { - return false; + public boolean entityBaseTick(int tickDiff) { + // The damage token + if (getHealth() < 20) { + setHealth(getHealth() + 1); } - if (!this.isAlive()) { - this.despawnFromAll(); - this.close(); - return false; - } + // Entity variables + lastX = x; + lastY = y; + lastZ = z; + motionY -= 0.04; + int dx = MathHelper.floor(x); + int dy = MathHelper.floor(y); + int dz = MathHelper.floor(z); - int tickDiff = currentTick - this.lastUpdate; - if (tickDiff <= 0 && !this.justCreated) { - return true; + // Some hack to check rails + if (Rail.isRailBlock(level.getBlockIdAt(dx, dy - 1, dz))) { + --dy; } - boolean firstTick = this.justCreated; - - this.minimalEntityTick(currentTick, tickDiff); - - if (isAlive()) { - super.onUpdate(currentTick); - - if (this.closed) { - return false; - } - - // The damage token - if (getHealth() < 20) { - setHealth(getHealth() + 1); - } + Block block = level.getBlock(chunk, dx, dy, dz, true); - // Entity variables - lastX = x; - lastY = y; - lastZ = z; - motionY -= 0.04; - int dx = MathHelper.floor(x); - int dy = MathHelper.floor(y); - int dz = MathHelper.floor(z); - - // Some hack to check rails - if (Rail.isRailBlock(level.getBlockIdAt(dx, dy - 1, dz))) { - --dy; + // Ensure that the block is a rail + if (Rail.isRailBlock(block)) { + processMovement(dx, dy, dz, (BlockRail) block); + // Activate the minecart/TNT + if (block instanceof BlockRailActivator) { + activate(dx, dy, dz, ((BlockRailActivator) block).isActive()); } + } else { + setFalling(); + } - Block block = level.getBlock(chunk, dx, dy, dz, true); - - // Ensure that the block is a rail - if (Rail.isRailBlock(block)) { - processMovement(dx, dy, dz, (BlockRail) block); - // Activate the minecart/TNT - if (block instanceof BlockRailActivator) { - activate(dx, dy, dz, ((BlockRailActivator) block).isActive()); - } - } else { - setFalling(); - } - checkBlockCollision(); - - // Minecart head - pitch = 0; - double diffX = this.lastX - this.x; - double diffZ = this.lastZ - this.z; - double yawToChange = yaw; - if (diffX * diffX + diffZ * diffZ > 0.001D) { - yawToChange = (Math.atan2(diffZ, diffX) * 180 / Math.PI); - } + // Minecart head + pitch = 0; + double diffX = this.lastX - this.x; + double diffZ = this.lastZ - this.z; + double yawToChange = yaw; + if (diffX * diffX + diffZ * diffZ > 0.001D) { + yawToChange = (Math.atan2(diffZ, diffX) * 180 / Math.PI); + } - // Reverse yaw if yaw is below 0 - if (yawToChange < 0) { - // -90-(-90)-(-90) = 90 - yawToChange -= yawToChange - yawToChange; - } + // Reverse yaw if yaw is below 0 + if (yawToChange < 0) { + // -90-(-90)-(-90) = 90 + yawToChange -= yawToChange - yawToChange; + } - setRotation(yawToChange, pitch); + setRotation(yawToChange, pitch); - Location from = new Location(lastX, lastY, lastZ, lastYaw, lastPitch, level); - Location to = new Location(this.x, this.y, this.z, this.yaw, this.pitch, level); + Location from = new Location(lastX, lastY, lastZ, lastYaw, lastPitch, level); + Location to = new Location(this.x, this.y, this.z, this.yaw, this.pitch, level); - this.getServer().getPluginManager().callEvent(new VehicleUpdateEvent(this)); + this.getServer().getPluginManager().callEvent(new VehicleUpdateEvent(this)); - if (!from.equals(to)) { - this.getServer().getPluginManager().callEvent(new VehicleMoveEvent(this, from, to)); - } + if (!from.equals(to)) { + this.getServer().getPluginManager().callEvent(new VehicleMoveEvent(this, from, to)); + } - // Collisions - if (this instanceof InventoryHolder) { - for (cn.nukkit.entity.Entity entity : level.getNearbyEntities(boundingBox.grow(0.2D, 0, 0.2D), this)) { - if (entity instanceof EntityMinecartAbstract && !passengers.contains(entity)) { - entity.applyEntityCollision(this); - } + // Collisions + if (this instanceof InventoryHolder) { + for (Entity entity : level.getNearbyEntities(boundingBox.grow(0.2D, 0, 0.2D), this)) { + if (entity instanceof EntityMinecartAbstract && !passengers.contains(entity)) { + entity.applyEntityCollision(this); } } + } - Iterator linkedIterator = this.passengers.iterator(); - - while (linkedIterator.hasNext()) { - cn.nukkit.entity.Entity linked = linkedIterator.next(); - - if (!linked.isAlive()) { - if (linked.riding == this) { - linked.riding = null; + if (this instanceof InventoryHolder) { + AxisAlignedBB pickupArea = new SimpleAxisAlignedBB(this.x, this.y - 1, this.z, this.x + 1, this.y, this.z + 1); + Block[] hopperPickupArray = this.level.getCollisionBlocks(this, pickupArea, false); + if (hopperPickupArray.length >= 1) { + Block hopper = hopperPickupArray[0]; + if (hopper instanceof BlockHopper) { + BlockEntity hopperBE = hopper.getLevel().getBlockEntityIfLoaded(hopper); + if (hopperBE instanceof BlockEntityHopper) { + ((BlockEntityHopper) hopperBE).setMinecartPickupInventory((InventoryHolder) this); } - - linkedIterator.remove(); } + return true; } - if (this instanceof InventoryHolder) { - AxisAlignedBB pickupArea = new SimpleAxisAlignedBB(this.x, this.y - 1, this.z, this.x + 1, this.y, this.z + 1); - Block[] hopperPickupArray = this.level.getCollisionBlocks(this, pickupArea, false); - if (hopperPickupArray.length >= 1) { - Block hopper = hopperPickupArray[0]; + if (!(this instanceof EntityMinecartHopper)) { + AxisAlignedBB pushArea = new SimpleAxisAlignedBB(this.x, this.y, this.z, this.x + 1, this.y + 2, this.z + 1); + Block[] hopperPushArray = this.level.getCollisionBlocks(this, pushArea, false); + if (hopperPushArray.length >= 1) { + Block hopper = hopperPushArray[0]; if (hopper instanceof BlockHopper) { BlockEntity hopperBE = hopper.getLevel().getBlockEntityIfLoaded(hopper); if (hopperBE instanceof BlockEntityHopper) { - ((BlockEntityHopper) hopperBE).setMinecartPickupInventory((InventoryHolder) this); + ((BlockEntityHopper) hopperBE).setMinecartPushInventory((InventoryHolder) this); } } return true; } - - if (!(this instanceof EntityMinecartHopper)) { - AxisAlignedBB pushArea = new SimpleAxisAlignedBB(this.x, this.y, this.z, this.x + 1, this.y + 2, this.z + 1); - Block[] hopperPushArray = this.level.getCollisionBlocks(this, pushArea, false); - if (hopperPushArray.length >= 1) { - Block hopper = hopperPushArray[0]; - if (hopper instanceof BlockHopper) { - BlockEntity hopperBE = hopper.getLevel().getBlockEntityIfLoaded(hopper); - if (hopperBE instanceof BlockEntityHopper) { - ((BlockEntityHopper) hopperBE).setMinecartPushInventory((InventoryHolder) this); - } - } - return true; - } - } } - - this.updateMovement(); - - return firstTick || this.getRollingAmplitude() > 0 || !this.passengers.isEmpty() || !(this.motionX == 0 && this.motionY == 0 && this.motionZ == 0); } - return false; + // We call super here after movement code so block collision checks use up to date position + return super.entityBaseTick(tickDiff) || this.getRollingAmplitude() > 0 || !(this.motionX == 0 && this.motionY == 0 && this.motionZ == 0); } @Override diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java index 393680f2e1b..31ae0dcd597 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartHopper.java @@ -135,8 +135,10 @@ public void saveNBT() { } @Override - public boolean onUpdate(int currentTick) { - if (super.onUpdate(currentTick) && !this.closed && isAlive()) { + public boolean entityBaseTick(int tickDiff) { + boolean hasUpdate = super.entityBaseTick(tickDiff); + + if (!this.closed && this.isAlive()) { if (this.isOnTransferCooldown()) { this.transferCooldown--; return true; @@ -153,7 +155,8 @@ public boolean onUpdate(int currentTick) { changed = pullItems(blockEntity, block); } else { // Apparently we are 0.5 blocks above the ground - changed = pickupItems(new SimpleAxisAlignedBB(this.x, this.y - 0.5, this.z, this.x + 1, this.y + 1.5, this.z + 1)); + // Hopper minecart can pick up items through is a block + changed = pickupItems(new SimpleAxisAlignedBB(this.x, this.y - 0.5, this.z, this.x + 1, this.y + 2, this.z + 1)); } if (changed) { @@ -163,7 +166,7 @@ public boolean onUpdate(int currentTick) { return true; } - return false; + return hasUpdate; } @Override @@ -246,6 +249,9 @@ private boolean pullItems(BlockEntity blockEntity, Block block) { } } else if (block instanceof BlockComposter) { BlockComposter composter = (BlockComposter) block; + if (!composter.isFull()) { + return false; + } Item item = composter.empty(); if (item == null || item.isNull()) { return false; diff --git a/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java b/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java index 1e1840bb9a6..3d790329287 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java +++ b/src/main/java/cn/nukkit/entity/item/EntityMinecartTNT.java @@ -21,7 +21,7 @@ /** * @author Adam Matthew [larryTheCoder] - * + * * Nukkit Project. */ public class EntityMinecartTNT extends EntityMinecartAbstract implements EntityExplosive { @@ -53,19 +53,17 @@ public void initEntity() { } @Override - public boolean onUpdate(int currentTick) { - if (fuse < 80) { - int tickDiff = currentTick - lastUpdate; - - lastUpdate = currentTick; + public boolean entityBaseTick(int tickDiff) { + boolean hasUpdate = super.entityBaseTick(tickDiff); + if (!this.closed && this.isAlive()) { if (fuse % 5 == 0) { setDataProperty(new IntEntityData(DATA_FUSE_LENGTH, fuse)); } fuse -= tickDiff; - if (isAlive() && fuse <= 0) { + if (fuse <= 0) { if (this.level.getGameRules().getBoolean(GameRule.TNT_EXPLODES)) { this.explode(ThreadLocalRandom.current().nextInt(5)); } @@ -74,7 +72,7 @@ public boolean onUpdate(int currentTick) { } } - return super.onUpdate(currentTick); + return hasUpdate; } @Override @@ -135,7 +133,7 @@ public void saveNBT() { super.namedTag.putInt("TNTFuse", this.fuse); } - + @Override public boolean onInteract(Player player, Item item, Vector3 clickedPos) { if (item.getId() == Item.FLINT_AND_STEEL || item.getId() == Item.FIRE_CHARGE) { diff --git a/src/main/java/cn/nukkit/entity/item/EntityVehicle.java b/src/main/java/cn/nukkit/entity/item/EntityVehicle.java index 40b7542dcfc..c5b6e462490 100644 --- a/src/main/java/cn/nukkit/entity/item/EntityVehicle.java +++ b/src/main/java/cn/nukkit/entity/item/EntityVehicle.java @@ -64,21 +64,12 @@ public boolean canDoInteraction() { } @Override - public boolean onUpdate(int currentTick) { - if (y < (this.getLevel().getMinBlockY() - 16)) { - this.close(); - } - - if (closed) { - return false; - } - + public boolean entityBaseTick(int tickDiff) { if (getRollingAmplitude() > 0) { setRollingAmplitude(getRollingAmplitude() - 1); } - updateMovement(); - return true; + return super.entityBaseTick(tickDiff); } protected boolean rollingDirection = true; @@ -120,4 +111,4 @@ public boolean attack(EntityDamageEvent source) { return super.attack(source); } -} \ No newline at end of file +} diff --git a/src/main/java/cn/nukkit/entity/passive/EntityBee.java b/src/main/java/cn/nukkit/entity/passive/EntityBee.java index 58b59e51069..7dcd1e97c8e 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityBee.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityBee.java @@ -1,11 +1,12 @@ package cn.nukkit.entity.passive; +import cn.nukkit.entity.EntityArthropod; import cn.nukkit.entity.mob.EntityFlyingMob; import cn.nukkit.level.format.FullChunk; import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.utils.Utils; -public class EntityBee extends EntityFlyingMob { +public class EntityBee extends EntityFlyingMob implements EntityArthropod { public static final int NETWORK_ID = 122; diff --git a/src/main/java/cn/nukkit/entity/passive/EntityIronGolem.java b/src/main/java/cn/nukkit/entity/passive/EntityIronGolem.java index 746b1ec2aa5..4fa41b4c1b7 100644 --- a/src/main/java/cn/nukkit/entity/passive/EntityIronGolem.java +++ b/src/main/java/cn/nukkit/entity/passive/EntityIronGolem.java @@ -5,8 +5,11 @@ import cn.nukkit.entity.Attribute; import cn.nukkit.entity.mob.EntityWalkingMob; import cn.nukkit.item.Item; +import cn.nukkit.item.ItemID; import cn.nukkit.level.format.FullChunk; +import cn.nukkit.math.Vector3; import cn.nukkit.nbt.tag.CompoundTag; +import cn.nukkit.network.protocol.LevelSoundEventPacket; import cn.nukkit.network.protocol.UpdateAttributesPacket; import cn.nukkit.utils.Utils; @@ -91,4 +94,14 @@ private void sendHealth() { Server.broadcastPacket(this.getViewers().values(), pk); } } + + @Override + public boolean onInteract(Player player, Item item, Vector3 clickedPos) { + if (item.getId() == ItemID.IRON_INGOT && this.health < this.getRealMaxHealth() && this.isAlive()) { + this.heal(25f); + this.level.addLevelSoundEvent(this, LevelSoundEventPacket.SOUND_REPAIR_IRON_GOLEM); + return true; // onInteract: true = decrease count + } + return super.onInteract(player, item, clickedPos); + } } diff --git a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java index 96d71efd59d..1d33c62dd4d 100644 --- a/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java +++ b/src/main/java/cn/nukkit/entity/projectile/EntityProjectile.java @@ -15,6 +15,7 @@ import cn.nukkit.math.NukkitMath; import cn.nukkit.math.Vector3; import cn.nukkit.nbt.tag.CompoundTag; +import lombok.Getter; import java.util.concurrent.ThreadLocalRandom; @@ -53,6 +54,9 @@ public abstract class EntityProjectile extends Entity { */ public float knockBack = 0.3f; + @Getter + protected int collidedTick; + protected double getDamage() { return namedTag.contains("damage") ? namedTag.getDouble("damage") : getBaseDamage(); } @@ -286,6 +290,7 @@ protected void onHit() { } protected void onHitGround(Vector3 moveVector) { + this.collidedTick = level.getServer().getTick(); Block block = level.getBlock(this.chunk, moveVector.getFloorX(), moveVector.getFloorY(), moveVector.getFloorZ(), false); block.onEntityCollide(this); } diff --git a/src/main/java/cn/nukkit/form/element/ElementButton.java b/src/main/java/cn/nukkit/form/element/ElementButton.java index 9126cc1ec5d..ff90b104a01 100644 --- a/src/main/java/cn/nukkit/form/element/ElementButton.java +++ b/src/main/java/cn/nukkit/form/element/ElementButton.java @@ -1,7 +1,9 @@ package cn.nukkit.form.element; -public class ElementButton { +public class ElementButton implements SimpleElement { + @SuppressWarnings("unused") + private final String type = "button"; private String text = ""; private ElementButtonImageData image; diff --git a/src/main/java/cn/nukkit/form/element/ElementDivider.java b/src/main/java/cn/nukkit/form/element/ElementDivider.java new file mode 100644 index 00000000000..845470073a6 --- /dev/null +++ b/src/main/java/cn/nukkit/form/element/ElementDivider.java @@ -0,0 +1,24 @@ +package cn.nukkit.form.element; + +import lombok.Getter; +import lombok.Setter; + +public class ElementDivider extends Element implements SimpleElement { + + @SuppressWarnings("unused") + private final String type = "divider"; + @Getter + @Setter + private String text = ""; + + /** + * Element divider (1.21.70+) + */ + public ElementDivider() { + this(""); + } + + public ElementDivider(String text) { + this.text = text; + } +} diff --git a/src/main/java/cn/nukkit/form/element/ElementHeader.java b/src/main/java/cn/nukkit/form/element/ElementHeader.java new file mode 100644 index 00000000000..58be62be016 --- /dev/null +++ b/src/main/java/cn/nukkit/form/element/ElementHeader.java @@ -0,0 +1,20 @@ +package cn.nukkit.form.element; + +import lombok.Getter; +import lombok.Setter; + +public class ElementHeader extends Element implements SimpleElement { + + @SuppressWarnings("unused") + private final String type = "header"; + @Getter + @Setter + private String text = ""; + + /** + * Text header (1.21.70+) + */ + public ElementHeader(String text) { + this.text = text; + } +} diff --git a/src/main/java/cn/nukkit/form/element/ElementLabel.java b/src/main/java/cn/nukkit/form/element/ElementLabel.java index a14a322cc3a..394ba69d816 100644 --- a/src/main/java/cn/nukkit/form/element/ElementLabel.java +++ b/src/main/java/cn/nukkit/form/element/ElementLabel.java @@ -1,6 +1,6 @@ package cn.nukkit.form.element; -public class ElementLabel extends Element { +public class ElementLabel extends Element implements SimpleElement { @SuppressWarnings("unused") private final String type = "label"; //This variable is used for JSON import operations. Do NOT delete :) -- @Snake1999 diff --git a/src/main/java/cn/nukkit/form/element/SimpleElement.java b/src/main/java/cn/nukkit/form/element/SimpleElement.java new file mode 100644 index 00000000000..268294d952e --- /dev/null +++ b/src/main/java/cn/nukkit/form/element/SimpleElement.java @@ -0,0 +1,7 @@ +package cn.nukkit.form.element; + +/** + * An element which can be added to FormWindowSimple + */ +public interface SimpleElement { +} diff --git a/src/main/java/cn/nukkit/form/response/FormResponseCustom.java b/src/main/java/cn/nukkit/form/response/FormResponseCustom.java index da0d2f4e3cf..19d14356654 100644 --- a/src/main/java/cn/nukkit/form/response/FormResponseCustom.java +++ b/src/main/java/cn/nukkit/form/response/FormResponseCustom.java @@ -11,12 +11,26 @@ public class FormResponseCustom extends FormResponse { private final HashMap stepSliderResponses; private final HashMap toggleResponses; private final HashMap labelResponses; + private final HashMap headerResponses; + private final HashMap dividerResponses; + @Deprecated public FormResponseCustom(HashMap responses, HashMap dropdownResponses, HashMap inputResponses, HashMap sliderResponses, HashMap stepSliderResponses, HashMap toggleResponses, HashMap labelResponses) { + this(responses, dropdownResponses, inputResponses, sliderResponses, stepSliderResponses, toggleResponses, + labelResponses, new HashMap<>(0), new HashMap<>(0)); + } + + public FormResponseCustom(HashMap responses, HashMap dropdownResponses, + HashMap inputResponses, HashMap sliderResponses, + HashMap stepSliderResponses, + HashMap toggleResponses, + HashMap labelResponses, + HashMap headerResponses, + HashMap dividerResponses) { this.responses = responses; this.dropdownResponses = dropdownResponses; this.inputResponses = inputResponses; @@ -24,6 +38,8 @@ public FormResponseCustom(HashMap responses, HashMap getResponses() { @@ -57,4 +73,12 @@ public boolean getToggleResponse(int id) { public String getLabelResponse(int id) { return labelResponses.get(id); } + + public String getHeaderResponse(int id) { + return headerResponses.get(id); + } + + public String getDividerResponses(int id) { + return dividerResponses.get(id); + } } diff --git a/src/main/java/cn/nukkit/form/window/FormWindowCustom.java b/src/main/java/cn/nukkit/form/window/FormWindowCustom.java index 756b16eaab4..4b4633f97c8 100644 --- a/src/main/java/cn/nukkit/form/window/FormWindowCustom.java +++ b/src/main/java/cn/nukkit/form/window/FormWindowCustom.java @@ -78,8 +78,6 @@ public void setResponse(String data) { List elementResponses = GSON.fromJson(data, new ListTypeToken().getType()); - int i = 0; - HashMap dropdownResponses = new HashMap<>(); HashMap inputResponses = new HashMap<>(); HashMap sliderResponses = new HashMap<>(); @@ -87,42 +85,53 @@ public void setResponse(String data) { HashMap toggleResponses = new HashMap<>(); HashMap responses = new HashMap<>(); HashMap labelResponses = new HashMap<>(); + HashMap headerResponses = new HashMap<>(); + HashMap dividerResponses = new HashMap<>(); - for (String elementData : elementResponses) { - if (i >= content.size()) { - break; - } - + int responseIndex = 0; + for (int i = 0; i < content.size(); i++) { Element e = content.get(i); - if (e == null) break; + String elementData = responseIndex >= elementResponses.size() ? "" : elementResponses.get(responseIndex); if (e instanceof ElementLabel) { labelResponses.put(i, ((ElementLabel) e).getText()); responses.put(i, ((ElementLabel) e).getText()); } else if (e instanceof ElementDropdown) { - String answer = ((ElementDropdown) e).getOptions().get(Integer.parseInt(elementData)); - dropdownResponses.put(i, new FormResponseData(Integer.parseInt(elementData), answer)); + int index = Integer.parseInt(elementData); + String answer = ((ElementDropdown) e).getOptions().get(index); + dropdownResponses.put(i, new FormResponseData(index, answer)); responses.put(i, answer); + responseIndex++; } else if (e instanceof ElementInput) { inputResponses.put(i, elementData); responses.put(i, elementData); + responseIndex++; } else if (e instanceof ElementSlider) { Float answer = Float.parseFloat(elementData); sliderResponses.put(i, answer); responses.put(i, answer); + responseIndex++; } else if (e instanceof ElementStepSlider) { - String answer = ((ElementStepSlider) e).getSteps().get(Integer.parseInt(elementData)); - stepSliderResponses.put(i, new FormResponseData(Integer.parseInt(elementData), answer)); + int index = Integer.parseInt(elementData); + String answer = ((ElementStepSlider) e).getSteps().get(index); + stepSliderResponses.put(i, new FormResponseData(index, answer)); responses.put(i, answer); + responseIndex++; } else if (e instanceof ElementToggle) { Boolean answer = Boolean.parseBoolean(elementData); toggleResponses.put(i, answer); responses.put(i, answer); + responseIndex++; + } else if (e instanceof ElementHeader) { + headerResponses.put(i, ((ElementHeader) e).getText()); + responses.put(i, ((ElementHeader) e).getText()); + } else if (e instanceof ElementDivider) { + dividerResponses.put(i, ((ElementDivider) e).getText()); + responses.put(i, ((ElementDivider) e).getText()); } - i++; } this.response = new FormResponseCustom(responses, dropdownResponses, inputResponses, - sliderResponses, stepSliderResponses, toggleResponses, labelResponses); + sliderResponses, stepSliderResponses, toggleResponses, labelResponses, headerResponses, dividerResponses); } /** diff --git a/src/main/java/cn/nukkit/form/window/FormWindowSimple.java b/src/main/java/cn/nukkit/form/window/FormWindowSimple.java index 0b4e63f73f7..b5c932608b0 100644 --- a/src/main/java/cn/nukkit/form/window/FormWindowSimple.java +++ b/src/main/java/cn/nukkit/form/window/FormWindowSimple.java @@ -1,6 +1,7 @@ package cn.nukkit.form.window; import cn.nukkit.form.element.ElementButton; +import cn.nukkit.form.element.SimpleElement; import cn.nukkit.form.response.FormResponseSimple; import java.util.ArrayList; @@ -13,7 +14,9 @@ public class FormWindowSimple extends FormWindow { private String title = ""; private String content = ""; @SuppressWarnings("FieldMayBeFinal") - private List buttons; + private transient List buttons; + @SuppressWarnings("FieldMayBeFinal") + private List elements; private FormResponseSimple response = null; @@ -22,9 +25,14 @@ public FormWindowSimple(String title, String content) { } public FormWindowSimple(String title, String content, List buttons) { + this(title, content, buttons, new ArrayList<>(buttons)); + } + + public FormWindowSimple(String title, String content, List buttons, List elements) { this.title = title; this.content = content; this.buttons = buttons; + this.elements = elements; } public String getTitle() { @@ -49,6 +57,18 @@ public List getButtons() { public void addButton(ElementButton button) { this.buttons.add(button); + this.elements.add(button); + } + + public List getElements() { + return elements; + } + + public void addElement(SimpleElement element) { + if (element instanceof ElementButton) { + this.buttons.add((ElementButton) element); + } + this.elements.add(element); } public FormResponseSimple getResponse() { diff --git a/src/main/java/cn/nukkit/item/Item.java b/src/main/java/cn/nukkit/item/Item.java index ed2d8e6ae82..092151c4d96 100644 --- a/src/main/java/cn/nukkit/item/Item.java +++ b/src/main/java/cn/nukkit/item/Item.java @@ -424,11 +424,11 @@ public static void initCreativeItems() { for (JsonElement element : itemsArray) { JsonObject creativeItem = element.getAsJsonObject(); - CreativeItemGroup creativeGroup = CREATIVE_ITEMS.getGroups().get(creativeItem.get("groupId").getAsInt()); - Item item = mapping.parseCreativeItem(creativeItem, true); + + // Add only implemented items if (item != null && !item.getName().equals(UNKNOWN_STR)) { - // Add only implemented items + CreativeItemGroup creativeGroup = CREATIVE_ITEMS.getGroups().get(creativeItem.get("groupId").getAsInt()); CREATIVE_ITEMS.add(item, creativeGroup); } } diff --git a/src/main/java/cn/nukkit/item/ItemHoneyBottle.java b/src/main/java/cn/nukkit/item/ItemHoneyBottle.java index 7ff6c2e145e..e0a43272703 100644 --- a/src/main/java/cn/nukkit/item/ItemHoneyBottle.java +++ b/src/main/java/cn/nukkit/item/ItemHoneyBottle.java @@ -2,6 +2,7 @@ import cn.nukkit.Player; import cn.nukkit.event.entity.EntityPotionEffectEvent; +import cn.nukkit.math.Vector3; import cn.nukkit.potion.Effect; /** @@ -26,13 +27,17 @@ public int getMaxStackSize() { return 16; } + @Override + public boolean onClickAir(Player player, Vector3 directionVector) { + return true; + } + @Override public boolean onUse(Player player, int ticksUsed) { if (super.onUse(player, ticksUsed)) { player.removeEffect(Effect.POISON, EntityPotionEffectEvent.Cause.FOOD); if (!player.isCreative()) { - this.count--; player.getInventory().addItem(Item.get(Item.BOTTLE, 0, 1)); } } diff --git a/src/main/java/cn/nukkit/item/ProjectileItem.java b/src/main/java/cn/nukkit/item/ProjectileItem.java index bdcc4a30090..b5415ad2aeb 100644 --- a/src/main/java/cn/nukkit/item/ProjectileItem.java +++ b/src/main/java/cn/nukkit/item/ProjectileItem.java @@ -7,9 +7,7 @@ import cn.nukkit.entity.projectile.EntityProjectile; import cn.nukkit.event.entity.ProjectileLaunchEvent; import cn.nukkit.level.Level; -import cn.nukkit.level.Position; import cn.nukkit.math.Vector3; -import cn.nukkit.math.Vector3f; import cn.nukkit.nbt.tag.CompoundTag; import cn.nukkit.nbt.tag.DoubleTag; import cn.nukkit.nbt.tag.FloatTag; @@ -30,8 +28,19 @@ public ProjectileItem(int id, Integer meta, int count, String name) { abstract public float getThrowForce(); public boolean onClickAir(Player player, Vector3 directionVector) { - if (this instanceof ItemEnderEye && player.getLevel().getDimension() != Level.DIMENSION_OVERWORLD) { - return false; + Vector3 motion; + + if (this instanceof ItemEnderEye) { + if (player.getLevel().getDimension() != Level.DIMENSION_OVERWORLD) { + return false; + } + + Vector3 vector = player // TODO: Stronghold position here. Meanwhile you can set custom motion in ProjectileLaunchEvent. + .subtract(player).normalize(); + vector.y = 0.55f; + motion = vector.divide(this.getThrowForce()); + } else { + motion = directionVector.multiply(this.getThrowForce()); } CompoundTag nbt = new CompoundTag() @@ -40,9 +49,9 @@ public boolean onClickAir(Player player, Vector3 directionVector) { .add(new DoubleTag("", player.y + player.getEyeHeight())) .add(new DoubleTag("", player.z))) .putList(new ListTag("Motion") - .add(new DoubleTag("", directionVector.x)) - .add(new DoubleTag("", directionVector.y)) - .add(new DoubleTag("", directionVector.z))) + .add(new DoubleTag("", motion.x)) + .add(new DoubleTag("", motion.y)) + .add(new DoubleTag("", motion.z))) .putList(new ListTag("Rotation") .add(new FloatTag("", (float) player.yaw)) .add(new FloatTag("", (float) player.pitch))); @@ -50,7 +59,7 @@ public boolean onClickAir(Player player, Vector3 directionVector) { this.correctNBT(nbt); Entity projectile = Entity.createEntity(this.getProjectileEntityType(), player.getLevel().getChunk(player.getChunkX(), player.getChunkZ()), nbt, player); - if (projectile != null) { + if (projectile instanceof EntityProjectile) { if (projectile instanceof EntityEnderPearl || projectile instanceof EntityEnderEye) { if (player.getServer().getTick() - player.getLastEnderPearlThrowingTick() < 20) { projectile.close(); @@ -58,48 +67,21 @@ public boolean onClickAir(Player player, Vector3 directionVector) { } } - if (projectile instanceof EntityEnderEye) { - if (player.getServer().getTick() - player.getLastEnderPearlThrowingTick() < 20) { - projectile.close(); - return false; - } - - Position strongholdPosition = this.getStrongholdPosition(player); - if (strongholdPosition == null) { - projectile.close(); - return false; - } - - Vector3f vector = strongholdPosition - .subtract(player.getPosition()) - .asVector3f() - .normalize() - .multiply(1f); + ProjectileLaunchEvent ev = new ProjectileLaunchEvent((EntityProjectile) projectile); - vector.y = 0.55f; + player.getServer().getPluginManager().callEvent(ev); - projectile.setMotion(vector.asVector3().divide(this.getThrowForce())); + if (ev.isCancelled()) { + projectile.close(); } else { - projectile.setMotion(projectile.getMotion().multiply(this.getThrowForce())); - } - - if (projectile instanceof EntityProjectile) { - ProjectileLaunchEvent ev = new ProjectileLaunchEvent((EntityProjectile) projectile); - - player.getServer().getPluginManager().callEvent(ev); - - if (ev.isCancelled()) { - projectile.close(); - } else { - if (!player.isCreative()) { - this.count--; - } - if (projectile instanceof EntityEnderPearl || projectile instanceof EntityEnderEye) { - player.onThrowEnderPearl(); - } - projectile.spawnToAll(); - player.getLevel().addLevelSoundEvent(player, LevelSoundEventPacket.SOUND_BOW); + if (!player.isCreative()) { + this.count--; + } + if (projectile instanceof EntityEnderPearl || projectile instanceof EntityEnderEye) { + player.onThrowEnderPearl(); } + projectile.spawnToAll(); + player.getLevel().addLevelSoundEvent(player, LevelSoundEventPacket.SOUND_BOW); } } @@ -108,8 +90,4 @@ public boolean onClickAir(Player player, Vector3 directionVector) { protected void correctNBT(CompoundTag nbt) { } - - private Position getStrongholdPosition(Player p) { - return p.level.getDimension() == Level.DIMENSION_OVERWORLD ? p : null; // TODO - } } diff --git a/src/main/java/cn/nukkit/item/RuntimeItems.java b/src/main/java/cn/nukkit/item/RuntimeItems.java index 944ba5cea0b..eae643f5e47 100644 --- a/src/main/java/cn/nukkit/item/RuntimeItems.java +++ b/src/main/java/cn/nukkit/item/RuntimeItems.java @@ -38,19 +38,12 @@ public static void init() { JsonObject itemMapping = Utils.loadJsonResource("item_mappings.json").getAsJsonObject(); Map mappingEntries = latestIdentifierMapping; // keep it same with master - Map mappingEntriesLegacy = new HashMap<>(); for (String legacyName : itemMapping.keySet()) { JsonObject convertData = itemMapping.getAsJsonObject(legacyName); - boolean isLegacyStone = "minecraft:stone".equals(legacyName); - for (String damageStr : convertData.keySet()) { String identifier = convertData.get(damageStr).getAsString(); int damage = Integer.parseInt(damageStr); mappingEntries.put(identifier, new MappingEntry(legacyName, damage)); - - if (!isLegacyStone) { - mappingEntriesLegacy.put(identifier, new MappingEntry(legacyName, damage)); - } } } diff --git a/src/main/java/cn/nukkit/level/Level.java b/src/main/java/cn/nukkit/level/Level.java index 64366d28765..54d0edb503b 100644 --- a/src/main/java/cn/nukkit/level/Level.java +++ b/src/main/java/cn/nukkit/level/Level.java @@ -1516,7 +1516,7 @@ public AxisAlignedBB[] getCollisionCubes(Entity entity, AxisAlignedBB bb, boolea if (entities || solidEntities) { for (Entity ent : this.getCollidingEntities(bb.grow(0.25f, 0.25f, 0.25f), entity)) { - if (solidEntities && !ent.canPassThrough()) { + if (solidEntities || !ent.canPassThrough()) { collides.add(ent.boundingBox.clone()); } } @@ -2149,12 +2149,6 @@ public Item useBreakOn(Vector3 vector, BlockFace face, Item item, Player player, drops = target.getDrops(item); } - Vector3 above = new Vector3(target.x, target.y + 1, target.z); - int bid = this.getBlockIdAt((int) above.x, (int) above.y, (int) above.z); - if (bid == Item.FIRE || bid == Item.SOUL_FIRE) { - this.setBlock(above, Block.get(BlockID.AIR), true); - } - if (createParticles) { this.addParticle(new DestroyBlockParticle(target.add(0.5), target)); } @@ -2289,8 +2283,9 @@ public Item useItemOn(Vector3 vector, Item item, BlockFace face, float fx, float if (item.canBeActivated()) { int oldCount = item.getCount(); + int oldDamage = item.getDamage(); if (item.onActivate(this, player, block, target, face, fx, fy, fz)) { - if (oldCount != item.getCount()) { + if (oldCount != item.getCount() || oldDamage != item.getDamage()) { if (item.getCount() <= 0) { item = new ItemBlock(Block.get(BlockID.AIR), 0, 0); } diff --git a/src/main/java/cn/nukkit/level/biome/impl/extremehills/ExtremeHillsBiome.java b/src/main/java/cn/nukkit/level/biome/impl/extremehills/ExtremeHillsBiome.java index 4d224e4959f..8ec22f5b469 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/extremehills/ExtremeHillsBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/extremehills/ExtremeHillsBiome.java @@ -1,10 +1,12 @@ package cn.nukkit.level.biome.impl.extremehills; import cn.nukkit.block.Block; +import cn.nukkit.block.BlockFlower; import cn.nukkit.block.BlockID; import cn.nukkit.block.BlockSapling; import cn.nukkit.level.biome.type.GrassyBiome; import cn.nukkit.level.generator.object.ore.OreType; +import cn.nukkit.level.generator.populator.impl.PopulatorFlower; import cn.nukkit.level.generator.populator.impl.PopulatorOre; import cn.nukkit.level.generator.populator.impl.PopulatorTree; @@ -36,6 +38,12 @@ public ExtremeHillsBiome(boolean tree) { new OreType(Block.get(BlockID.MONSTER_EGG), 7, 9, 0, 63) })); + PopulatorFlower flower = new PopulatorFlower(); + flower.setRandomAmount(3); + flower.addType(DANDELION, 0); + flower.addType(RED_FLOWER, BlockFlower.TYPE_POPPY); + this.addPopulator(flower); + this.setBaseHeight(1f); this.setHeightVariation(0.5f); } diff --git a/src/main/java/cn/nukkit/level/biome/impl/forest/FlowerForestBiome.java b/src/main/java/cn/nukkit/level/biome/impl/forest/FlowerForestBiome.java index 3fc819f38eb..acd9755c9cd 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/forest/FlowerForestBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/forest/FlowerForestBiome.java @@ -16,11 +16,10 @@ public FlowerForestBiome() { public FlowerForestBiome(int type) { super(type); - //see https://minecraft.gamepedia.com/Flower#Flower_biomes + //https://minecraft.wiki/w/Flower#Natural_generation PopulatorFlower flower = new PopulatorFlower(); flower.setBaseAmount(10); flower.setRandomAmount(10); - flower.addType(DANDELION, 0); flower.addType(RED_FLOWER, BlockFlower.TYPE_POPPY); flower.addType(RED_FLOWER, BlockFlower.TYPE_ALLIUM); flower.addType(RED_FLOWER, BlockFlower.TYPE_AZURE_BLUET); diff --git a/src/main/java/cn/nukkit/level/biome/impl/forest/ForestBiome.java b/src/main/java/cn/nukkit/level/biome/impl/forest/ForestBiome.java index 6336c315532..316868edbf3 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/forest/ForestBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/forest/ForestBiome.java @@ -1,8 +1,11 @@ package cn.nukkit.level.biome.impl.forest; +import cn.nukkit.block.BlockDoublePlant; +import cn.nukkit.block.BlockFlower; import cn.nukkit.block.BlockSapling; import cn.nukkit.level.biome.type.GrassyBiome; import cn.nukkit.level.generator.populator.impl.PopulatorFallenTree; +import cn.nukkit.level.generator.populator.impl.PopulatorFlower; import cn.nukkit.level.generator.populator.impl.PopulatorTree; /** @@ -41,6 +44,18 @@ public ForestBiome(int type) { PopulatorFallenTree fallenTree = new PopulatorFallenTree(); fallenTree.setType(type); this.addPopulator(fallenTree); + + if (!(this instanceof FlowerForestBiome)) { + PopulatorFlower flower = new PopulatorFlower(); + flower.setRandomAmount(3); + flower.addType(DANDELION, 0); + flower.addType(RED_FLOWER, BlockFlower.TYPE_POPPY); + flower.addType(RED_FLOWER, BlockFlower.TYPE_LILY_OF_THE_VALLEY); + flower.addType(DOUBLE_PLANT, BlockDoublePlant.LILAC); + flower.addType(DOUBLE_PLANT, BlockDoublePlant.ROSE_BUSH); + flower.addType(DOUBLE_PLANT, BlockDoublePlant.PEONY); + this.addPopulator(flower); + } } @Override diff --git a/src/main/java/cn/nukkit/level/biome/impl/jungle/JungleBiome.java b/src/main/java/cn/nukkit/level/biome/impl/jungle/JungleBiome.java index 40ebee75dfd..ad87c0a6868 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/jungle/JungleBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/jungle/JungleBiome.java @@ -1,7 +1,9 @@ package cn.nukkit.level.biome.impl.jungle; +import cn.nukkit.block.BlockFlower; import cn.nukkit.level.biome.type.GrassyBiome; import cn.nukkit.level.generator.populator.impl.PopulatorBamboo; +import cn.nukkit.level.generator.populator.impl.PopulatorFlower; import cn.nukkit.level.generator.populator.impl.PopulatorMelon; import cn.nukkit.level.generator.populator.impl.tree.JungleBigTreePopulator; import cn.nukkit.level.generator.populator.impl.tree.JungleTreePopulator; @@ -30,6 +32,12 @@ public JungleBiome() { PopulatorBamboo bamboo = new PopulatorBamboo(); bamboo.setRandomAmount(2); this.addPopulator(bamboo); + + PopulatorFlower flower = new PopulatorFlower(); + flower.setRandomAmount(3); + flower.addType(DANDELION, 0); + flower.addType(RED_FLOWER, BlockFlower.TYPE_POPPY); + this.addPopulator(flower); } @Override diff --git a/src/main/java/cn/nukkit/level/biome/impl/plains/PlainsBiome.java b/src/main/java/cn/nukkit/level/biome/impl/plains/PlainsBiome.java index ecfca50ae9b..04fb5d91f0f 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/plains/PlainsBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/plains/PlainsBiome.java @@ -1,7 +1,10 @@ package cn.nukkit.level.biome.impl.plains; +import cn.nukkit.block.BlockDoublePlant; +import cn.nukkit.block.BlockFlower; import cn.nukkit.block.BlockSapling; import cn.nukkit.level.biome.type.GrassyBiome; +import cn.nukkit.level.generator.populator.impl.PopulatorFlower; import cn.nukkit.level.generator.populator.impl.PopulatorPumpkin; import cn.nukkit.level.generator.populator.impl.PopulatorTree; @@ -20,6 +23,20 @@ public PlainsBiome() { this.addPopulator(new PopulatorPumpkin()); + PopulatorFlower flower = new PopulatorFlower(); + flower.setRandomAmount(3); + flower.addType(DANDELION, 0); + flower.addType(RED_FLOWER, BlockFlower.TYPE_POPPY); + flower.addType(RED_FLOWER, BlockFlower.TYPE_AZURE_BLUET); + flower.addType(RED_FLOWER, BlockFlower.TYPE_RED_TULIP); + flower.addType(RED_FLOWER, BlockFlower.TYPE_ORANGE_TULIP); + flower.addType(RED_FLOWER, BlockFlower.TYPE_WHITE_TULIP); + flower.addType(RED_FLOWER, BlockFlower.TYPE_PINK_TULIP); + flower.addType(RED_FLOWER, BlockFlower.TYPE_OXEYE_DAISY); + flower.addType(RED_FLOWER, BlockFlower.TYPE_CORNFLOWER); + flower.addType(DOUBLE_PLANT, BlockDoublePlant.LILAC); + this.addPopulator(flower); + this.setBaseHeight(0.125f); this.setHeightVariation(0.05f); } diff --git a/src/main/java/cn/nukkit/level/biome/impl/plains/SunflowerPlainsBiome.java b/src/main/java/cn/nukkit/level/biome/impl/plains/SunflowerPlainsBiome.java index 73e0c3d26f8..b8ece125a71 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/plains/SunflowerPlainsBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/plains/SunflowerPlainsBiome.java @@ -1,9 +1,11 @@ package cn.nukkit.level.biome.impl.plains; import cn.nukkit.block.BlockDoublePlant; +import cn.nukkit.block.BlockFlower; import cn.nukkit.block.BlockSapling; import cn.nukkit.level.biome.type.GrassyBiome; import cn.nukkit.level.generator.populator.impl.PopulatorDoublePlant; +import cn.nukkit.level.generator.populator.impl.PopulatorFlower; import cn.nukkit.level.generator.populator.impl.PopulatorTree; /** @@ -24,6 +26,20 @@ public SunflowerPlainsBiome() { sunflower.setRandomAmount(5); this.addPopulator(sunflower); + PopulatorFlower flower = new PopulatorFlower(); + flower.setRandomAmount(3); + flower.addType(DANDELION, 0); + flower.addType(RED_FLOWER, BlockFlower.TYPE_POPPY); + flower.addType(RED_FLOWER, BlockFlower.TYPE_AZURE_BLUET); + flower.addType(RED_FLOWER, BlockFlower.TYPE_RED_TULIP); + flower.addType(RED_FLOWER, BlockFlower.TYPE_ORANGE_TULIP); + flower.addType(RED_FLOWER, BlockFlower.TYPE_WHITE_TULIP); + flower.addType(RED_FLOWER, BlockFlower.TYPE_PINK_TULIP); + flower.addType(RED_FLOWER, BlockFlower.TYPE_OXEYE_DAISY); + flower.addType(RED_FLOWER, BlockFlower.TYPE_CORNFLOWER); + flower.addType(DOUBLE_PLANT, BlockDoublePlant.LILAC); + this.addPopulator(flower); + this.setBaseHeight(0.125f); this.setHeightVariation(0.05f); } diff --git a/src/main/java/cn/nukkit/level/biome/impl/savanna/SavannaBiome.java b/src/main/java/cn/nukkit/level/biome/impl/savanna/SavannaBiome.java index 8edf451c168..dab36233218 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/savanna/SavannaBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/savanna/SavannaBiome.java @@ -1,5 +1,6 @@ package cn.nukkit.level.biome.impl.savanna; +import cn.nukkit.block.BlockFlower; import cn.nukkit.block.BlockSapling; import cn.nukkit.level.biome.type.GrassyBiome; import cn.nukkit.level.generator.populator.impl.PopulatorFlower; @@ -18,7 +19,9 @@ public SavannaBiome() { this.addPopulator(tree); PopulatorFlower flower = new PopulatorFlower(); - flower.setBaseAmount(2); + flower.setRandomAmount(3); + flower.addType(DANDELION, 0); + flower.addType(RED_FLOWER, BlockFlower.TYPE_POPPY); this.addPopulator(flower); this.setBaseHeight(0.125f); diff --git a/src/main/java/cn/nukkit/level/biome/impl/taiga/TaigaBiome.java b/src/main/java/cn/nukkit/level/biome/impl/taiga/TaigaBiome.java index 99edf9764ac..c94239edcdf 100644 --- a/src/main/java/cn/nukkit/level/biome/impl/taiga/TaigaBiome.java +++ b/src/main/java/cn/nukkit/level/biome/impl/taiga/TaigaBiome.java @@ -1,10 +1,12 @@ package cn.nukkit.level.biome.impl.taiga; import cn.nukkit.block.BlockDoublePlant; +import cn.nukkit.block.BlockFlower; import cn.nukkit.block.BlockSapling; import cn.nukkit.level.biome.type.GrassyBiome; import cn.nukkit.level.generator.object.tree.ObjectTree; import cn.nukkit.level.generator.populator.impl.PopulatorDoublePlant; +import cn.nukkit.level.generator.populator.impl.PopulatorFlower; import cn.nukkit.level.generator.populator.impl.PopulatorSweetBerryBush; import cn.nukkit.level.generator.populator.impl.PopulatorTree; @@ -30,6 +32,12 @@ public TaigaBiome() { this.addPopulator(bush); } + PopulatorFlower flower = new PopulatorFlower(); + flower.setRandomAmount(3); + flower.addType(DANDELION, 0); + flower.addType(RED_FLOWER, BlockFlower.TYPE_POPPY); + this.addPopulator(flower); + this.setBaseHeight(0.2f); this.setHeightVariation(0.2f); } diff --git a/src/main/java/cn/nukkit/level/particle/Particle.java b/src/main/java/cn/nukkit/level/particle/Particle.java index 05fc21bf048..4e7530d2d0f 100644 --- a/src/main/java/cn/nukkit/level/particle/Particle.java +++ b/src/main/java/cn/nukkit/level/particle/Particle.java @@ -104,6 +104,10 @@ public abstract class Particle extends Vector3 { public static final int TYPE_WIND_EXPLOSION = 91; public static final int TYPE_WOLF_ARMOR_BREAK = 92; public static final int TYPE_OMINOUS_ITEM_SPAWNER = 93; + public static final int TYPE_CREAKING_CRUMBLE = 94; + public static final int TYPE_PALE_OAK_LEAVES = 95; + public static final int TYPE_EYEBLOSSOM_OPEN = 96; + public static final int TYPE_EYEBLOSSOM_CLOSE = 97; public Particle() { super(0, 0, 0); diff --git a/src/main/java/cn/nukkit/nbt/stream/PGZIPOutputStream.java b/src/main/java/cn/nukkit/nbt/stream/PGZIPOutputStream.java index 15096b1741c..cd8afdca709 100644 --- a/src/main/java/cn/nukkit/nbt/stream/PGZIPOutputStream.java +++ b/src/main/java/cn/nukkit/nbt/stream/PGZIPOutputStream.java @@ -67,7 +67,7 @@ public PGZIPOutputStream(OutputStream out, ExecutorService executor, int nthread super(out); this.executor = executor; this.nthreads = nthreads; - this.emitQueue = new ArrayBlockingQueue>(nthreads); + this.emitQueue = new ArrayBlockingQueue<>(nthreads); writeHeader(); } diff --git a/src/main/java/cn/nukkit/network/protocol/InventoryTransactionPacket.java b/src/main/java/cn/nukkit/network/protocol/InventoryTransactionPacket.java index 7af1b5aae7e..0504a8fee9e 100644 --- a/src/main/java/cn/nukkit/network/protocol/InventoryTransactionPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/InventoryTransactionPacket.java @@ -57,57 +57,7 @@ public byte pid() { @Override public void encode() { - this.reset(); - - this.putVarInt(this.legacyRequestId); - - this.putUnsignedVarInt(this.transactionType); - this.putBoolean(this.hasNetworkIds); - this.putUnsignedVarInt(this.actions.length); - - for (NetworkInventoryAction action : this.actions) { - action.write(this); - } - - switch (this.transactionType) { - case TYPE_NORMAL: - case TYPE_MISMATCH: - break; - case TYPE_USE_ITEM: - UseItemData useItemData = (UseItemData) this.transactionData; - - this.putUnsignedVarInt(useItemData.actionType); - this.putUnsignedVarInt(useItemData.triggerType); - this.putBlockVector3(useItemData.blockPos); - this.putBlockFace(useItemData.face); - this.putVarInt(useItemData.hotbarSlot); - this.putSlot(useItemData.itemInHand); - this.putVector3f(useItemData.playerPos.asVector3f()); - this.putVector3f(useItemData.clickPos); - this.putUnsignedVarInt(useItemData.blockRuntimeId); - this.putUnsignedVarInt(useItemData.clientInteractPrediction); - break; - case TYPE_USE_ITEM_ON_ENTITY: - UseItemOnEntityData useItemOnEntityData = (UseItemOnEntityData) this.transactionData; - - this.putEntityRuntimeId(useItemOnEntityData.entityRuntimeId); - this.putUnsignedVarInt(useItemOnEntityData.actionType); - this.putVarInt(useItemOnEntityData.hotbarSlot); - this.putSlot(useItemOnEntityData.itemInHand); - this.putVector3f(useItemOnEntityData.playerPos.asVector3f()); - this.putVector3f(useItemOnEntityData.clickPos.asVector3f()); - break; - case TYPE_RELEASE_ITEM: - ReleaseItemData releaseItemData = (ReleaseItemData) this.transactionData; - - this.putUnsignedVarInt(releaseItemData.actionType); - this.putVarInt(releaseItemData.hotbarSlot); - this.putSlot(releaseItemData.itemInHand); - this.putVector3f(releaseItemData.headRot.asVector3f()); - break; - default: - throw new RuntimeException("Unknown transaction type " + this.transactionType); - } + this.encodeUnsupported(); } @Override diff --git a/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java b/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java index 8d4672f8161..240222aa933 100644 --- a/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/LevelSoundEventPacket.java @@ -495,6 +495,7 @@ public class LevelSoundEventPacket extends DataPacket { public String entityIdentifier; public boolean isBabyMob; public boolean isGlobal; + public long entityUniqueId = -1; @Override public void decode() { @@ -507,6 +508,7 @@ public void decode() { this.entityIdentifier = this.getString(); this.isBabyMob = this.getBoolean(); this.isGlobal = this.getBoolean(); + this.entityUniqueId = this.getLLong(); } @Override @@ -518,6 +520,7 @@ public void encode() { this.putString(this.entityIdentifier); this.putBoolean(this.isBabyMob); this.putBoolean(this.isGlobal); + this.putLLong(this.entityUniqueId); } @Override diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index 2e9663995ff..83cc50e4aa2 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -14,11 +14,11 @@ public interface ProtocolInfo { * Actual Minecraft protocol version */ @SuppressWarnings("UnnecessaryBoxing") - int CURRENT_PROTOCOL = Integer.valueOf("776"); // DO NOT REMOVE BOXING + int CURRENT_PROTOCOL = Integer.valueOf("786"); // DO NOT REMOVE BOXING - List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); + List SUPPORTED_PROTOCOLS = Ints.asList(785, CURRENT_PROTOCOL); - String MINECRAFT_VERSION_NETWORK = "1.21.60"; + String MINECRAFT_VERSION_NETWORK = "1.21.70"; String MINECRAFT_VERSION = 'v' + MINECRAFT_VERSION_NETWORK; byte BATCH_PACKET = (byte) 0xff; @@ -240,4 +240,7 @@ public interface ProtocolInfo { byte __INTERNAL__SET_MOVEMENT_AUTHORITY_PACKET = (byte) 219; byte __INTERNAL__INTERNAL_CAMERA_AIM_ASSIST_INSTRUCTION_PACKET = (byte) 221; byte __INTERNAL__INTERNAL_MOVEMENT_PREDICTION_SYNC_PACKET = (byte) 222; + byte __INTERNAL__UPDATE_CLIENT_OPTIONS_PACKET = (byte) 223; + byte __INTERNAL__PLAYER_VIDEO_CAPTURE_PACKET = (byte) 224; + byte __INTERNAL__PLAYER_UPDATE_ENTITY_OVERRIDES_PACKET = (byte) 225; } diff --git a/src/main/java/cn/nukkit/network/protocol/SetHudPacket.java b/src/main/java/cn/nukkit/network/protocol/SetHudPacket.java index cb9f9e50e04..05995a0497a 100644 --- a/src/main/java/cn/nukkit/network/protocol/SetHudPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SetHudPacket.java @@ -29,8 +29,8 @@ public void encode() { this.reset(); this.putUnsignedVarInt(this.elements.size()); for (HudElement element : this.elements) { - this.putUnsignedVarInt(element.ordinal()); + this.putVarInt(element.ordinal()); } - this.putBoolean(this.visible); + this.putVarInt(this.visible ? 1 : 0); } } diff --git a/src/main/java/cn/nukkit/scheduler/BlockUpdateScheduler.java b/src/main/java/cn/nukkit/scheduler/BlockUpdateScheduler.java index f3592969968..10944ee5054 100644 --- a/src/main/java/cn/nukkit/scheduler/BlockUpdateScheduler.java +++ b/src/main/java/cn/nukkit/scheduler/BlockUpdateScheduler.java @@ -6,8 +6,12 @@ import cn.nukkit.math.SimpleAxisAlignedBB; import cn.nukkit.math.Vector3; import cn.nukkit.utils.BlockUpdateEntry; +import it.unimi.dsi.fastutil.longs.LongArrayList; -import java.util.*; +import java.util.Collections; +import java.util.LinkedHashSet; +import java.util.Map; +import java.util.Set; import java.util.concurrent.ConcurrentHashMap; public class BlockUpdateScheduler { @@ -30,7 +34,7 @@ public synchronized void tick(long currentTick) { perform(tick); } } else { - ArrayList times = new ArrayList<>(queuedUpdates.keySet()); + LongArrayList times = new LongArrayList(queuedUpdates.keySet()); Collections.sort(times); for (long tick : times) { if (tick <= currentTick) { diff --git a/src/main/java/cn/nukkit/utils/Utils.java b/src/main/java/cn/nukkit/utils/Utils.java index b5410ef084b..f9a6d00c79e 100644 --- a/src/main/java/cn/nukkit/utils/Utils.java +++ b/src/main/java/cn/nukkit/utils/Utils.java @@ -365,9 +365,9 @@ public static String getOS(Player player) { case 6: return "HoloLens"; case 7: - return "Windows 10"; - case 8: return "Windows"; + case 8: + return "Windows x86"; case 9: return "Dedicated"; case 10: diff --git a/src/main/resources/creative_items.json b/src/main/resources/creative_items.json index c7a671965eb..9f35e52e975 100644 --- a/src/main/resources/creative_items.json +++ b/src/main/resources/creative_items.json @@ -1 +1,9869 @@ -{"groups":[{"name":"itemGroup.name.planks","category":"construction","icon":{"id":"minecraft:oak_planks","blockRuntimeId":13764}},{"name":"itemGroup.name.walls","category":"construction","icon":{"id":"minecraft:cobblestone_wall","blockRuntimeId":3663}},{"name":"itemGroup.name.fence","category":"construction","icon":{"id":"minecraft:oak_fence","blockRuntimeId":9358}},{"name":"itemGroup.name.fenceGate","category":"construction","icon":{"id":"minecraft:fence_gate","blockRuntimeId":247}},{"name":"itemGroup.name.stairs","category":"construction","icon":{"id":"minecraft:stone_stairs","blockRuntimeId":4997}},{"name":"itemGroup.name.door","category":"construction","icon":{"id":"minecraft:wooden_door","blockRuntimeId":0}},{"name":"itemGroup.name.trapdoor","category":"construction","icon":{"id":"minecraft:trapdoor","blockRuntimeId":1171}},{"name":"","category":"construction","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.glass","category":"construction","icon":{"id":"minecraft:glass","blockRuntimeId":11468}},{"name":"itemGroup.name.glassPane","category":"construction","icon":{"id":"minecraft:glass_pane","blockRuntimeId":8097}},{"name":"","category":"construction","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.slab","category":"construction","icon":{"id":"minecraft:smooth_stone_slab","blockRuntimeId":13768}},{"name":"itemGroup.name.stoneBrick","category":"construction","icon":{"id":"minecraft:stone_bricks","blockRuntimeId":5801}},{"name":"","category":"construction","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.sandstone","category":"construction","icon":{"id":"minecraft:sandstone","blockRuntimeId":4953}},{"name":"","category":"construction","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.copper","category":"construction","icon":{"id":"minecraft:copper_block","blockRuntimeId":6870}},{"name":"","category":"construction","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.wool","category":"construction","icon":{"id":"minecraft:white_wool","blockRuntimeId":8262}},{"name":"itemGroup.name.woolCarpet","category":"construction","icon":{"id":"minecraft:white_carpet","blockRuntimeId":13277}},{"name":"itemGroup.name.concretePowder","category":"construction","icon":{"id":"minecraft:white_concrete_powder","blockRuntimeId":7471}},{"name":"itemGroup.name.concrete","category":"construction","icon":{"id":"minecraft:white_concrete","blockRuntimeId":14551}},{"name":"itemGroup.name.stainedClay","category":"construction","icon":{"id":"minecraft:hardened_clay","blockRuntimeId":1961}},{"name":"itemGroup.name.glazedTerracotta","category":"construction","icon":{"id":"minecraft:white_glazed_terracotta","blockRuntimeId":9176}},{"name":"","category":"construction","icon":{"id":"minecraft:air"}},{"name":"","category":"nature","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.ore","category":"nature","icon":{"id":"minecraft:iron_ore","blockRuntimeId":6909}},{"name":"itemGroup.name.stone","category":"nature","icon":{"id":"minecraft:stone","blockRuntimeId":2403}},{"name":"","category":"nature","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.log","category":"nature","icon":{"id":"minecraft:oak_log","blockRuntimeId":1254}},{"name":"itemGroup.name.wood","category":"nature","icon":{"id":"minecraft:oak_wood","blockRuntimeId":7530}},{"name":"itemGroup.name.leaves","category":"nature","icon":{"id":"minecraft:oak_leaves","blockRuntimeId":2623}},{"name":"itemGroup.name.sapling","category":"nature","icon":{"id":"minecraft:oak_sapling","blockRuntimeId":2391}},{"name":"","category":"nature","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.seed","category":"nature","icon":{"id":"minecraft:wheat_seeds","blockRuntimeId":0}},{"name":"itemGroup.name.crop","category":"nature","icon":{"id":"minecraft:wheat","blockRuntimeId":0}},{"name":"","category":"nature","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.grass","category":"nature","icon":{"id":"minecraft:fern","blockRuntimeId":11140}},{"name":"itemGroup.name.coral_decorations","category":"nature","icon":{"id":"minecraft:fire_coral","blockRuntimeId":2402}},{"name":"itemGroup.name.flower","category":"nature","icon":{"id":"minecraft:dandelion","blockRuntimeId":15167}},{"name":"itemGroup.name.dye","category":"nature","icon":{"id":"minecraft:yellow_dye","blockRuntimeId":0}},{"name":"","category":"nature","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.rawFood","category":"nature","icon":{"id":"minecraft:chicken","blockRuntimeId":0}},{"name":"itemGroup.name.mushroom","category":"nature","icon":{"id":"minecraft:brown_mushroom","blockRuntimeId":4807}},{"name":"","category":"nature","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.monsterStoneEgg","category":"nature","icon":{"id":"minecraft:infested_stone","blockRuntimeId":11144}},{"name":"","category":"nature","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.mobEgg","category":"nature","icon":{"id":"minecraft:chicken_spawn_egg","blockRuntimeId":0}},{"name":"","category":"nature","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.coral","category":"nature","icon":{"id":"minecraft:tube_coral_block","blockRuntimeId":13735}},{"name":"itemGroup.name.sculk","category":"nature","icon":{"id":"minecraft:sculk","blockRuntimeId":12570}},{"name":"","category":"nature","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.helmet","category":"equipment","icon":{"id":"minecraft:leather_helmet","blockRuntimeId":0}},{"name":"itemGroup.name.chestplate","category":"equipment","icon":{"id":"minecraft:leather_chestplate","blockRuntimeId":0}},{"name":"itemGroup.name.leggings","category":"equipment","icon":{"id":"minecraft:leather_leggings","blockRuntimeId":0}},{"name":"itemGroup.name.boots","category":"equipment","icon":{"id":"minecraft:leather_boots","blockRuntimeId":0}},{"name":"itemGroup.name.sword","category":"equipment","icon":{"id":"minecraft:wooden_sword","blockRuntimeId":0}},{"name":"itemGroup.name.axe","category":"equipment","icon":{"id":"minecraft:wooden_axe","blockRuntimeId":0}},{"name":"itemGroup.name.pickaxe","category":"equipment","icon":{"id":"minecraft:wooden_pickaxe","blockRuntimeId":0}},{"name":"itemGroup.name.shovel","category":"equipment","icon":{"id":"minecraft:wooden_shovel","blockRuntimeId":0}},{"name":"itemGroup.name.hoe","category":"equipment","icon":{"id":"minecraft:wooden_hoe","blockRuntimeId":0}},{"name":"","category":"equipment","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.arrow","category":"equipment","icon":{"id":"minecraft:arrow","blockRuntimeId":0}},{"name":"","category":"equipment","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.cookedFood","category":"equipment","icon":{"id":"minecraft:cooked_chicken","blockRuntimeId":0}},{"name":"itemGroup.name.miscFood","category":"equipment","icon":{"id":"minecraft:bread","blockRuntimeId":0}},{"name":"","category":"equipment","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.goatHorn","category":"equipment","icon":{"id":"minecraft:goat_horn","blockRuntimeId":0}},{"name":"","category":"equipment","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.bundles","category":"equipment","icon":{"id":"minecraft:bundle","blockRuntimeId":0}},{"name":"itemGroup.name.horseArmor","category":"equipment","icon":{"id":"minecraft:leather_horse_armor","blockRuntimeId":0}},{"name":"","category":"equipment","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.potion","category":"equipment","icon":{"id":"minecraft:potion","blockRuntimeId":0}},{"name":"itemGroup.name.splashPotion","category":"equipment","icon":{"id":"minecraft:splash_potion","blockRuntimeId":0}},{"name":"itemGroup.name.lingeringPotion","category":"equipment","icon":{"id":"minecraft:lingering_potion","blockRuntimeId":0}},{"name":"itemGroup.name.ominousBottle","category":"equipment","icon":{"id":"minecraft:ominous_bottle","blockRuntimeId":0}},{"name":"","category":"equipment","icon":{"id":"minecraft:air"}},{"name":"","category":"items","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.bed","category":"items","icon":{"id":"minecraft:bed","blockRuntimeId":0}},{"name":"","category":"items","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.candles","category":"items","icon":{"id":"minecraft:candle","blockRuntimeId":13598}},{"name":"","category":"items","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.anvil","category":"items","icon":{"id":"minecraft:anvil","blockRuntimeId":11961}},{"name":"","category":"items","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.chest","category":"items","icon":{"id":"minecraft:chest","blockRuntimeId":12695}},{"name":"","category":"items","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.shulkerBox","category":"items","icon":{"id":"minecraft:undyed_shulker_box","blockRuntimeId":4978}},{"name":"","category":"items","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.record","category":"items","icon":{"id":"minecraft:music_disc_13","blockRuntimeId":0}},{"name":"","category":"items","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.sign","category":"items","icon":{"id":"minecraft:oak_sign","blockRuntimeId":0}},{"name":"itemGroup.name.hanging_sign","category":"items","icon":{"id":"minecraft:oak_hanging_sign","blockRuntimeId":0}},{"name":"","category":"items","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.skull","category":"items","icon":{"id":"minecraft:creeper_head","blockRuntimeId":9957}},{"name":"","category":"items","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.enchantedBook","category":"items","icon":{"id":"minecraft:enchanted_book","blockRuntimeId":0,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA="}},{"name":"itemGroup.name.boat","category":"items","icon":{"id":"minecraft:oak_boat","blockRuntimeId":0}},{"name":"itemGroup.name.chestboat","category":"items","icon":{"id":"minecraft:oak_chest_boat","blockRuntimeId":0}},{"name":"itemGroup.name.rail","category":"items","icon":{"id":"minecraft:rail","blockRuntimeId":5629}},{"name":"itemGroup.name.minecart","category":"items","icon":{"id":"minecraft:minecart","blockRuntimeId":0}},{"name":"","category":"items","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.buttons","category":"items","icon":{"id":"minecraft:wooden_button","blockRuntimeId":11693}},{"name":"","category":"items","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.pressurePlate","category":"items","icon":{"id":"minecraft:wooden_pressure_plate","blockRuntimeId":14363}},{"name":"","category":"items","icon":{"id":"minecraft:air"}},{"name":"itemGroup.name.banner","category":"items","icon":{"id":"minecraft:banner","blockRuntimeId":0}},{"name":"itemGroup.name.banner_pattern","category":"items","icon":{"id":"minecraft:creeper_banner_pattern","blockRuntimeId":0}},{"name":"itemGroup.name.potterySherds","category":"items","icon":{"id":"minecraft:archer_pottery_sherd","blockRuntimeId":0}},{"name":"itemGroup.name.smithing_templates","category":"items","icon":{"id":"minecraft:netherite_upgrade_smithing_template","blockRuntimeId":0}},{"name":"itemGroup.name.firework","category":"items","icon":{"id":"minecraft:firework_rocket","blockRuntimeId":0}},{"name":"itemGroup.name.fireworkStars","category":"items","icon":{"id":"minecraft:firework_star","blockRuntimeId":0}},{"name":"","category":"items","icon":{"id":"minecraft:air"}}],"items":[{"id":"minecraft:oak_planks","blockRuntimeId":13764,"groupId":0},{"id":"minecraft:spruce_planks","blockRuntimeId":14122,"groupId":0},{"id":"minecraft:birch_planks","blockRuntimeId":8175,"groupId":0},{"id":"minecraft:jungle_planks","blockRuntimeId":11956,"groupId":0},{"id":"minecraft:acacia_planks","blockRuntimeId":6212,"groupId":0},{"id":"minecraft:dark_oak_planks","blockRuntimeId":4839,"groupId":0},{"id":"minecraft:mangrove_planks","blockRuntimeId":3108,"groupId":0},{"id":"minecraft:cherry_planks","blockRuntimeId":13987,"groupId":0},{"id":"minecraft:pale_oak_planks","blockRuntimeId":4996,"groupId":0},{"id":"minecraft:bamboo_planks","blockRuntimeId":9223,"groupId":0},{"id":"minecraft:bamboo_mosaic","blockRuntimeId":15098,"groupId":0},{"id":"minecraft:crimson_planks","blockRuntimeId":7520,"groupId":0},{"id":"minecraft:warped_planks","blockRuntimeId":3082,"groupId":0},{"id":"minecraft:cobblestone_wall","blockRuntimeId":3663,"groupId":1},{"id":"minecraft:mossy_cobblestone_wall","blockRuntimeId":3473,"groupId":1},{"id":"minecraft:granite_wall","blockRuntimeId":9404,"groupId":1},{"id":"minecraft:diorite_wall","blockRuntimeId":3111,"groupId":1},{"id":"minecraft:andesite_wall","blockRuntimeId":9014,"groupId":1},{"id":"minecraft:sandstone_wall","blockRuntimeId":14379,"groupId":1},{"id":"minecraft:red_sandstone_wall","blockRuntimeId":970,"groupId":1},{"id":"minecraft:stone_brick_wall","blockRuntimeId":8825,"groupId":1},{"id":"minecraft:mossy_stone_brick_wall","blockRuntimeId":14898,"groupId":1},{"id":"minecraft:brick_wall","blockRuntimeId":745,"groupId":1},{"id":"minecraft:nether_brick_wall","blockRuntimeId":12368,"groupId":1},{"id":"minecraft:red_nether_brick_wall","blockRuntimeId":13410,"groupId":1},{"id":"minecraft:end_stone_brick_wall","blockRuntimeId":83,"groupId":1},{"id":"minecraft:prismarine_wall","blockRuntimeId":7584,"groupId":1},{"id":"minecraft:blackstone_wall","blockRuntimeId":5639,"groupId":1},{"id":"minecraft:polished_blackstone_wall","blockRuntimeId":12059,"groupId":1},{"id":"minecraft:polished_blackstone_brick_wall","blockRuntimeId":3287,"groupId":1},{"id":"minecraft:cobbled_deepslate_wall","blockRuntimeId":14732,"groupId":1},{"id":"minecraft:deepslate_tile_wall","blockRuntimeId":7935,"groupId":1},{"id":"minecraft:polished_deepslate_wall","blockRuntimeId":14139,"groupId":1},{"id":"minecraft:deepslate_brick_wall","blockRuntimeId":1759,"groupId":1},{"id":"minecraft:tuff_wall","blockRuntimeId":4227,"groupId":1},{"id":"minecraft:tuff_brick_wall","blockRuntimeId":2410,"groupId":1},{"id":"minecraft:polished_tuff_wall","blockRuntimeId":2695,"groupId":1},{"id":"minecraft:mud_brick_wall","blockRuntimeId":2872,"groupId":1},{"id":"minecraft:resin_brick_wall","blockRuntimeId":14570,"groupId":1},{"id":"minecraft:oak_fence","blockRuntimeId":9358,"groupId":2},{"id":"minecraft:spruce_fence","blockRuntimeId":1700,"groupId":2},{"id":"minecraft:birch_fence","blockRuntimeId":14541,"groupId":2},{"id":"minecraft:jungle_fence","blockRuntimeId":1691,"groupId":2},{"id":"minecraft:acacia_fence","blockRuntimeId":14568,"groupId":2},{"id":"minecraft:dark_oak_fence","blockRuntimeId":12654,"groupId":2},{"id":"minecraft:mangrove_fence","blockRuntimeId":11959,"groupId":2},{"id":"minecraft:cherry_fence","blockRuntimeId":3107,"groupId":2},{"id":"minecraft:pale_oak_fence","blockRuntimeId":1651,"groupId":2},{"id":"minecraft:bamboo_fence","blockRuntimeId":1948,"groupId":2},{"id":"minecraft:nether_brick_fence","blockRuntimeId":5985,"groupId":2},{"id":"minecraft:crimson_fence","blockRuntimeId":14305,"groupId":2},{"id":"minecraft:warped_fence","blockRuntimeId":10022,"groupId":2},{"id":"minecraft:fence_gate","blockRuntimeId":247,"groupId":3},{"id":"minecraft:spruce_fence_gate","blockRuntimeId":11924,"groupId":3},{"id":"minecraft:birch_fence_gate","blockRuntimeId":5091,"groupId":3},{"id":"minecraft:jungle_fence_gate","blockRuntimeId":8225,"groupId":3},{"id":"minecraft:acacia_fence_gate","blockRuntimeId":13815,"groupId":3},{"id":"minecraft:dark_oak_fence_gate","blockRuntimeId":5857,"groupId":3},{"id":"minecraft:mangrove_fence_gate","blockRuntimeId":6426,"groupId":3},{"id":"minecraft:cherry_fence_gate","blockRuntimeId":15069,"groupId":3},{"id":"minecraft:pale_oak_fence_gate","blockRuntimeId":313,"groupId":3},{"id":"minecraft:bamboo_fence_gate","blockRuntimeId":7909,"groupId":3},{"id":"minecraft:crimson_fence_gate","blockRuntimeId":6880,"groupId":3},{"id":"minecraft:warped_fence_gate","blockRuntimeId":8263,"groupId":3},{"id":"minecraft:normal_stone_stairs","blockRuntimeId":1949,"groupId":4},{"id":"minecraft:stone_stairs","blockRuntimeId":4997,"groupId":4},{"id":"minecraft:mossy_cobblestone_stairs","blockRuntimeId":5802,"groupId":4},{"id":"minecraft:oak_stairs","blockRuntimeId":1245,"groupId":4},{"id":"minecraft:spruce_stairs","blockRuntimeId":303,"groupId":4},{"id":"minecraft:birch_stairs","blockRuntimeId":12360,"groupId":4},{"id":"minecraft:jungle_stairs","blockRuntimeId":12320,"groupId":4},{"id":"minecraft:acacia_stairs","blockRuntimeId":11490,"groupId":4},{"id":"minecraft:dark_oak_stairs","blockRuntimeId":7927,"groupId":4},{"id":"minecraft:mangrove_stairs","blockRuntimeId":6388,"groupId":4},{"id":"minecraft:cherry_stairs","blockRuntimeId":12704,"groupId":4},{"id":"minecraft:pale_oak_stairs","blockRuntimeId":13373,"groupId":4},{"id":"minecraft:bamboo_stairs","blockRuntimeId":2857,"groupId":4},{"id":"minecraft:bamboo_mosaic_stairs","blockRuntimeId":11498,"groupId":4},{"id":"minecraft:stone_brick_stairs","blockRuntimeId":3090,"groupId":4},{"id":"minecraft:mossy_stone_brick_stairs","blockRuntimeId":10457,"groupId":4},{"id":"minecraft:sandstone_stairs","blockRuntimeId":4872,"groupId":4},{"id":"minecraft:smooth_sandstone_stairs","blockRuntimeId":4910,"groupId":4},{"id":"minecraft:red_sandstone_stairs","blockRuntimeId":8206,"groupId":4},{"id":"minecraft:smooth_red_sandstone_stairs","blockRuntimeId":8987,"groupId":4},{"id":"minecraft:granite_stairs","blockRuntimeId":4413,"groupId":4},{"id":"minecraft:polished_granite_stairs","blockRuntimeId":5825,"groupId":4},{"id":"minecraft:diorite_stairs","blockRuntimeId":6149,"groupId":4},{"id":"minecraft:polished_diorite_stairs","blockRuntimeId":12037,"groupId":4},{"id":"minecraft:andesite_stairs","blockRuntimeId":8167,"groupId":4},{"id":"minecraft:polished_andesite_stairs","blockRuntimeId":12552,"groupId":4},{"id":"minecraft:brick_stairs","blockRuntimeId":11847,"groupId":4},{"id":"minecraft:nether_brick_stairs","blockRuntimeId":278,"groupId":4},{"id":"minecraft:red_nether_brick_stairs","blockRuntimeId":11942,"groupId":4},{"id":"minecraft:end_brick_stairs","blockRuntimeId":11683,"groupId":4},{"id":"minecraft:quartz_stairs","blockRuntimeId":7046,"groupId":4},{"id":"minecraft:smooth_quartz_stairs","blockRuntimeId":13929,"groupId":4},{"id":"minecraft:purpur_stairs","blockRuntimeId":13992,"groupId":4},{"id":"minecraft:prismarine_stairs","blockRuntimeId":13269,"groupId":4},{"id":"minecraft:dark_prismarine_stairs","blockRuntimeId":13630,"groupId":4},{"id":"minecraft:prismarine_bricks_stairs","blockRuntimeId":1132,"groupId":4},{"id":"minecraft:crimson_stairs","blockRuntimeId":11572,"groupId":4},{"id":"minecraft:warped_stairs","blockRuntimeId":5010,"groupId":4},{"id":"minecraft:blackstone_stairs","blockRuntimeId":12541,"groupId":4},{"id":"minecraft:polished_blackstone_stairs","blockRuntimeId":6044,"groupId":4},{"id":"minecraft:polished_blackstone_brick_stairs","blockRuntimeId":6248,"groupId":4},{"id":"minecraft:cobbled_deepslate_stairs","blockRuntimeId":907,"groupId":4},{"id":"minecraft:deepslate_tile_stairs","blockRuntimeId":6872,"groupId":4},{"id":"minecraft:polished_deepslate_stairs","blockRuntimeId":1564,"groupId":4},{"id":"minecraft:deepslate_brick_stairs","blockRuntimeId":13622,"groupId":4},{"id":"minecraft:tuff_stairs","blockRuntimeId":10493,"groupId":4},{"id":"minecraft:polished_tuff_stairs","blockRuntimeId":13279,"groupId":4},{"id":"minecraft:tuff_brick_stairs","blockRuntimeId":11556,"groupId":4},{"id":"minecraft:mud_brick_stairs","blockRuntimeId":8801,"groupId":4},{"id":"minecraft:cut_copper_stairs","blockRuntimeId":6399,"groupId":4},{"id":"minecraft:exposed_cut_copper_stairs","blockRuntimeId":6380,"groupId":4},{"id":"minecraft:weathered_cut_copper_stairs","blockRuntimeId":6052,"groupId":4},{"id":"minecraft:oxidized_cut_copper_stairs","blockRuntimeId":1643,"groupId":4},{"id":"minecraft:waxed_cut_copper_stairs","blockRuntimeId":1707,"groupId":4},{"id":"minecraft:waxed_exposed_cut_copper_stairs","blockRuntimeId":5605,"groupId":4},{"id":"minecraft:waxed_weathered_cut_copper_stairs","blockRuntimeId":11473,"groupId":4},{"id":"minecraft:waxed_oxidized_cut_copper_stairs","blockRuntimeId":9969,"groupId":4},{"id":"minecraft:resin_brick_stairs","blockRuntimeId":11369,"groupId":4},{"id":"minecraft:wooden_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:spruce_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:birch_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:jungle_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:acacia_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:dark_oak_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:mangrove_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:cherry_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:pale_oak_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:bamboo_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:iron_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:crimson_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:warped_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:copper_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:exposed_copper_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:weathered_copper_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:oxidized_copper_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:waxed_copper_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:waxed_exposed_copper_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:waxed_weathered_copper_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:waxed_oxidized_copper_door","blockRuntimeId":0,"groupId":5},{"id":"minecraft:trapdoor","blockRuntimeId":1171,"groupId":6},{"id":"minecraft:spruce_trapdoor","blockRuntimeId":11892,"groupId":6},{"id":"minecraft:birch_trapdoor","blockRuntimeId":11965,"groupId":6},{"id":"minecraft:jungle_trapdoor","blockRuntimeId":8244,"groupId":6},{"id":"minecraft:acacia_trapdoor","blockRuntimeId":9190,"groupId":6},{"id":"minecraft:dark_oak_trapdoor","blockRuntimeId":13743,"groupId":6},{"id":"minecraft:mangrove_trapdoor","blockRuntimeId":6256,"groupId":6},{"id":"minecraft:cherry_trapdoor","blockRuntimeId":3056,"groupId":6},{"id":"minecraft:pale_oak_trapdoor","blockRuntimeId":13319,"groupId":6},{"id":"minecraft:bamboo_trapdoor","blockRuntimeId":8122,"groupId":6},{"id":"minecraft:iron_trapdoor","blockRuntimeId":1592,"groupId":6},{"id":"minecraft:crimson_trapdoor","blockRuntimeId":6085,"groupId":6},{"id":"minecraft:warped_trapdoor","blockRuntimeId":6996,"groupId":6},{"id":"minecraft:copper_trapdoor","blockRuntimeId":10001,"groupId":6},{"id":"minecraft:exposed_copper_trapdoor","blockRuntimeId":11336,"groupId":6},{"id":"minecraft:weathered_copper_trapdoor","blockRuntimeId":11861,"groupId":6},{"id":"minecraft:oxidized_copper_trapdoor","blockRuntimeId":6354,"groupId":6},{"id":"minecraft:waxed_copper_trapdoor","blockRuntimeId":4819,"groupId":6},{"id":"minecraft:waxed_exposed_copper_trapdoor","blockRuntimeId":10433,"groupId":6},{"id":"minecraft:waxed_weathered_copper_trapdoor","blockRuntimeId":7030,"groupId":6},{"id":"minecraft:waxed_oxidized_copper_trapdoor","blockRuntimeId":7534,"groupId":6},{"id":"minecraft:iron_bars","blockRuntimeId":7081,"groupId":7},{"id":"minecraft:glass","blockRuntimeId":11468,"groupId":8},{"id":"minecraft:white_stained_glass","blockRuntimeId":7525,"groupId":8},{"id":"minecraft:light_gray_stained_glass","blockRuntimeId":1754,"groupId":8},{"id":"minecraft:gray_stained_glass","blockRuntimeId":5006,"groupId":8},{"id":"minecraft:black_stained_glass","blockRuntimeId":10503,"groupId":8},{"id":"minecraft:brown_stained_glass","blockRuntimeId":2400,"groupId":8},{"id":"minecraft:red_stained_glass","blockRuntimeId":8101,"groupId":8},{"id":"minecraft:orange_stained_glass","blockRuntimeId":6311,"groupId":8},{"id":"minecraft:yellow_stained_glass","blockRuntimeId":13806,"groupId":8},{"id":"minecraft:lime_stained_glass","blockRuntimeId":289,"groupId":8},{"id":"minecraft:green_stained_glass","blockRuntimeId":5982,"groupId":8},{"id":"minecraft:cyan_stained_glass","blockRuntimeId":10502,"groupId":8},{"id":"minecraft:light_blue_stained_glass","blockRuntimeId":9401,"groupId":8},{"id":"minecraft:blue_stained_glass","blockRuntimeId":9363,"groupId":8},{"id":"minecraft:purple_stained_glass","blockRuntimeId":3651,"groupId":8},{"id":"minecraft:magenta_stained_glass","blockRuntimeId":13228,"groupId":8},{"id":"minecraft:pink_stained_glass","blockRuntimeId":6068,"groupId":8},{"id":"minecraft:tinted_glass","blockRuntimeId":10634,"groupId":8},{"id":"minecraft:glass_pane","blockRuntimeId":8097,"groupId":9},{"id":"minecraft:white_stained_glass_pane","blockRuntimeId":6312,"groupId":9},{"id":"minecraft:light_gray_stained_glass_pane","blockRuntimeId":1756,"groupId":9},{"id":"minecraft:gray_stained_glass_pane","blockRuntimeId":12246,"groupId":9},{"id":"minecraft:black_stained_glass_pane","blockRuntimeId":3662,"groupId":9},{"id":"minecraft:brown_stained_glass_pane","blockRuntimeId":1257,"groupId":9},{"id":"minecraft:red_stained_glass_pane","blockRuntimeId":12646,"groupId":9},{"id":"minecraft:orange_stained_glass_pane","blockRuntimeId":1161,"groupId":9},{"id":"minecraft:yellow_stained_glass_pane","blockRuntimeId":740,"groupId":9},{"id":"minecraft:lime_stained_glass_pane","blockRuntimeId":13804,"groupId":9},{"id":"minecraft:green_stained_glass_pane","blockRuntimeId":5824,"groupId":9},{"id":"minecraft:cyan_stained_glass_pane","blockRuntimeId":11796,"groupId":9},{"id":"minecraft:light_blue_stained_glass_pane","blockRuntimeId":5587,"groupId":9},{"id":"minecraft:blue_stained_glass_pane","blockRuntimeId":246,"groupId":9},{"id":"minecraft:purple_stained_glass_pane","blockRuntimeId":7533,"groupId":9},{"id":"minecraft:magenta_stained_glass_pane","blockRuntimeId":7080,"groupId":9},{"id":"minecraft:pink_stained_glass_pane","blockRuntimeId":12651,"groupId":9},{"id":"minecraft:ladder","blockRuntimeId":15104,"groupId":10},{"id":"minecraft:scaffolding","blockRuntimeId":4856,"groupId":10},{"id":"minecraft:brick_block","blockRuntimeId":7028,"groupId":10},{"id":"minecraft:smooth_stone_slab","blockRuntimeId":13768,"groupId":11},{"id":"minecraft:normal_stone_slab","blockRuntimeId":5888,"groupId":11},{"id":"minecraft:cobblestone_slab","blockRuntimeId":5877,"groupId":11},{"id":"minecraft:mossy_cobblestone_slab","blockRuntimeId":5873,"groupId":11},{"id":"minecraft:oak_slab","blockRuntimeId":5987,"groupId":11},{"id":"minecraft:spruce_slab","blockRuntimeId":12539,"groupId":11},{"id":"minecraft:birch_slab","blockRuntimeId":5527,"groupId":11},{"id":"minecraft:jungle_slab","blockRuntimeId":5585,"groupId":11},{"id":"minecraft:acacia_slab","blockRuntimeId":13791,"groupId":11},{"id":"minecraft:dark_oak_slab","blockRuntimeId":1757,"groupId":11},{"id":"minecraft:mangrove_slab","blockRuntimeId":3449,"groupId":11},{"id":"minecraft:cherry_slab","blockRuntimeId":11507,"groupId":11},{"id":"minecraft:pale_oak_slab","blockRuntimeId":5995,"groupId":11},{"id":"minecraft:bamboo_slab","blockRuntimeId":11844,"groupId":11},{"id":"minecraft:bamboo_mosaic_slab","blockRuntimeId":3835,"groupId":11},{"id":"minecraft:stone_brick_slab","blockRuntimeId":11570,"groupId":11},{"id":"minecraft:mossy_stone_brick_slab","blockRuntimeId":1660,"groupId":11},{"id":"minecraft:sandstone_slab","blockRuntimeId":1658,"groupId":11},{"id":"minecraft:cut_sandstone_slab","blockRuntimeId":8279,"groupId":11},{"id":"minecraft:smooth_sandstone_slab","blockRuntimeId":2404,"groupId":11},{"id":"minecraft:red_sandstone_slab","blockRuntimeId":3054,"groupId":11},{"id":"minecraft:cut_red_sandstone_slab","blockRuntimeId":13620,"groupId":11},{"id":"minecraft:smooth_red_sandstone_slab","blockRuntimeId":11877,"groupId":11},{"id":"minecraft:granite_slab","blockRuntimeId":6370,"groupId":11},{"id":"minecraft:polished_granite_slab","blockRuntimeId":11552,"groupId":11},{"id":"minecraft:diorite_slab","blockRuntimeId":1142,"groupId":11},{"id":"minecraft:polished_diorite_slab","blockRuntimeId":6396,"groupId":11},{"id":"minecraft:andesite_slab","blockRuntimeId":11651,"groupId":11},{"id":"minecraft:polished_andesite_slab","blockRuntimeId":13606,"groupId":11},{"id":"minecraft:brick_slab","blockRuntimeId":13761,"groupId":11},{"id":"minecraft:nether_brick_slab","blockRuntimeId":11122,"groupId":11},{"id":"minecraft:red_nether_brick_slab","blockRuntimeId":11921,"groupId":11},{"id":"minecraft:end_stone_brick_slab","blockRuntimeId":1959,"groupId":11},{"id":"minecraft:quartz_slab","blockRuntimeId":11987,"groupId":11},{"id":"minecraft:smooth_quartz_slab","blockRuntimeId":13797,"groupId":11},{"id":"minecraft:purpur_slab","blockRuntimeId":2572,"groupId":11},{"id":"minecraft:prismarine_slab","blockRuntimeId":5999,"groupId":11},{"id":"minecraft:dark_prismarine_slab","blockRuntimeId":9999,"groupId":11},{"id":"minecraft:prismarine_brick_slab","blockRuntimeId":5032,"groupId":11},{"id":"minecraft:crimson_slab","blockRuntimeId":10477,"groupId":11},{"id":"minecraft:warped_slab","blockRuntimeId":11803,"groupId":11},{"id":"minecraft:blackstone_slab","blockRuntimeId":3072,"groupId":11},{"id":"minecraft:polished_blackstone_slab","blockRuntimeId":11063,"groupId":11},{"id":"minecraft:polished_blackstone_brick_slab","blockRuntimeId":5886,"groupId":11},{"id":"minecraft:cobbled_deepslate_slab","blockRuntimeId":13315,"groupId":11},{"id":"minecraft:polished_deepslate_slab","blockRuntimeId":1266,"groupId":11},{"id":"minecraft:deepslate_tile_slab","blockRuntimeId":5992,"groupId":11},{"id":"minecraft:deepslate_brick_slab","blockRuntimeId":5008,"groupId":11},{"id":"minecraft:tuff_slab","blockRuntimeId":1221,"groupId":11},{"id":"minecraft:polished_tuff_slab","blockRuntimeId":331,"groupId":11},{"id":"minecraft:tuff_brick_slab","blockRuntimeId":5027,"groupId":11},{"id":"minecraft:mud_brick_slab","blockRuntimeId":5614,"groupId":11},{"id":"minecraft:cut_copper_slab","blockRuntimeId":8099,"groupId":11},{"id":"minecraft:exposed_cut_copper_slab","blockRuntimeId":11940,"groupId":11},{"id":"minecraft:weathered_cut_copper_slab","blockRuntimeId":11116,"groupId":11},{"id":"minecraft:oxidized_cut_copper_slab","blockRuntimeId":8146,"groupId":11},{"id":"minecraft:waxed_cut_copper_slab","blockRuntimeId":14137,"groupId":11},{"id":"minecraft:waxed_exposed_cut_copper_slab","blockRuntimeId":1195,"groupId":11},{"id":"minecraft:waxed_weathered_cut_copper_slab","blockRuntimeId":11888,"groupId":11},{"id":"minecraft:waxed_oxidized_cut_copper_slab","blockRuntimeId":2621,"groupId":11},{"id":"minecraft:resin_brick_slab","blockRuntimeId":13312,"groupId":11},{"id":"minecraft:stone_bricks","blockRuntimeId":5801,"groupId":12},{"id":"minecraft:mossy_stone_bricks","blockRuntimeId":5029,"groupId":12},{"id":"minecraft:cracked_stone_bricks","blockRuntimeId":4901,"groupId":12},{"id":"minecraft:chiseled_stone_bricks","blockRuntimeId":277,"groupId":12},{"id":"minecraft:smooth_stone","blockRuntimeId":6351,"groupId":12},{"id":"minecraft:end_bricks","blockRuntimeId":1258,"groupId":12},{"id":"minecraft:polished_blackstone_bricks","blockRuntimeId":6899,"groupId":12},{"id":"minecraft:cracked_polished_blackstone_bricks","blockRuntimeId":13188,"groupId":12},{"id":"minecraft:gilded_blackstone","blockRuntimeId":6377,"groupId":12},{"id":"minecraft:chiseled_polished_blackstone","blockRuntimeId":7926,"groupId":12},{"id":"minecraft:deepslate_tiles","blockRuntimeId":6350,"groupId":12},{"id":"minecraft:cracked_deepslate_tiles","blockRuntimeId":5843,"groupId":12},{"id":"minecraft:deepslate_bricks","blockRuntimeId":8356,"groupId":12},{"id":"minecraft:tuff_bricks","blockRuntimeId":11981,"groupId":12},{"id":"minecraft:cracked_deepslate_bricks","blockRuntimeId":8220,"groupId":12},{"id":"minecraft:chiseled_deepslate","blockRuntimeId":8098,"groupId":12},{"id":"minecraft:chiseled_tuff","blockRuntimeId":14306,"groupId":12},{"id":"minecraft:chiseled_tuff_bricks","blockRuntimeId":13668,"groupId":12},{"id":"minecraft:cobblestone","blockRuntimeId":4904,"groupId":13},{"id":"minecraft:mossy_cobblestone","blockRuntimeId":1198,"groupId":13},{"id":"minecraft:cobbled_deepslate","blockRuntimeId":11986,"groupId":13},{"id":"minecraft:sandstone","blockRuntimeId":4953,"groupId":14},{"id":"minecraft:chiseled_sandstone","blockRuntimeId":11084,"groupId":14},{"id":"minecraft:cut_sandstone","blockRuntimeId":10667,"groupId":14},{"id":"minecraft:smooth_sandstone","blockRuntimeId":915,"groupId":14},{"id":"minecraft:red_sandstone","blockRuntimeId":11920,"groupId":14},{"id":"minecraft:chiseled_red_sandstone","blockRuntimeId":13736,"groupId":14},{"id":"minecraft:cut_red_sandstone","blockRuntimeId":5628,"groupId":14},{"id":"minecraft:smooth_red_sandstone","blockRuntimeId":13991,"groupId":14},{"id":"minecraft:coal_block","blockRuntimeId":8261,"groupId":15},{"id":"minecraft:dried_kelp_block","blockRuntimeId":14303,"groupId":15},{"id":"minecraft:copper_block","blockRuntimeId":6870,"groupId":16},{"id":"minecraft:weathered_copper","blockRuntimeId":14897,"groupId":16},{"id":"minecraft:exposed_copper","blockRuntimeId":1924,"groupId":16},{"id":"minecraft:oxidized_copper","blockRuntimeId":4837,"groupId":16},{"id":"minecraft:waxed_copper","blockRuntimeId":13960,"groupId":16},{"id":"minecraft:waxed_exposed_copper","blockRuntimeId":2597,"groupId":16},{"id":"minecraft:waxed_weathered_copper","blockRuntimeId":2619,"groupId":16},{"id":"minecraft:waxed_oxidized_copper","blockRuntimeId":13763,"groupId":16},{"id":"minecraft:copper_grate","blockRuntimeId":1665,"groupId":16},{"id":"minecraft:exposed_copper_grate","blockRuntimeId":8241,"groupId":16},{"id":"minecraft:weathered_copper_grate","blockRuntimeId":5025,"groupId":16},{"id":"minecraft:oxidized_copper_grate","blockRuntimeId":11960,"groupId":16},{"id":"minecraft:waxed_copper_grate","blockRuntimeId":8242,"groupId":16},{"id":"minecraft:waxed_exposed_copper_grate","blockRuntimeId":1921,"groupId":16},{"id":"minecraft:waxed_weathered_copper_grate","blockRuntimeId":6069,"groupId":16},{"id":"minecraft:waxed_oxidized_copper_grate","blockRuntimeId":14544,"groupId":16},{"id":"minecraft:cut_copper","blockRuntimeId":6908,"groupId":16},{"id":"minecraft:exposed_cut_copper","blockRuntimeId":11472,"groupId":16},{"id":"minecraft:weathered_cut_copper","blockRuntimeId":13169,"groupId":16},{"id":"minecraft:oxidized_cut_copper","blockRuntimeId":8372,"groupId":16},{"id":"minecraft:waxed_cut_copper","blockRuntimeId":13311,"groupId":16},{"id":"minecraft:waxed_exposed_cut_copper","blockRuntimeId":5126,"groupId":16},{"id":"minecraft:waxed_weathered_cut_copper","blockRuntimeId":7524,"groupId":16},{"id":"minecraft:waxed_oxidized_cut_copper","blockRuntimeId":1140,"groupId":16},{"id":"minecraft:chiseled_copper","blockRuntimeId":9323,"groupId":16},{"id":"minecraft:exposed_chiseled_copper","blockRuntimeId":11923,"groupId":16},{"id":"minecraft:weathered_chiseled_copper","blockRuntimeId":1573,"groupId":16},{"id":"minecraft:oxidized_chiseled_copper","blockRuntimeId":8138,"groupId":16},{"id":"minecraft:waxed_chiseled_copper","blockRuntimeId":14136,"groupId":16},{"id":"minecraft:waxed_exposed_chiseled_copper","blockRuntimeId":1220,"groupId":16},{"id":"minecraft:waxed_oxidized_chiseled_copper","blockRuntimeId":81,"groupId":16},{"id":"minecraft:waxed_weathered_chiseled_copper","blockRuntimeId":5005,"groupId":16},{"id":"minecraft:copper_bulb","blockRuntimeId":6145,"groupId":16},{"id":"minecraft:exposed_copper_bulb","blockRuntimeId":11565,"groupId":16},{"id":"minecraft:weathered_copper_bulb","blockRuntimeId":13782,"groupId":16},{"id":"minecraft:oxidized_copper_bulb","blockRuntimeId":3274,"groupId":16},{"id":"minecraft:waxed_copper_bulb","blockRuntimeId":1941,"groupId":16},{"id":"minecraft:waxed_exposed_copper_bulb","blockRuntimeId":5882,"groupId":16},{"id":"minecraft:waxed_weathered_copper_bulb","blockRuntimeId":9977,"groupId":16},{"id":"minecraft:waxed_oxidized_copper_bulb","blockRuntimeId":11583,"groupId":16},{"id":"minecraft:iron_block","blockRuntimeId":15103,"groupId":17},{"id":"minecraft:gold_block","blockRuntimeId":1305,"groupId":17},{"id":"minecraft:emerald_block","blockRuntimeId":3464,"groupId":17},{"id":"minecraft:diamond_block","blockRuntimeId":1242,"groupId":17},{"id":"minecraft:lapis_block","blockRuntimeId":5972,"groupId":17},{"id":"minecraft:raw_copper_block","blockRuntimeId":8145,"groupId":17},{"id":"minecraft:raw_iron_block","blockRuntimeId":15100,"groupId":17},{"id":"minecraft:raw_gold_block","blockRuntimeId":1662,"groupId":17},{"id":"minecraft:quartz_block","blockRuntimeId":4993,"groupId":17},{"id":"minecraft:quartz_bricks","blockRuntimeId":11650,"groupId":17},{"id":"minecraft:quartz_pillar","blockRuntimeId":5123,"groupId":17},{"id":"minecraft:chiseled_quartz_block","blockRuntimeId":13335,"groupId":17},{"id":"minecraft:smooth_quartz","blockRuntimeId":6301,"groupId":17},{"id":"minecraft:prismarine","blockRuntimeId":11333,"groupId":17},{"id":"minecraft:prismarine_bricks","blockRuntimeId":14362,"groupId":17},{"id":"minecraft:dark_prismarine","blockRuntimeId":6116,"groupId":17},{"id":"minecraft:slime","blockRuntimeId":5932,"groupId":17},{"id":"minecraft:honey_block","blockRuntimeId":3034,"groupId":17},{"id":"minecraft:honeycomb_block","blockRuntimeId":6247,"groupId":17},{"id":"minecraft:resin_block","blockRuntimeId":11802,"groupId":17},{"id":"minecraft:hay_block","blockRuntimeId":2604,"groupId":17},{"id":"minecraft:bone_block","blockRuntimeId":5933,"groupId":17},{"id":"minecraft:resin_bricks","blockRuntimeId":10484,"groupId":17},{"id":"minecraft:chiseled_resin_bricks","blockRuntimeId":11509,"groupId":17},{"id":"minecraft:nether_brick","blockRuntimeId":13289,"groupId":17},{"id":"minecraft:red_nether_brick","blockRuntimeId":744,"groupId":17},{"id":"minecraft:chiseled_nether_bricks","blockRuntimeId":13247,"groupId":17},{"id":"minecraft:cracked_nether_bricks","blockRuntimeId":6316,"groupId":17},{"id":"minecraft:netherite_block","blockRuntimeId":5088,"groupId":17},{"id":"minecraft:lodestone","blockRuntimeId":15097,"groupId":17},{"id":"minecraft:white_wool","blockRuntimeId":8262,"groupId":18},{"id":"minecraft:light_gray_wool","blockRuntimeId":14353,"groupId":18},{"id":"minecraft:gray_wool","blockRuntimeId":1160,"groupId":18},{"id":"minecraft:black_wool","blockRuntimeId":1666,"groupId":18},{"id":"minecraft:brown_wool","blockRuntimeId":1219,"groupId":18},{"id":"minecraft:red_wool","blockRuntimeId":290,"groupId":18},{"id":"minecraft:orange_wool","blockRuntimeId":2578,"groupId":18},{"id":"minecraft:yellow_wool","blockRuntimeId":733,"groupId":18},{"id":"minecraft:lime_wool","blockRuntimeId":11052,"groupId":18},{"id":"minecraft:green_wool","blockRuntimeId":5030,"groupId":18},{"id":"minecraft:cyan_wool","blockRuntimeId":8188,"groupId":18},{"id":"minecraft:light_blue_wool","blockRuntimeId":12652,"groupId":18},{"id":"minecraft:blue_wool","blockRuntimeId":8373,"groupId":18},{"id":"minecraft:purple_wool","blockRuntimeId":15102,"groupId":18},{"id":"minecraft:magenta_wool","blockRuntimeId":3278,"groupId":18},{"id":"minecraft:pink_wool","blockRuntimeId":5089,"groupId":18},{"id":"minecraft:white_carpet","blockRuntimeId":13277,"groupId":19},{"id":"minecraft:light_gray_carpet","blockRuntimeId":15101,"groupId":19},{"id":"minecraft:gray_carpet","blockRuntimeId":1163,"groupId":19},{"id":"minecraft:black_carpet","blockRuntimeId":11094,"groupId":19},{"id":"minecraft:brown_carpet","blockRuntimeId":3089,"groupId":19},{"id":"minecraft:red_carpet","blockRuntimeId":13618,"groupId":19},{"id":"minecraft:orange_carpet","blockRuntimeId":12609,"groupId":19},{"id":"minecraft:yellow_carpet","blockRuntimeId":10501,"groupId":19},{"id":"minecraft:lime_carpet","blockRuntimeId":12048,"groupId":19},{"id":"minecraft:green_carpet","blockRuntimeId":5031,"groupId":19},{"id":"minecraft:cyan_carpet","blockRuntimeId":4907,"groupId":19},{"id":"minecraft:light_blue_carpet","blockRuntimeId":7086,"groupId":19},{"id":"minecraft:blue_carpet","blockRuntimeId":942,"groupId":19},{"id":"minecraft:purple_carpet","blockRuntimeId":13983,"groupId":19},{"id":"minecraft:magenta_carpet","blockRuntimeId":1202,"groupId":19},{"id":"minecraft:pink_carpet","blockRuntimeId":13928,"groupId":19},{"id":"minecraft:white_concrete_powder","blockRuntimeId":7471,"groupId":20},{"id":"minecraft:light_gray_concrete_powder","blockRuntimeId":13261,"groupId":20},{"id":"minecraft:gray_concrete_powder","blockRuntimeId":13398,"groupId":20},{"id":"minecraft:black_concrete_powder","blockRuntimeId":1704,"groupId":20},{"id":"minecraft:brown_concrete_powder","blockRuntimeId":10048,"groupId":20},{"id":"minecraft:red_concrete_powder","blockRuntimeId":13260,"groupId":20},{"id":"minecraft:orange_concrete_powder","blockRuntimeId":14894,"groupId":20},{"id":"minecraft:yellow_concrete_powder","blockRuntimeId":13799,"groupId":20},{"id":"minecraft:lime_concrete_powder","blockRuntimeId":14307,"groupId":20},{"id":"minecraft:green_concrete_powder","blockRuntimeId":12536,"groupId":20},{"id":"minecraft:cyan_concrete_powder","blockRuntimeId":4808,"groupId":20},{"id":"minecraft:light_blue_concrete_powder","blockRuntimeId":71,"groupId":20},{"id":"minecraft:blue_concrete_powder","blockRuntimeId":12045,"groupId":20},{"id":"minecraft:purple_concrete_powder","blockRuntimeId":11880,"groupId":20},{"id":"minecraft:magenta_concrete_powder","blockRuntimeId":6214,"groupId":20},{"id":"minecraft:pink_concrete_powder","blockRuntimeId":5994,"groupId":20},{"id":"minecraft:white_concrete","blockRuntimeId":14551,"groupId":21},{"id":"minecraft:light_gray_concrete","blockRuntimeId":2588,"groupId":21},{"id":"minecraft:gray_concrete","blockRuntimeId":13401,"groupId":21},{"id":"minecraft:black_concrete","blockRuntimeId":12013,"groupId":21},{"id":"minecraft:brown_concrete","blockRuntimeId":11506,"groupId":21},{"id":"minecraft:red_concrete","blockRuntimeId":13927,"groupId":21},{"id":"minecraft:orange_concrete","blockRuntimeId":12046,"groupId":21},{"id":"minecraft:yellow_concrete","blockRuntimeId":4906,"groupId":21},{"id":"minecraft:lime_concrete","blockRuntimeId":6373,"groupId":21},{"id":"minecraft:green_concrete","blockRuntimeId":10474,"groupId":21},{"id":"minecraft:cyan_concrete","blockRuntimeId":13278,"groupId":21},{"id":"minecraft:light_blue_concrete","blockRuntimeId":13669,"groupId":21},{"id":"minecraft:blue_concrete","blockRuntimeId":13288,"groupId":21},{"id":"minecraft:purple_concrete","blockRuntimeId":5881,"groupId":21},{"id":"minecraft:magenta_concrete","blockRuntimeId":6115,"groupId":21},{"id":"minecraft:pink_concrete","blockRuntimeId":4421,"groupId":21},{"id":"minecraft:hardened_clay","blockRuntimeId":1961,"groupId":22},{"id":"minecraft:white_terracotta","blockRuntimeId":7082,"groupId":22},{"id":"minecraft:light_gray_terracotta","blockRuntimeId":2395,"groupId":22},{"id":"minecraft:gray_terracotta","blockRuntimeId":6353,"groupId":22},{"id":"minecraft:black_terracotta","blockRuntimeId":11368,"groupId":22},{"id":"minecraft:brown_terracotta","blockRuntimeId":14333,"groupId":22},{"id":"minecraft:red_terracotta","blockRuntimeId":3110,"groupId":22},{"id":"minecraft:orange_terracotta","blockRuntimeId":13760,"groupId":22},{"id":"minecraft:yellow_terracotta","blockRuntimeId":5893,"groupId":22},{"id":"minecraft:lime_terracotta","blockRuntimeId":15068,"groupId":22},{"id":"minecraft:green_terracotta","blockRuntimeId":5007,"groupId":22},{"id":"minecraft:cyan_terracotta","blockRuntimeId":0,"groupId":22},{"id":"minecraft:light_blue_terracotta","blockRuntimeId":6109,"groupId":22},{"id":"minecraft:blue_terracotta","blockRuntimeId":4952,"groupId":22},{"id":"minecraft:purple_terracotta","blockRuntimeId":11691,"groupId":22},{"id":"minecraft:magenta_terracotta","blockRuntimeId":6379,"groupId":22},{"id":"minecraft:pink_terracotta","blockRuntimeId":5837,"groupId":22},{"id":"minecraft:white_glazed_terracotta","blockRuntimeId":9176,"groupId":23},{"id":"minecraft:silver_glazed_terracotta","blockRuntimeId":4407,"groupId":23},{"id":"minecraft:gray_glazed_terracotta","blockRuntimeId":15085,"groupId":23},{"id":"minecraft:black_glazed_terracotta","blockRuntimeId":9963,"groupId":23},{"id":"minecraft:brown_glazed_terracotta","blockRuntimeId":4813,"groupId":23},{"id":"minecraft:red_glazed_terracotta","blockRuntimeId":5851,"groupId":23},{"id":"minecraft:orange_glazed_terracotta","blockRuntimeId":3451,"groupId":23},{"id":"minecraft:yellow_glazed_terracotta","blockRuntimeId":3075,"groupId":23},{"id":"minecraft:lime_glazed_terracotta","blockRuntimeId":1165,"groupId":23},{"id":"minecraft:green_glazed_terracotta","blockRuntimeId":11950,"groupId":23},{"id":"minecraft:cyan_glazed_terracotta","blockRuntimeId":8214,"groupId":23},{"id":"minecraft:light_blue_glazed_terracotta","blockRuntimeId":8363,"groupId":23},{"id":"minecraft:blue_glazed_terracotta","blockRuntimeId":8357,"groupId":23},{"id":"minecraft:purple_glazed_terracotta","blockRuntimeId":12530,"groupId":23},{"id":"minecraft:magenta_glazed_terracotta","blockRuntimeId":3279,"groupId":23},{"id":"minecraft:pink_glazed_terracotta","blockRuntimeId":11881,"groupId":23},{"id":"minecraft:purpur_block","blockRuntimeId":13943,"groupId":24},{"id":"minecraft:purpur_pillar","blockRuntimeId":9288,"groupId":24},{"id":"minecraft:packed_mud","blockRuntimeId":1261,"groupId":24},{"id":"minecraft:mud_bricks","blockRuntimeId":12230,"groupId":24},{"id":"minecraft:nether_wart_block","blockRuntimeId":5998,"groupId":25},{"id":"minecraft:warped_wart_block","blockRuntimeId":10482,"groupId":25},{"id":"minecraft:shroomlight","blockRuntimeId":7908,"groupId":25},{"id":"minecraft:crimson_nylium","blockRuntimeId":5879,"groupId":25},{"id":"minecraft:warped_nylium","blockRuntimeId":11646,"groupId":25},{"id":"minecraft:netherrack","blockRuntimeId":12572,"groupId":25},{"id":"minecraft:soul_soil","blockRuntimeId":9402,"groupId":25},{"id":"minecraft:grass_block","blockRuntimeId":10539,"groupId":25},{"id":"minecraft:podzol","blockRuntimeId":6869,"groupId":25},{"id":"minecraft:mycelium","blockRuntimeId":4980,"groupId":25},{"id":"minecraft:grass_path","blockRuntimeId":14569,"groupId":25},{"id":"minecraft:dirt","blockRuntimeId":9362,"groupId":25},{"id":"minecraft:coarse_dirt","blockRuntimeId":6304,"groupId":25},{"id":"minecraft:dirt_with_roots","blockRuntimeId":8260,"groupId":25},{"id":"minecraft:farmland","blockRuntimeId":5616,"groupId":25},{"id":"minecraft:mud","blockRuntimeId":11990,"groupId":25},{"id":"minecraft:clay","blockRuntimeId":12703,"groupId":25},{"id":"minecraft:iron_ore","blockRuntimeId":6909,"groupId":26},{"id":"minecraft:gold_ore","blockRuntimeId":3074,"groupId":26},{"id":"minecraft:diamond_ore","blockRuntimeId":6113,"groupId":26},{"id":"minecraft:lapis_ore","blockRuntimeId":13926,"groupId":26},{"id":"minecraft:redstone_ore","blockRuntimeId":5979,"groupId":26},{"id":"minecraft:coal_ore","blockRuntimeId":5973,"groupId":26},{"id":"minecraft:copper_ore","blockRuntimeId":4838,"groupId":26},{"id":"minecraft:emerald_ore","blockRuntimeId":13381,"groupId":26},{"id":"minecraft:quartz_ore","blockRuntimeId":6272,"groupId":26},{"id":"minecraft:nether_gold_ore","blockRuntimeId":32,"groupId":26},{"id":"minecraft:ancient_debris","blockRuntimeId":11378,"groupId":26},{"id":"minecraft:deepslate_iron_ore","blockRuntimeId":13290,"groupId":26},{"id":"minecraft:deepslate_gold_ore","blockRuntimeId":11377,"groupId":26},{"id":"minecraft:deepslate_diamond_ore","blockRuntimeId":14336,"groupId":26},{"id":"minecraft:deepslate_lapis_ore","blockRuntimeId":13262,"groupId":26},{"id":"minecraft:deepslate_redstone_ore","blockRuntimeId":11957,"groupId":26},{"id":"minecraft:deepslate_emerald_ore","blockRuntimeId":11647,"groupId":26},{"id":"minecraft:deepslate_coal_ore","blockRuntimeId":13168,"groupId":26},{"id":"minecraft:deepslate_copper_ore","blockRuntimeId":276,"groupId":26},{"id":"minecraft:stone","blockRuntimeId":2403,"groupId":27},{"id":"minecraft:granite","blockRuntimeId":245,"groupId":27},{"id":"minecraft:diorite","blockRuntimeId":312,"groupId":27},{"id":"minecraft:andesite","blockRuntimeId":2401,"groupId":27},{"id":"minecraft:blackstone","blockRuntimeId":13814,"groupId":27},{"id":"minecraft:deepslate","blockRuntimeId":1199,"groupId":27},{"id":"minecraft:tuff","blockRuntimeId":1639,"groupId":27},{"id":"minecraft:basalt","blockRuntimeId":6101,"groupId":27},{"id":"minecraft:polished_granite","blockRuntimeId":1719,"groupId":27},{"id":"minecraft:polished_diorite","blockRuntimeId":9950,"groupId":27},{"id":"minecraft:polished_andesite","blockRuntimeId":13770,"groupId":27},{"id":"minecraft:polished_blackstone","blockRuntimeId":4979,"groupId":27},{"id":"minecraft:polished_deepslate","blockRuntimeId":13988,"groupId":27},{"id":"minecraft:polished_tuff","blockRuntimeId":13227,"groupId":27},{"id":"minecraft:polished_basalt","blockRuntimeId":29,"groupId":27},{"id":"minecraft:smooth_basalt","blockRuntimeId":3458,"groupId":27},{"id":"minecraft:gravel","blockRuntimeId":15129,"groupId":28},{"id":"minecraft:sand","blockRuntimeId":5895,"groupId":28},{"id":"minecraft:red_sand","blockRuntimeId":2603,"groupId":28},{"id":"minecraft:cactus","blockRuntimeId":12338,"groupId":28},{"id":"minecraft:oak_log","blockRuntimeId":1254,"groupId":29},{"id":"minecraft:stripped_oak_log","blockRuntimeId":13765,"groupId":29},{"id":"minecraft:spruce_log","blockRuntimeId":5969,"groupId":29},{"id":"minecraft:stripped_spruce_log","blockRuntimeId":11580,"groupId":29},{"id":"minecraft:birch_log","blockRuntimeId":2406,"groupId":29},{"id":"minecraft:stripped_birch_log","blockRuntimeId":10631,"groupId":29},{"id":"minecraft:jungle_log","blockRuntimeId":1150,"groupId":29},{"id":"minecraft:stripped_jungle_log","blockRuntimeId":2346,"groupId":29},{"id":"minecraft:acacia_log","blockRuntimeId":6082,"groupId":29},{"id":"minecraft:stripped_acacia_log","blockRuntimeId":10017,"groupId":29},{"id":"minecraft:dark_oak_log","blockRuntimeId":3837,"groupId":29},{"id":"minecraft:stripped_dark_oak_log","blockRuntimeId":1144,"groupId":29},{"id":"minecraft:mangrove_log","blockRuntimeId":1640,"groupId":29},{"id":"minecraft:stripped_mangrove_log","blockRuntimeId":15126,"groupId":29},{"id":"minecraft:cherry_log","blockRuntimeId":13266,"groupId":29},{"id":"minecraft:stripped_cherry_log","blockRuntimeId":6197,"groupId":29},{"id":"minecraft:pale_oak_log","blockRuntimeId":11095,"groupId":29},{"id":"minecraft:stripped_pale_oak_log","blockRuntimeId":5989,"groupId":29},{"id":"minecraft:crimson_stem","blockRuntimeId":10471,"groupId":29},{"id":"minecraft:stripped_crimson_stem","blockRuntimeId":12300,"groupId":29},{"id":"minecraft:warped_stem","blockRuntimeId":11805,"groupId":29},{"id":"minecraft:stripped_warped_stem","blockRuntimeId":13595,"groupId":29},{"id":"minecraft:oak_wood","blockRuntimeId":7530,"groupId":30},{"id":"minecraft:stripped_oak_wood","blockRuntimeId":7083,"groupId":30},{"id":"minecraft:spruce_wood","blockRuntimeId":13811,"groupId":30},{"id":"minecraft:stripped_spruce_wood","blockRuntimeId":2575,"groupId":30},{"id":"minecraft:birch_wood","blockRuntimeId":2600,"groupId":30},{"id":"minecraft:stripped_birch_wood","blockRuntimeId":6313,"groupId":30},{"id":"minecraft:jungle_wood","blockRuntimeId":2616,"groupId":30},{"id":"minecraft:stripped_jungle_wood","blockRuntimeId":1635,"groupId":30},{"id":"minecraft:acacia_wood","blockRuntimeId":12243,"groupId":30},{"id":"minecraft:stripped_acacia_wood","blockRuntimeId":1239,"groupId":30},{"id":"minecraft:dark_oak_wood","blockRuntimeId":10,"groupId":30},{"id":"minecraft:stripped_dark_oak_wood","blockRuntimeId":7521,"groupId":30},{"id":"minecraft:mangrove_wood","blockRuntimeId":5848,"groupId":30},{"id":"minecraft:stripped_mangrove_wood","blockRuntimeId":5928,"groupId":30},{"id":"minecraft:cherry_wood","blockRuntimeId":12697,"groupId":30},{"id":"minecraft:stripped_cherry_wood","blockRuntimeId":7557,"groupId":30},{"id":"minecraft:pale_oak_wood","blockRuntimeId":8102,"groupId":30},{"id":"minecraft:stripped_pale_oak_wood","blockRuntimeId":3460,"groupId":30},{"id":"minecraft:crimson_hyphae","blockRuntimeId":6041,"groupId":30},{"id":"minecraft:stripped_crimson_hyphae","blockRuntimeId":11813,"groupId":30},{"id":"minecraft:warped_hyphae","blockRuntimeId":10479,"groupId":30},{"id":"minecraft:stripped_warped_hyphae","blockRuntimeId":9182,"groupId":30},{"id":"minecraft:bamboo_block","blockRuntimeId":72,"groupId":30},{"id":"minecraft:stripped_bamboo_block","blockRuntimeId":4882,"groupId":30},{"id":"minecraft:oak_leaves","blockRuntimeId":2623,"groupId":31},{"id":"minecraft:spruce_leaves","blockRuntimeId":6157,"groupId":31},{"id":"minecraft:birch_leaves","blockRuntimeId":5833,"groupId":31},{"id":"minecraft:jungle_leaves","blockRuntimeId":8201,"groupId":31},{"id":"minecraft:acacia_leaves","blockRuntimeId":3658,"groupId":31},{"id":"minecraft:dark_oak_leaves","blockRuntimeId":11118,"groupId":31},{"id":"minecraft:mangrove_leaves","blockRuntimeId":11982,"groupId":31},{"id":"minecraft:cherry_leaves","blockRuntimeId":9953,"groupId":31},{"id":"minecraft:pale_oak_leaves","blockRuntimeId":1652,"groupId":31},{"id":"minecraft:azalea_leaves","blockRuntimeId":13939,"groupId":31},{"id":"minecraft:azalea_leaves_flowered","blockRuntimeId":11635,"groupId":31},{"id":"minecraft:oak_sapling","blockRuntimeId":2391,"groupId":32},{"id":"minecraft:spruce_sapling","blockRuntimeId":5891,"groupId":32},{"id":"minecraft:birch_sapling","blockRuntimeId":13741,"groupId":32},{"id":"minecraft:jungle_sapling","blockRuntimeId":11082,"groupId":32},{"id":"minecraft:acacia_sapling","blockRuntimeId":11648,"groupId":32},{"id":"minecraft:dark_oak_sapling","blockRuntimeId":1701,"groupId":32},{"id":"minecraft:mangrove_propagule","blockRuntimeId":12328,"groupId":32},{"id":"minecraft:cherry_sapling","blockRuntimeId":13264,"groupId":32},{"id":"minecraft:pale_oak_sapling","blockRuntimeId":1717,"groupId":32},{"id":"minecraft:bee_nest","blockRuntimeId":9365,"groupId":33},{"id":"minecraft:wheat_seeds","blockRuntimeId":0,"groupId":34},{"id":"minecraft:pumpkin_seeds","blockRuntimeId":0,"groupId":34},{"id":"minecraft:melon_seeds","blockRuntimeId":0,"groupId":34},{"id":"minecraft:beetroot_seeds","blockRuntimeId":0,"groupId":34},{"id":"minecraft:torchflower_seeds","blockRuntimeId":0,"groupId":34},{"id":"minecraft:pitcher_pod","blockRuntimeId":0,"groupId":34},{"id":"minecraft:wheat","blockRuntimeId":0,"groupId":35},{"id":"minecraft:beetroot","blockRuntimeId":0,"groupId":35},{"id":"minecraft:potato","blockRuntimeId":0,"groupId":35},{"id":"minecraft:poisonous_potato","blockRuntimeId":0,"groupId":35},{"id":"minecraft:carrot","blockRuntimeId":0,"groupId":35},{"id":"minecraft:golden_carrot","blockRuntimeId":0,"groupId":35},{"id":"minecraft:apple","blockRuntimeId":0,"groupId":35},{"id":"minecraft:golden_apple","blockRuntimeId":0,"groupId":35},{"id":"minecraft:enchanted_golden_apple","blockRuntimeId":0,"groupId":35},{"id":"minecraft:melon_block","blockRuntimeId":1703,"groupId":35},{"id":"minecraft:melon_slice","blockRuntimeId":0,"groupId":35},{"id":"minecraft:glistering_melon_slice","blockRuntimeId":0,"groupId":35},{"id":"minecraft:sweet_berries","blockRuntimeId":0,"groupId":35},{"id":"minecraft:glow_berries","blockRuntimeId":0,"groupId":35},{"id":"minecraft:pumpkin","blockRuntimeId":6342,"groupId":35},{"id":"minecraft:carved_pumpkin","blockRuntimeId":13573,"groupId":36},{"id":"minecraft:lit_pumpkin","blockRuntimeId":11991,"groupId":36},{"id":"minecraft:honeycomb","blockRuntimeId":0,"groupId":36},{"id":"minecraft:resin_clump","blockRuntimeId":2627,"groupId":36},{"id":"minecraft:fern","blockRuntimeId":11140,"groupId":37},{"id":"minecraft:large_fern","blockRuntimeId":11811,"groupId":37},{"id":"minecraft:short_grass","blockRuntimeId":11887,"groupId":37},{"id":"minecraft:tall_grass","blockRuntimeId":11787,"groupId":37},{"id":"minecraft:nether_sprouts","blockRuntimeId":0,"groupId":37},{"id":"minecraft:fire_coral","blockRuntimeId":2402,"groupId":38},{"id":"minecraft:brain_coral","blockRuntimeId":2574,"groupId":38},{"id":"minecraft:bubble_coral","blockRuntimeId":11510,"groupId":38},{"id":"minecraft:tube_coral","blockRuntimeId":14000,"groupId":38},{"id":"minecraft:horn_coral","blockRuntimeId":4905,"groupId":38},{"id":"minecraft:dead_fire_coral","blockRuntimeId":11569,"groupId":38},{"id":"minecraft:dead_brain_coral","blockRuntimeId":13167,"groupId":38},{"id":"minecraft:dead_bubble_coral","blockRuntimeId":13263,"groupId":38},{"id":"minecraft:dead_tube_coral","blockRuntimeId":5997,"groupId":38},{"id":"minecraft:dead_horn_coral","blockRuntimeId":10536,"groupId":38},{"id":"minecraft:fire_coral_fan","blockRuntimeId":11890,"groupId":38},{"id":"minecraft:brain_coral_fan","blockRuntimeId":2691,"groupId":38},{"id":"minecraft:bubble_coral_fan","blockRuntimeId":1153,"groupId":38},{"id":"minecraft:tube_coral_fan","blockRuntimeId":1193,"groupId":38},{"id":"minecraft:horn_coral_fan","blockRuntimeId":11808,"groupId":38},{"id":"minecraft:dead_fire_coral_fan","blockRuntimeId":12050,"groupId":38},{"id":"minecraft:dead_brain_coral_fan","blockRuntimeId":1187,"groupId":38},{"id":"minecraft:dead_bubble_coral_fan","blockRuntimeId":1148,"groupId":38},{"id":"minecraft:dead_tube_coral_fan","blockRuntimeId":12019,"groupId":38},{"id":"minecraft:dead_horn_coral_fan","blockRuntimeId":12610,"groupId":38},{"id":"minecraft:crimson_roots","blockRuntimeId":13790,"groupId":39},{"id":"minecraft:warped_roots","blockRuntimeId":6114,"groupId":39},{"id":"minecraft:dandelion","blockRuntimeId":15167,"groupId":39},{"id":"minecraft:poppy","blockRuntimeId":5026,"groupId":39},{"id":"minecraft:blue_orchid","blockRuntimeId":5823,"groupId":39},{"id":"minecraft:allium","blockRuntimeId":1663,"groupId":39},{"id":"minecraft:azure_bluet","blockRuntimeId":742,"groupId":39},{"id":"minecraft:red_tulip","blockRuntimeId":13670,"groupId":39},{"id":"minecraft:orange_tulip","blockRuntimeId":12227,"groupId":39},{"id":"minecraft:white_tulip","blockRuntimeId":6372,"groupId":39},{"id":"minecraft:pink_tulip","blockRuntimeId":5986,"groupId":39},{"id":"minecraft:oxeye_daisy","blockRuntimeId":13301,"groupId":39},{"id":"minecraft:cornflower","blockRuntimeId":7925,"groupId":39},{"id":"minecraft:lily_of_the_valley","blockRuntimeId":1164,"groupId":39},{"id":"minecraft:sunflower","blockRuntimeId":6442,"groupId":39},{"id":"minecraft:lilac","blockRuntimeId":13317,"groupId":39},{"id":"minecraft:rose_bush","blockRuntimeId":8369,"groupId":39},{"id":"minecraft:peony","blockRuntimeId":14048,"groupId":39},{"id":"minecraft:pitcher_plant","blockRuntimeId":5066,"groupId":39},{"id":"minecraft:pink_petals","blockRuntimeId":6444,"groupId":39},{"id":"minecraft:wither_rose","blockRuntimeId":11469,"groupId":39},{"id":"minecraft:torchflower","blockRuntimeId":11143,"groupId":39},{"id":"minecraft:closed_eyeblossom","blockRuntimeId":12049,"groupId":39},{"id":"minecraft:open_eyeblossom","blockRuntimeId":1715,"groupId":39},{"id":"minecraft:white_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:light_gray_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:gray_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:black_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:brown_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:red_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:orange_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:yellow_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:lime_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:green_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:cyan_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:light_blue_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:blue_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:purple_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:magenta_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:pink_dye","blockRuntimeId":0,"groupId":40},{"id":"minecraft:ink_sac","blockRuntimeId":0,"groupId":41},{"id":"minecraft:glow_ink_sac","blockRuntimeId":0,"groupId":41},{"id":"minecraft:cocoa_beans","blockRuntimeId":0,"groupId":41},{"id":"minecraft:lapis_lazuli","blockRuntimeId":0,"groupId":41},{"id":"minecraft:bone_meal","blockRuntimeId":0,"groupId":41},{"id":"minecraft:vine","blockRuntimeId":3038,"groupId":41},{"id":"minecraft:weeping_vines","blockRuntimeId":8758,"groupId":41},{"id":"minecraft:twisting_vines","blockRuntimeId":9297,"groupId":41},{"id":"minecraft:waterlily","blockRuntimeId":3459,"groupId":41},{"id":"minecraft:seagrass","blockRuntimeId":1190,"groupId":41},{"id":"minecraft:kelp","blockRuntimeId":0,"groupId":41},{"id":"minecraft:deadbush","blockRuntimeId":6896,"groupId":41},{"id":"minecraft:bamboo","blockRuntimeId":4981,"groupId":41},{"id":"minecraft:snow","blockRuntimeId":5894,"groupId":41},{"id":"minecraft:ice","blockRuntimeId":11995,"groupId":41},{"id":"minecraft:packed_ice","blockRuntimeId":1260,"groupId":41},{"id":"minecraft:blue_ice","blockRuntimeId":12549,"groupId":41},{"id":"minecraft:snow_layer","blockRuntimeId":916,"groupId":41},{"id":"minecraft:pointed_dripstone","blockRuntimeId":13613,"groupId":41},{"id":"minecraft:dripstone_block","blockRuntimeId":3037,"groupId":41},{"id":"minecraft:moss_carpet","blockRuntimeId":1264,"groupId":41},{"id":"minecraft:moss_block","blockRuntimeId":11879,"groupId":41},{"id":"minecraft:pale_moss_carpet","blockRuntimeId":11147,"groupId":41},{"id":"minecraft:pale_moss_block","blockRuntimeId":9359,"groupId":41},{"id":"minecraft:pale_hanging_moss","blockRuntimeId":11145,"groupId":41},{"id":"minecraft:hanging_roots","blockRuntimeId":969,"groupId":41},{"id":"minecraft:mangrove_roots","blockRuntimeId":11481,"groupId":41},{"id":"minecraft:muddy_mangrove_roots","blockRuntimeId":1616,"groupId":41},{"id":"minecraft:big_dripleaf","blockRuntimeId":10639,"groupId":41},{"id":"minecraft:small_dripleaf_block","blockRuntimeId":6067,"groupId":41},{"id":"minecraft:spore_blossom","blockRuntimeId":13338,"groupId":41},{"id":"minecraft:azalea","blockRuntimeId":12229,"groupId":41},{"id":"minecraft:flowering_azalea","blockRuntimeId":8371,"groupId":41},{"id":"minecraft:glow_lichen","blockRuntimeId":9224,"groupId":41},{"id":"minecraft:amethyst_block","blockRuntimeId":1300,"groupId":41},{"id":"minecraft:budding_amethyst","blockRuntimeId":12354,"groupId":41},{"id":"minecraft:amethyst_cluster","blockRuntimeId":14131,"groupId":41},{"id":"minecraft:large_amethyst_bud","blockRuntimeId":6951,"groupId":41},{"id":"minecraft:medium_amethyst_bud","blockRuntimeId":6128,"groupId":41},{"id":"minecraft:small_amethyst_bud","blockRuntimeId":1575,"groupId":41},{"id":"minecraft:calcite","blockRuntimeId":1141,"groupId":41},{"id":"minecraft:chicken","blockRuntimeId":0,"groupId":42},{"id":"minecraft:porkchop","blockRuntimeId":0,"groupId":42},{"id":"minecraft:beef","blockRuntimeId":0,"groupId":42},{"id":"minecraft:mutton","blockRuntimeId":0,"groupId":42},{"id":"minecraft:rabbit","blockRuntimeId":0,"groupId":42},{"id":"minecraft:cod","blockRuntimeId":0,"groupId":42},{"id":"minecraft:salmon","blockRuntimeId":0,"groupId":42},{"id":"minecraft:tropical_fish","blockRuntimeId":0,"groupId":42},{"id":"minecraft:pufferfish","blockRuntimeId":0,"groupId":42},{"id":"minecraft:brown_mushroom","blockRuntimeId":4807,"groupId":43},{"id":"minecraft:red_mushroom","blockRuntimeId":6376,"groupId":43},{"id":"minecraft:crimson_fungus","blockRuntimeId":13986,"groupId":43},{"id":"minecraft:warped_fungus","blockRuntimeId":1265,"groupId":43},{"id":"minecraft:brown_mushroom_block","blockRuntimeId":13396,"groupId":43},{"id":"minecraft:red_mushroom_block","blockRuntimeId":4899,"groupId":43},{"id":"minecraft:mushroom_stem","blockRuntimeId":11367,"groupId":43},{"id":"minecraft:egg","blockRuntimeId":0,"groupId":44},{"id":"minecraft:sugar_cane","blockRuntimeId":0,"groupId":44},{"id":"minecraft:sugar","blockRuntimeId":0,"groupId":44},{"id":"minecraft:rotten_flesh","blockRuntimeId":0,"groupId":44},{"id":"minecraft:bone","blockRuntimeId":0,"groupId":44},{"id":"minecraft:web","blockRuntimeId":12018,"groupId":44},{"id":"minecraft:spider_eye","blockRuntimeId":0,"groupId":44},{"id":"minecraft:mob_spawner","blockRuntimeId":1716,"groupId":44},{"id":"minecraft:trial_spawner","blockRuntimeId":14556,"groupId":44},{"id":"minecraft:vault","blockRuntimeId":11379,"groupId":44},{"id":"minecraft:creaking_heart","blockRuntimeId":13638,"groupId":44},{"id":"minecraft:end_portal_frame","blockRuntimeId":11309,"groupId":44},{"id":"minecraft:infested_stone","blockRuntimeId":11144,"groupId":45},{"id":"minecraft:infested_cobblestone","blockRuntimeId":5840,"groupId":45},{"id":"minecraft:infested_stone_bricks","blockRuntimeId":8105,"groupId":45},{"id":"minecraft:infested_mossy_stone_bricks","blockRuntimeId":2865,"groupId":45},{"id":"minecraft:infested_cracked_stone_bricks","blockRuntimeId":2620,"groupId":45},{"id":"minecraft:infested_chiseled_stone_bricks","blockRuntimeId":5984,"groupId":45},{"id":"minecraft:infested_deepslate","blockRuntimeId":6860,"groupId":45},{"id":"minecraft:dragon_egg","blockRuntimeId":13287,"groupId":46},{"id":"minecraft:turtle_egg","blockRuntimeId":14308,"groupId":46},{"id":"minecraft:sniffer_egg","blockRuntimeId":12355,"groupId":46},{"id":"minecraft:frog_spawn","blockRuntimeId":6161,"groupId":46},{"id":"minecraft:pearlescent_froglight","blockRuntimeId":11772,"groupId":46},{"id":"minecraft:verdant_froglight","blockRuntimeId":11798,"groupId":46},{"id":"minecraft:ochre_froglight","blockRuntimeId":4224,"groupId":46},{"id":"minecraft:chicken_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:bee_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:cow_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:pig_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:sheep_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:wolf_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:polar_bear_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:ocelot_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:cat_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:mooshroom_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:bat_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:parrot_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:rabbit_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:llama_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:horse_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:donkey_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:mule_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:skeleton_horse_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:zombie_horse_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:tropical_fish_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:cod_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:pufferfish_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:salmon_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:dolphin_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:turtle_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:panda_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:fox_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:creeper_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:enderman_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:silverfish_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:skeleton_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:wither_skeleton_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:stray_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:slime_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:spider_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:zombie_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:zombie_pigman_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:husk_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:drowned_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:squid_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:glow_squid_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:cave_spider_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:witch_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:guardian_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:elder_guardian_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:endermite_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:magma_cube_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:strider_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:hoglin_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:piglin_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:zoglin_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:piglin_brute_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:goat_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:axolotl_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:warden_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:allay_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:frog_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:tadpole_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:trader_llama_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:camel_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:ghast_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:blaze_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:shulker_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:vindicator_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:evoker_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:vex_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:villager_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:wandering_trader_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:zombie_villager_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:phantom_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:pillager_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:ravager_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:iron_golem_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:snow_golem_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:sniffer_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:breeze_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:armadillo_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:bogged_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:creaking_spawn_egg","blockRuntimeId":0,"groupId":47},{"id":"minecraft:obsidian","blockRuntimeId":1755,"groupId":48},{"id":"minecraft:crying_obsidian","blockRuntimeId":12047,"groupId":48},{"id":"minecraft:bedrock","blockRuntimeId":12537,"groupId":48},{"id":"minecraft:soul_sand","blockRuntimeId":9403,"groupId":48},{"id":"minecraft:magma","blockRuntimeId":14320,"groupId":48},{"id":"minecraft:nether_wart","blockRuntimeId":0,"groupId":48},{"id":"minecraft:end_stone","blockRuntimeId":5534,"groupId":48},{"id":"minecraft:chorus_flower","blockRuntimeId":6305,"groupId":48},{"id":"minecraft:chorus_plant","blockRuntimeId":8784,"groupId":48},{"id":"minecraft:chorus_fruit","blockRuntimeId":0,"groupId":48},{"id":"minecraft:popped_chorus_fruit","blockRuntimeId":0,"groupId":48},{"id":"minecraft:sponge","blockRuntimeId":1945,"groupId":48},{"id":"minecraft:wet_sponge","blockRuntimeId":82,"groupId":48},{"id":"minecraft:tube_coral_block","blockRuntimeId":13735,"groupId":49},{"id":"minecraft:brain_coral_block","blockRuntimeId":9206,"groupId":49},{"id":"minecraft:bubble_coral_block","blockRuntimeId":5983,"groupId":49},{"id":"minecraft:fire_coral_block","blockRuntimeId":6213,"groupId":49},{"id":"minecraft:horn_coral_block","blockRuntimeId":8148,"groupId":49},{"id":"minecraft:dead_tube_coral_block","blockRuntimeId":5533,"groupId":49},{"id":"minecraft:dead_brain_coral_block","blockRuntimeId":11958,"groupId":49},{"id":"minecraft:dead_bubble_coral_block","blockRuntimeId":3098,"groupId":49},{"id":"minecraft:dead_fire_coral_block","blockRuntimeId":3273,"groupId":49},{"id":"minecraft:dead_horn_coral_block","blockRuntimeId":11797,"groupId":49},{"id":"minecraft:sculk","blockRuntimeId":12570,"groupId":50},{"id":"minecraft:sculk_vein","blockRuntimeId":13103,"groupId":50},{"id":"minecraft:sculk_catalyst","blockRuntimeId":4902,"groupId":50},{"id":"minecraft:sculk_shrieker","blockRuntimeId":1156,"groupId":50},{"id":"minecraft:sculk_sensor","blockRuntimeId":6142,"groupId":50},{"id":"minecraft:calibrated_sculk_sensor","blockRuntimeId":9987,"groupId":50},{"id":"minecraft:reinforced_deepslate","blockRuntimeId":9951,"groupId":51},{"id":"minecraft:leather_helmet","blockRuntimeId":0,"groupId":52},{"id":"minecraft:chainmail_helmet","blockRuntimeId":0,"groupId":52},{"id":"minecraft:iron_helmet","blockRuntimeId":0,"groupId":52},{"id":"minecraft:golden_helmet","blockRuntimeId":0,"groupId":52},{"id":"minecraft:diamond_helmet","blockRuntimeId":0,"groupId":52},{"id":"minecraft:netherite_helmet","blockRuntimeId":0,"groupId":52},{"id":"minecraft:leather_chestplate","blockRuntimeId":0,"groupId":53},{"id":"minecraft:chainmail_chestplate","blockRuntimeId":0,"groupId":53},{"id":"minecraft:iron_chestplate","blockRuntimeId":0,"groupId":53},{"id":"minecraft:golden_chestplate","blockRuntimeId":0,"groupId":53},{"id":"minecraft:diamond_chestplate","blockRuntimeId":0,"groupId":53},{"id":"minecraft:netherite_chestplate","blockRuntimeId":0,"groupId":53},{"id":"minecraft:leather_leggings","blockRuntimeId":0,"groupId":54},{"id":"minecraft:chainmail_leggings","blockRuntimeId":0,"groupId":54},{"id":"minecraft:iron_leggings","blockRuntimeId":0,"groupId":54},{"id":"minecraft:golden_leggings","blockRuntimeId":0,"groupId":54},{"id":"minecraft:diamond_leggings","blockRuntimeId":0,"groupId":54},{"id":"minecraft:netherite_leggings","blockRuntimeId":0,"groupId":54},{"id":"minecraft:leather_boots","blockRuntimeId":0,"groupId":55},{"id":"minecraft:chainmail_boots","blockRuntimeId":0,"groupId":55},{"id":"minecraft:iron_boots","blockRuntimeId":0,"groupId":55},{"id":"minecraft:golden_boots","blockRuntimeId":0,"groupId":55},{"id":"minecraft:diamond_boots","blockRuntimeId":0,"groupId":55},{"id":"minecraft:netherite_boots","blockRuntimeId":0,"groupId":55},{"id":"minecraft:wooden_sword","blockRuntimeId":0,"groupId":56},{"id":"minecraft:stone_sword","blockRuntimeId":0,"groupId":56},{"id":"minecraft:iron_sword","blockRuntimeId":0,"groupId":56},{"id":"minecraft:golden_sword","blockRuntimeId":0,"groupId":56},{"id":"minecraft:diamond_sword","blockRuntimeId":0,"groupId":56},{"id":"minecraft:netherite_sword","blockRuntimeId":0,"groupId":56},{"id":"minecraft:wooden_axe","blockRuntimeId":0,"groupId":57},{"id":"minecraft:stone_axe","blockRuntimeId":0,"groupId":57},{"id":"minecraft:iron_axe","blockRuntimeId":0,"groupId":57},{"id":"minecraft:golden_axe","blockRuntimeId":0,"groupId":57},{"id":"minecraft:diamond_axe","blockRuntimeId":0,"groupId":57},{"id":"minecraft:netherite_axe","blockRuntimeId":0,"groupId":57},{"id":"minecraft:wooden_pickaxe","blockRuntimeId":0,"groupId":58},{"id":"minecraft:stone_pickaxe","blockRuntimeId":0,"groupId":58},{"id":"minecraft:iron_pickaxe","blockRuntimeId":0,"groupId":58},{"id":"minecraft:golden_pickaxe","blockRuntimeId":0,"groupId":58},{"id":"minecraft:diamond_pickaxe","blockRuntimeId":0,"groupId":58},{"id":"minecraft:netherite_pickaxe","blockRuntimeId":0,"groupId":58},{"id":"minecraft:wooden_shovel","blockRuntimeId":0,"groupId":59},{"id":"minecraft:stone_shovel","blockRuntimeId":0,"groupId":59},{"id":"minecraft:iron_shovel","blockRuntimeId":0,"groupId":59},{"id":"minecraft:golden_shovel","blockRuntimeId":0,"groupId":59},{"id":"minecraft:diamond_shovel","blockRuntimeId":0,"groupId":59},{"id":"minecraft:netherite_shovel","blockRuntimeId":0,"groupId":59},{"id":"minecraft:wooden_hoe","blockRuntimeId":0,"groupId":60},{"id":"minecraft:stone_hoe","blockRuntimeId":0,"groupId":60},{"id":"minecraft:iron_hoe","blockRuntimeId":0,"groupId":60},{"id":"minecraft:golden_hoe","blockRuntimeId":0,"groupId":60},{"id":"minecraft:diamond_hoe","blockRuntimeId":0,"groupId":60},{"id":"minecraft:netherite_hoe","blockRuntimeId":0,"groupId":60},{"id":"minecraft:bow","blockRuntimeId":0,"groupId":61},{"id":"minecraft:crossbow","blockRuntimeId":0,"groupId":61},{"id":"minecraft:mace","blockRuntimeId":0,"groupId":61},{"id":"minecraft:arrow","blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":6,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":7,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":8,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":9,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":10,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":11,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":12,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":13,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":14,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":15,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":16,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":17,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":18,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":19,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":20,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":21,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":22,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":23,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":24,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":25,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":26,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":27,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":28,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":29,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":30,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":31,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":32,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":33,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":34,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":35,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":36,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":37,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":38,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":39,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":40,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":41,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":42,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":43,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":44,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":45,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":46,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:arrow","damage":47,"blockRuntimeId":0,"groupId":62},{"id":"minecraft:shield","blockRuntimeId":0,"groupId":63},{"id":"minecraft:cooked_chicken","blockRuntimeId":0,"groupId":64},{"id":"minecraft:cooked_porkchop","blockRuntimeId":0,"groupId":64},{"id":"minecraft:cooked_beef","blockRuntimeId":0,"groupId":64},{"id":"minecraft:cooked_mutton","blockRuntimeId":0,"groupId":64},{"id":"minecraft:cooked_rabbit","blockRuntimeId":0,"groupId":64},{"id":"minecraft:cooked_cod","blockRuntimeId":0,"groupId":64},{"id":"minecraft:cooked_salmon","blockRuntimeId":0,"groupId":64},{"id":"minecraft:bread","blockRuntimeId":0,"groupId":65},{"id":"minecraft:mushroom_stew","blockRuntimeId":0,"groupId":65},{"id":"minecraft:beetroot_soup","blockRuntimeId":0,"groupId":65},{"id":"minecraft:rabbit_stew","blockRuntimeId":0,"groupId":65},{"id":"minecraft:baked_potato","blockRuntimeId":0,"groupId":65},{"id":"minecraft:cookie","blockRuntimeId":0,"groupId":65},{"id":"minecraft:pumpkin_pie","blockRuntimeId":0,"groupId":65},{"id":"minecraft:cake","blockRuntimeId":0,"groupId":65},{"id":"minecraft:dried_kelp","blockRuntimeId":0,"groupId":65},{"id":"minecraft:fishing_rod","blockRuntimeId":0,"groupId":66},{"id":"minecraft:carrot_on_a_stick","blockRuntimeId":0,"groupId":66},{"id":"minecraft:warped_fungus_on_a_stick","blockRuntimeId":0,"groupId":66},{"id":"minecraft:snowball","blockRuntimeId":0,"groupId":66},{"id":"minecraft:wind_charge","blockRuntimeId":0,"groupId":66},{"id":"minecraft:shears","blockRuntimeId":0,"groupId":66},{"id":"minecraft:flint_and_steel","blockRuntimeId":0,"groupId":66},{"id":"minecraft:lead","blockRuntimeId":0,"groupId":66},{"id":"minecraft:clock","blockRuntimeId":0,"groupId":66},{"id":"minecraft:compass","blockRuntimeId":0,"groupId":66},{"id":"minecraft:recovery_compass","blockRuntimeId":0,"groupId":66},{"id":"minecraft:goat_horn","blockRuntimeId":0,"groupId":67},{"id":"minecraft:goat_horn","damage":1,"blockRuntimeId":0,"groupId":67},{"id":"minecraft:goat_horn","damage":2,"blockRuntimeId":0,"groupId":67},{"id":"minecraft:goat_horn","damage":3,"blockRuntimeId":0,"groupId":67},{"id":"minecraft:goat_horn","damage":4,"blockRuntimeId":0,"groupId":67},{"id":"minecraft:goat_horn","damage":5,"blockRuntimeId":0,"groupId":67},{"id":"minecraft:goat_horn","damage":6,"blockRuntimeId":0,"groupId":67},{"id":"minecraft:goat_horn","damage":7,"blockRuntimeId":0,"groupId":67},{"id":"minecraft:empty_map","blockRuntimeId":0,"groupId":68},{"id":"minecraft:empty_map","damage":2,"blockRuntimeId":0,"groupId":68},{"id":"minecraft:saddle","blockRuntimeId":0,"groupId":68},{"id":"minecraft:bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:white_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:light_gray_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:gray_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:black_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:brown_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:red_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:orange_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:yellow_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:lime_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:green_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:cyan_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:light_blue_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:blue_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:purple_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:magenta_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:pink_bundle","blockRuntimeId":0,"groupId":69},{"id":"minecraft:leather_horse_armor","blockRuntimeId":0,"groupId":70},{"id":"minecraft:iron_horse_armor","blockRuntimeId":0,"groupId":70},{"id":"minecraft:golden_horse_armor","blockRuntimeId":0,"groupId":70},{"id":"minecraft:diamond_horse_armor","blockRuntimeId":0,"groupId":70},{"id":"minecraft:wolf_armor","blockRuntimeId":0,"groupId":71},{"id":"minecraft:trident","blockRuntimeId":0,"groupId":71},{"id":"minecraft:turtle_helmet","blockRuntimeId":0,"groupId":71},{"id":"minecraft:elytra","blockRuntimeId":0,"groupId":71},{"id":"minecraft:totem_of_undying","blockRuntimeId":0,"groupId":71},{"id":"minecraft:glass_bottle","blockRuntimeId":0,"groupId":71},{"id":"minecraft:experience_bottle","blockRuntimeId":0,"groupId":71},{"id":"minecraft:potion","blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":1,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":2,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":3,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":4,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":5,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":6,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":7,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":8,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":9,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":10,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":11,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":12,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":13,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":14,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":15,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":16,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":17,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":18,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":19,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":20,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":21,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":22,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":23,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":24,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":25,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":26,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":27,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":28,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":29,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":30,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":31,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":32,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":33,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":34,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":35,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":36,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":37,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":38,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":39,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":40,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":41,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":42,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":43,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":44,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":45,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:potion","damage":46,"blockRuntimeId":0,"groupId":72},{"id":"minecraft:splash_potion","blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":1,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":2,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":3,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":4,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":5,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":6,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":7,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":8,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":9,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":10,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":11,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":12,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":13,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":14,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":15,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":16,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":17,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":18,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":19,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":20,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":21,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":22,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":23,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":24,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":25,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":26,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":27,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":28,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":29,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":30,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":31,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":32,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":33,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":34,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":35,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":36,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":37,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":38,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":39,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":40,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":41,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":42,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":43,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":44,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":45,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:splash_potion","damage":46,"blockRuntimeId":0,"groupId":73},{"id":"minecraft:lingering_potion","blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":1,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":2,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":3,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":4,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":5,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":6,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":7,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":8,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":9,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":10,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":11,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":12,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":13,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":14,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":15,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":16,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":17,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":18,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":19,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":20,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":21,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":22,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":23,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":24,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":25,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":26,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":27,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":28,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":29,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":30,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":31,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":32,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":33,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":34,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":35,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":36,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":37,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":38,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":39,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":40,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":41,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":42,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":43,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":44,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":45,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:lingering_potion","damage":46,"blockRuntimeId":0,"groupId":74},{"id":"minecraft:ominous_bottle","blockRuntimeId":0,"groupId":75},{"id":"minecraft:ominous_bottle","damage":1,"blockRuntimeId":0,"groupId":75},{"id":"minecraft:ominous_bottle","damage":2,"blockRuntimeId":0,"groupId":75},{"id":"minecraft:ominous_bottle","damage":3,"blockRuntimeId":0,"groupId":75},{"id":"minecraft:ominous_bottle","damage":4,"blockRuntimeId":0,"groupId":75},{"id":"minecraft:spyglass","blockRuntimeId":0,"groupId":76},{"id":"minecraft:brush","blockRuntimeId":0,"groupId":76},{"id":"minecraft:stick","blockRuntimeId":0,"groupId":77},{"id":"minecraft:bed","blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":8,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":7,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":15,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":12,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":14,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":1,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":4,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":5,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":13,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":9,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":3,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":11,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":10,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":2,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:bed","damage":6,"blockRuntimeId":0,"groupId":78},{"id":"minecraft:torch","blockRuntimeId":2866,"groupId":79},{"id":"minecraft:soul_torch","blockRuntimeId":6863,"groupId":79},{"id":"minecraft:sea_pickle","blockRuntimeId":10024,"groupId":79},{"id":"minecraft:lantern","blockRuntimeId":12612,"groupId":79},{"id":"minecraft:soul_lantern","blockRuntimeId":9360,"groupId":79},{"id":"minecraft:candle","blockRuntimeId":13598,"groupId":80},{"id":"minecraft:white_candle","blockRuntimeId":8159,"groupId":80},{"id":"minecraft:orange_candle","blockRuntimeId":1667,"groupId":80},{"id":"minecraft:magenta_candle","blockRuntimeId":1742,"groupId":80},{"id":"minecraft:light_blue_candle","blockRuntimeId":6333,"groupId":80},{"id":"minecraft:yellow_candle","blockRuntimeId":11482,"groupId":80},{"id":"minecraft:lime_candle","blockRuntimeId":11669,"groupId":80},{"id":"minecraft:pink_candle","blockRuntimeId":13402,"groupId":80},{"id":"minecraft:gray_candle","blockRuntimeId":3099,"groupId":80},{"id":"minecraft:light_gray_candle","blockRuntimeId":11512,"groupId":80},{"id":"minecraft:cyan_candle","blockRuntimeId":13952,"groupId":80},{"id":"minecraft:purple_candle","blockRuntimeId":12573,"groupId":80},{"id":"minecraft:blue_candle","blockRuntimeId":2,"groupId":80},{"id":"minecraft:brown_candle","blockRuntimeId":10449,"groupId":80},{"id":"minecraft:green_candle","blockRuntimeId":2589,"groupId":80},{"id":"minecraft:red_candle","blockRuntimeId":6900,"groupId":80},{"id":"minecraft:black_candle","blockRuntimeId":934,"groupId":80},{"id":"minecraft:crafting_table","blockRuntimeId":10023,"groupId":81},{"id":"minecraft:cartography_table","blockRuntimeId":15130,"groupId":81},{"id":"minecraft:fletching_table","blockRuntimeId":9952,"groupId":81},{"id":"minecraft:smithing_table","blockRuntimeId":5018,"groupId":81},{"id":"minecraft:beehive","blockRuntimeId":11411,"groupId":81},{"id":"minecraft:suspicious_sand","blockRuntimeId":3466,"groupId":81},{"id":"minecraft:suspicious_gravel","blockRuntimeId":6989,"groupId":81},{"id":"minecraft:campfire","blockRuntimeId":0,"groupId":81},{"id":"minecraft:soul_campfire","blockRuntimeId":0,"groupId":81},{"id":"minecraft:furnace","blockRuntimeId":14127,"groupId":81},{"id":"minecraft:blast_furnace","blockRuntimeId":13788,"groupId":81},{"id":"minecraft:smoker","blockRuntimeId":2398,"groupId":81},{"id":"minecraft:respawn_anchor","blockRuntimeId":2583,"groupId":81},{"id":"minecraft:brewing_stand","blockRuntimeId":0,"groupId":81},{"id":"minecraft:anvil","blockRuntimeId":11961,"groupId":82},{"id":"minecraft:chipped_anvil","blockRuntimeId":6946,"groupId":82},{"id":"minecraft:damaged_anvil","blockRuntimeId":14545,"groupId":82},{"id":"minecraft:grindstone","blockRuntimeId":14337,"groupId":83},{"id":"minecraft:enchanting_table","blockRuntimeId":12058,"groupId":83},{"id":"minecraft:bookshelf","blockRuntimeId":11989,"groupId":83},{"id":"minecraft:chiseled_bookshelf","blockRuntimeId":1308,"groupId":83},{"id":"minecraft:lectern","blockRuntimeId":12292,"groupId":83},{"id":"minecraft:cauldron","blockRuntimeId":0,"groupId":83},{"id":"minecraft:composter","blockRuntimeId":8287,"groupId":83},{"id":"minecraft:chest","blockRuntimeId":12695,"groupId":84},{"id":"minecraft:trapped_chest","blockRuntimeId":9188,"groupId":84},{"id":"minecraft:ender_chest","blockRuntimeId":6125,"groupId":84},{"id":"minecraft:barrel","blockRuntimeId":6289,"groupId":85},{"id":"minecraft:undyed_shulker_box","blockRuntimeId":4978,"groupId":86},{"id":"minecraft:white_shulker_box","blockRuntimeId":1664,"groupId":86},{"id":"minecraft:light_gray_shulker_box","blockRuntimeId":10483,"groupId":86},{"id":"minecraft:gray_shulker_box","blockRuntimeId":8205,"groupId":86},{"id":"minecraft:black_shulker_box","blockRuntimeId":11081,"groupId":86},{"id":"minecraft:brown_shulker_box","blockRuntimeId":12228,"groupId":86},{"id":"minecraft:red_shulker_box","blockRuntimeId":6196,"groupId":86},{"id":"minecraft:orange_shulker_box","blockRuntimeId":11511,"groupId":86},{"id":"minecraft:yellow_shulker_box","blockRuntimeId":286,"groupId":86},{"id":"minecraft:lime_shulker_box","blockRuntimeId":1572,"groupId":86},{"id":"minecraft:green_shulker_box","blockRuntimeId":11810,"groupId":86},{"id":"minecraft:cyan_shulker_box","blockRuntimeId":12550,"groupId":86},{"id":"minecraft:light_blue_shulker_box","blockRuntimeId":12319,"groupId":86},{"id":"minecraft:blue_shulker_box","blockRuntimeId":11564,"groupId":86},{"id":"minecraft:purple_shulker_box","blockRuntimeId":13572,"groupId":86},{"id":"minecraft:magenta_shulker_box","blockRuntimeId":1259,"groupId":86},{"id":"minecraft:pink_shulker_box","blockRuntimeId":6133,"groupId":86},{"id":"minecraft:armor_stand","blockRuntimeId":0,"groupId":87},{"id":"minecraft:noteblock","blockRuntimeId":1638,"groupId":87},{"id":"minecraft:jukebox","blockRuntimeId":7556,"groupId":87},{"id":"minecraft:music_disc_13","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_cat","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_blocks","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_chirp","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_far","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_mall","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_mellohi","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_stal","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_strad","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_ward","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_11","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_wait","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_otherside","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_5","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_pigstep","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_relic","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_creator","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_creator_music_box","blockRuntimeId":0,"groupId":88},{"id":"minecraft:music_disc_precipice","blockRuntimeId":0,"groupId":88},{"id":"minecraft:disc_fragment_5","blockRuntimeId":0,"groupId":89},{"id":"minecraft:glowstone_dust","blockRuntimeId":0,"groupId":89},{"id":"minecraft:glowstone","blockRuntimeId":5588,"groupId":89},{"id":"minecraft:redstone_lamp","blockRuntimeId":1197,"groupId":89},{"id":"minecraft:sea_lantern","blockRuntimeId":13771,"groupId":89},{"id":"minecraft:oak_sign","blockRuntimeId":0,"groupId":90},{"id":"minecraft:spruce_sign","blockRuntimeId":0,"groupId":90},{"id":"minecraft:birch_sign","blockRuntimeId":0,"groupId":90},{"id":"minecraft:jungle_sign","blockRuntimeId":0,"groupId":90},{"id":"minecraft:acacia_sign","blockRuntimeId":0,"groupId":90},{"id":"minecraft:dark_oak_sign","blockRuntimeId":0,"groupId":90},{"id":"minecraft:mangrove_sign","blockRuntimeId":0,"groupId":90},{"id":"minecraft:cherry_sign","blockRuntimeId":0,"groupId":90},{"id":"minecraft:pale_oak_sign","blockRuntimeId":0,"groupId":90},{"id":"minecraft:bamboo_sign","blockRuntimeId":0,"groupId":90},{"id":"minecraft:crimson_sign","blockRuntimeId":0,"groupId":90},{"id":"minecraft:warped_sign","blockRuntimeId":0,"groupId":90},{"id":"minecraft:oak_hanging_sign","blockRuntimeId":0,"groupId":91},{"id":"minecraft:spruce_hanging_sign","blockRuntimeId":0,"groupId":91},{"id":"minecraft:birch_hanging_sign","blockRuntimeId":0,"groupId":91},{"id":"minecraft:jungle_hanging_sign","blockRuntimeId":0,"groupId":91},{"id":"minecraft:acacia_hanging_sign","blockRuntimeId":0,"groupId":91},{"id":"minecraft:dark_oak_hanging_sign","blockRuntimeId":0,"groupId":91},{"id":"minecraft:mangrove_hanging_sign","blockRuntimeId":0,"groupId":91},{"id":"minecraft:cherry_hanging_sign","blockRuntimeId":0,"groupId":91},{"id":"minecraft:pale_oak_hanging_sign","blockRuntimeId":0,"groupId":91},{"id":"minecraft:bamboo_hanging_sign","blockRuntimeId":0,"groupId":91},{"id":"minecraft:crimson_hanging_sign","blockRuntimeId":0,"groupId":91},{"id":"minecraft:warped_hanging_sign","blockRuntimeId":0,"groupId":91},{"id":"minecraft:painting","blockRuntimeId":0,"groupId":92},{"id":"minecraft:frame","blockRuntimeId":0,"groupId":92},{"id":"minecraft:glow_frame","blockRuntimeId":0,"groupId":92},{"id":"minecraft:honey_bottle","blockRuntimeId":0,"groupId":92},{"id":"minecraft:flower_pot","blockRuntimeId":0,"groupId":92},{"id":"minecraft:bowl","blockRuntimeId":0,"groupId":92},{"id":"minecraft:bucket","blockRuntimeId":0,"groupId":92},{"id":"minecraft:milk_bucket","blockRuntimeId":0,"groupId":92},{"id":"minecraft:water_bucket","blockRuntimeId":0,"groupId":92},{"id":"minecraft:lava_bucket","blockRuntimeId":0,"groupId":92},{"id":"minecraft:cod_bucket","blockRuntimeId":0,"groupId":92},{"id":"minecraft:salmon_bucket","blockRuntimeId":0,"groupId":92},{"id":"minecraft:tropical_fish_bucket","blockRuntimeId":0,"groupId":92},{"id":"minecraft:pufferfish_bucket","blockRuntimeId":0,"groupId":92},{"id":"minecraft:powder_snow_bucket","blockRuntimeId":0,"groupId":92},{"id":"minecraft:axolotl_bucket","blockRuntimeId":0,"groupId":92},{"id":"minecraft:tadpole_bucket","blockRuntimeId":0,"groupId":92},{"id":"minecraft:player_head","blockRuntimeId":5019,"groupId":93},{"id":"minecraft:zombie_head","blockRuntimeId":33,"groupId":93},{"id":"minecraft:creeper_head","blockRuntimeId":9957,"groupId":93},{"id":"minecraft:dragon_head","blockRuntimeId":9981,"groupId":93},{"id":"minecraft:skeleton_skull","blockRuntimeId":8281,"groupId":93},{"id":"minecraft:wither_skeleton_skull","blockRuntimeId":13221,"groupId":93},{"id":"minecraft:piglin_head","blockRuntimeId":12564,"groupId":93},{"id":"minecraft:beacon","blockRuntimeId":743,"groupId":94},{"id":"minecraft:bell","blockRuntimeId":12260,"groupId":94},{"id":"minecraft:conduit","blockRuntimeId":5931,"groupId":94},{"id":"minecraft:stonecutter_block","blockRuntimeId":13795,"groupId":94},{"id":"minecraft:coal","blockRuntimeId":0,"groupId":94},{"id":"minecraft:charcoal","blockRuntimeId":0,"groupId":94},{"id":"minecraft:diamond","blockRuntimeId":0,"groupId":94},{"id":"minecraft:iron_nugget","blockRuntimeId":0,"groupId":94},{"id":"minecraft:raw_iron","blockRuntimeId":0,"groupId":94},{"id":"minecraft:raw_gold","blockRuntimeId":0,"groupId":94},{"id":"minecraft:raw_copper","blockRuntimeId":0,"groupId":94},{"id":"minecraft:copper_ingot","blockRuntimeId":0,"groupId":94},{"id":"minecraft:iron_ingot","blockRuntimeId":0,"groupId":94},{"id":"minecraft:netherite_scrap","blockRuntimeId":0,"groupId":94},{"id":"minecraft:netherite_ingot","blockRuntimeId":0,"groupId":94},{"id":"minecraft:gold_nugget","blockRuntimeId":0,"groupId":94},{"id":"minecraft:gold_ingot","blockRuntimeId":0,"groupId":94},{"id":"minecraft:emerald","blockRuntimeId":0,"groupId":94},{"id":"minecraft:quartz","blockRuntimeId":0,"groupId":94},{"id":"minecraft:clay_ball","blockRuntimeId":0,"groupId":94},{"id":"minecraft:brick","blockRuntimeId":0,"groupId":94},{"id":"minecraft:netherbrick","blockRuntimeId":0,"groupId":94},{"id":"minecraft:resin_brick","blockRuntimeId":0,"groupId":94},{"id":"minecraft:prismarine_shard","blockRuntimeId":0,"groupId":94},{"id":"minecraft:amethyst_shard","blockRuntimeId":0,"groupId":94},{"id":"minecraft:prismarine_crystals","blockRuntimeId":0,"groupId":94},{"id":"minecraft:nautilus_shell","blockRuntimeId":0,"groupId":94},{"id":"minecraft:heart_of_the_sea","blockRuntimeId":0,"groupId":94},{"id":"minecraft:turtle_scute","blockRuntimeId":0,"groupId":94},{"id":"minecraft:armadillo_scute","blockRuntimeId":0,"groupId":94},{"id":"minecraft:phantom_membrane","blockRuntimeId":0,"groupId":94},{"id":"minecraft:string","blockRuntimeId":0,"groupId":94},{"id":"minecraft:feather","blockRuntimeId":0,"groupId":94},{"id":"minecraft:flint","blockRuntimeId":0,"groupId":94},{"id":"minecraft:gunpowder","blockRuntimeId":0,"groupId":94},{"id":"minecraft:leather","blockRuntimeId":0,"groupId":94},{"id":"minecraft:rabbit_hide","blockRuntimeId":0,"groupId":94},{"id":"minecraft:rabbit_foot","blockRuntimeId":0,"groupId":94},{"id":"minecraft:fire_charge","blockRuntimeId":0,"groupId":94},{"id":"minecraft:blaze_rod","blockRuntimeId":0,"groupId":94},{"id":"minecraft:breeze_rod","blockRuntimeId":0,"groupId":94},{"id":"minecraft:heavy_core","blockRuntimeId":13314,"groupId":94},{"id":"minecraft:blaze_powder","blockRuntimeId":0,"groupId":94},{"id":"minecraft:magma_cream","blockRuntimeId":0,"groupId":94},{"id":"minecraft:fermented_spider_eye","blockRuntimeId":0,"groupId":94},{"id":"minecraft:echo_shard","blockRuntimeId":0,"groupId":94},{"id":"minecraft:dragon_breath","blockRuntimeId":0,"groupId":94},{"id":"minecraft:shulker_shell","blockRuntimeId":0,"groupId":94},{"id":"minecraft:ghast_tear","blockRuntimeId":0,"groupId":94},{"id":"minecraft:slime_ball","blockRuntimeId":0,"groupId":94},{"id":"minecraft:ender_pearl","blockRuntimeId":0,"groupId":94},{"id":"minecraft:ender_eye","blockRuntimeId":0,"groupId":94},{"id":"minecraft:nether_star","blockRuntimeId":0,"groupId":94},{"id":"minecraft:end_rod","blockRuntimeId":10465,"groupId":94},{"id":"minecraft:lightning_rod","blockRuntimeId":3652,"groupId":94},{"id":"minecraft:end_crystal","blockRuntimeId":0,"groupId":94},{"id":"minecraft:paper","blockRuntimeId":0,"groupId":94},{"id":"minecraft:book","blockRuntimeId":0,"groupId":94},{"id":"minecraft:writable_book","blockRuntimeId":0,"groupId":94},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQmAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQmAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQmAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQoAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQoAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQoAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","blockRuntimeId":0,"groupId":95,"nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQoAAIDAGx2bAQAAAA="},{"id":"minecraft:oak_boat","blockRuntimeId":0,"groupId":96},{"id":"minecraft:spruce_boat","blockRuntimeId":0,"groupId":96},{"id":"minecraft:birch_boat","blockRuntimeId":0,"groupId":96},{"id":"minecraft:jungle_boat","blockRuntimeId":0,"groupId":96},{"id":"minecraft:acacia_boat","blockRuntimeId":0,"groupId":96},{"id":"minecraft:dark_oak_boat","blockRuntimeId":0,"groupId":96},{"id":"minecraft:mangrove_boat","blockRuntimeId":0,"groupId":96},{"id":"minecraft:cherry_boat","blockRuntimeId":0,"groupId":96},{"id":"minecraft:pale_oak_boat","blockRuntimeId":0,"groupId":96},{"id":"minecraft:bamboo_raft","blockRuntimeId":0,"groupId":96},{"id":"minecraft:oak_chest_boat","blockRuntimeId":0,"groupId":97},{"id":"minecraft:spruce_chest_boat","blockRuntimeId":0,"groupId":97},{"id":"minecraft:birch_chest_boat","blockRuntimeId":0,"groupId":97},{"id":"minecraft:jungle_chest_boat","blockRuntimeId":0,"groupId":97},{"id":"minecraft:acacia_chest_boat","blockRuntimeId":0,"groupId":97},{"id":"minecraft:dark_oak_chest_boat","blockRuntimeId":0,"groupId":97},{"id":"minecraft:mangrove_chest_boat","blockRuntimeId":0,"groupId":97},{"id":"minecraft:cherry_chest_boat","blockRuntimeId":0,"groupId":97},{"id":"minecraft:pale_oak_chest_boat","blockRuntimeId":0,"groupId":97},{"id":"minecraft:bamboo_chest_raft","blockRuntimeId":0,"groupId":97},{"id":"minecraft:rail","blockRuntimeId":5629,"groupId":98},{"id":"minecraft:golden_rail","blockRuntimeId":8176,"groupId":98},{"id":"minecraft:detector_rail","blockRuntimeId":5811,"groupId":98},{"id":"minecraft:activator_rail","blockRuntimeId":1580,"groupId":98},{"id":"minecraft:minecart","blockRuntimeId":0,"groupId":99},{"id":"minecraft:chest_minecart","blockRuntimeId":0,"groupId":99},{"id":"minecraft:hopper_minecart","blockRuntimeId":0,"groupId":99},{"id":"minecraft:tnt_minecart","blockRuntimeId":0,"groupId":99},{"id":"minecraft:redstone","blockRuntimeId":0,"groupId":100},{"id":"minecraft:redstone_block","blockRuntimeId":5090,"groupId":100},{"id":"minecraft:redstone_torch","blockRuntimeId":4401,"groupId":100},{"id":"minecraft:lever","blockRuntimeId":11828,"groupId":100},{"id":"minecraft:wooden_button","blockRuntimeId":11693,"groupId":101},{"id":"minecraft:spruce_button","blockRuntimeId":6070,"groupId":101},{"id":"minecraft:birch_button","blockRuntimeId":14036,"groupId":101},{"id":"minecraft:jungle_button","blockRuntimeId":291,"groupId":101},{"id":"minecraft:acacia_button","blockRuntimeId":13230,"groupId":101},{"id":"minecraft:dark_oak_button","blockRuntimeId":264,"groupId":101},{"id":"minecraft:mangrove_button","blockRuntimeId":12597,"groupId":101},{"id":"minecraft:cherry_button","blockRuntimeId":6412,"groupId":101},{"id":"minecraft:pale_oak_button","blockRuntimeId":13656,"groupId":101},{"id":"minecraft:bamboo_button","blockRuntimeId":11775,"groupId":101},{"id":"minecraft:stone_button","blockRuntimeId":1927,"groupId":101},{"id":"minecraft:crimson_button","blockRuntimeId":6200,"groupId":101},{"id":"minecraft:warped_button","blockRuntimeId":13248,"groupId":101},{"id":"minecraft:polished_blackstone_button","blockRuntimeId":14062,"groupId":101},{"id":"minecraft:tripwire_hook","blockRuntimeId":10540,"groupId":102},{"id":"minecraft:wooden_pressure_plate","blockRuntimeId":14363,"groupId":103},{"id":"minecraft:spruce_pressure_plate","blockRuntimeId":5072,"groupId":103},{"id":"minecraft:birch_pressure_plate","blockRuntimeId":4840,"groupId":103},{"id":"minecraft:jungle_pressure_plate","blockRuntimeId":4918,"groupId":103},{"id":"minecraft:acacia_pressure_plate","blockRuntimeId":8106,"groupId":103},{"id":"minecraft:dark_oak_pressure_plate","blockRuntimeId":10582,"groupId":103},{"id":"minecraft:mangrove_pressure_plate","blockRuntimeId":5569,"groupId":103},{"id":"minecraft:cherry_pressure_plate","blockRuntimeId":333,"groupId":103},{"id":"minecraft:pale_oak_pressure_plate","blockRuntimeId":1619,"groupId":103},{"id":"minecraft:bamboo_pressure_plate","blockRuntimeId":11317,"groupId":103},{"id":"minecraft:crimson_pressure_plate","blockRuntimeId":15110,"groupId":103},{"id":"minecraft:warped_pressure_plate","blockRuntimeId":1223,"groupId":103},{"id":"minecraft:stone_pressure_plate","blockRuntimeId":5589,"groupId":103},{"id":"minecraft:light_weighted_pressure_plate","blockRuntimeId":4962,"groupId":103},{"id":"minecraft:heavy_weighted_pressure_plate","blockRuntimeId":3635,"groupId":103},{"id":"minecraft:polished_blackstone_pressure_plate","blockRuntimeId":11520,"groupId":103},{"id":"minecraft:observer","blockRuntimeId":4389,"groupId":104},{"id":"minecraft:daylight_detector","blockRuntimeId":5896,"groupId":104},{"id":"minecraft:repeater","blockRuntimeId":0,"groupId":104},{"id":"minecraft:comparator","blockRuntimeId":0,"groupId":104},{"id":"minecraft:hopper","blockRuntimeId":0,"groupId":104},{"id":"minecraft:dropper","blockRuntimeId":13580,"groupId":104},{"id":"minecraft:dispenser","blockRuntimeId":14324,"groupId":104},{"id":"minecraft:crafter","blockRuntimeId":14074,"groupId":104},{"id":"minecraft:piston","blockRuntimeId":3083,"groupId":104},{"id":"minecraft:sticky_piston","blockRuntimeId":6117,"groupId":104},{"id":"minecraft:tnt","blockRuntimeId":12014,"groupId":104},{"id":"minecraft:name_tag","blockRuntimeId":0,"groupId":104},{"id":"minecraft:loom","blockRuntimeId":5529,"groupId":104},{"id":"minecraft:banner","blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":8,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":7,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":15,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":12,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":14,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":1,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":4,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":5,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":13,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":9,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":3,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":11,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":10,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":2,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":6,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":15,"blockRuntimeId":0,"groupId":105,"nbt_b64":"CgAAAwQAVHlwZQEAAAAA"},{"id":"minecraft:creeper_banner_pattern","blockRuntimeId":0,"groupId":106},{"id":"minecraft:skull_banner_pattern","blockRuntimeId":0,"groupId":106},{"id":"minecraft:flower_banner_pattern","blockRuntimeId":0,"groupId":106},{"id":"minecraft:mojang_banner_pattern","blockRuntimeId":0,"groupId":106},{"id":"minecraft:field_masoned_banner_pattern","blockRuntimeId":0,"groupId":106},{"id":"minecraft:bordure_indented_banner_pattern","blockRuntimeId":0,"groupId":106},{"id":"minecraft:piglin_banner_pattern","blockRuntimeId":0,"groupId":106},{"id":"minecraft:globe_banner_pattern","blockRuntimeId":0,"groupId":106},{"id":"minecraft:flow_banner_pattern","blockRuntimeId":0,"groupId":106},{"id":"minecraft:guster_banner_pattern","blockRuntimeId":0,"groupId":106},{"id":"minecraft:angler_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:archer_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:arms_up_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:blade_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:brewer_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:burn_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:danger_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:explorer_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:flow_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:friend_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:guster_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:heart_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:heartbreak_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:howl_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:miner_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:mourner_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:plenty_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:prize_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:scrape_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:sheaf_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:shelter_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:skull_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:snort_pottery_sherd","blockRuntimeId":0,"groupId":107},{"id":"minecraft:netherite_upgrade_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:sentry_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:vex_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:wild_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:coast_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:dune_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:wayfinder_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:shaper_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:raiser_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:host_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:ward_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:silence_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:tide_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:snout_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:rib_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:eye_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:spire_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:flow_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:bolt_armor_trim_smithing_template","blockRuntimeId":0,"groupId":108},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","blockRuntimeId":0,"groupId":109,"nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_star","blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA="},{"id":"minecraft:firework_star","damage":8,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA="},{"id":"minecraft:firework_star","damage":7,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA="},{"id":"minecraft:firework_star","damage":15,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA="},{"id":"minecraft:firework_star","damage":12,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA="},{"id":"minecraft:firework_star","damage":14,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA="},{"id":"minecraft:firework_star","damage":1,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA="},{"id":"minecraft:firework_star","damage":4,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA="},{"id":"minecraft:firework_star","damage":5,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA="},{"id":"minecraft:firework_star","damage":13,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA="},{"id":"minecraft:firework_star","damage":9,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA="},{"id":"minecraft:firework_star","damage":3,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA="},{"id":"minecraft:firework_star","damage":11,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA="},{"id":"minecraft:firework_star","damage":10,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA="},{"id":"minecraft:firework_star","damage":2,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA="},{"id":"minecraft:firework_star","damage":6,"blockRuntimeId":0,"groupId":110,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA="},{"id":"minecraft:chain","blockRuntimeId":0,"groupId":111},{"id":"minecraft:target","blockRuntimeId":11692,"groupId":111},{"id":"minecraft:decorated_pot","blockRuntimeId":12052,"groupId":111},{"id":"minecraft:trial_key","blockRuntimeId":0,"groupId":111},{"id":"minecraft:ominous_trial_key","blockRuntimeId":0,"groupId":111}]} \ No newline at end of file +{ + "groups": [ + { + "name": "itemGroup.name.planks", + "category": "construction", + "icon": { + "id": "minecraft:oak_planks", + "blockRuntimeId": 13801 + } + }, + { + "name": "itemGroup.name.walls", + "category": "construction", + "icon": { + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 3697 + } + }, + { + "name": "itemGroup.name.fence", + "category": "construction", + "icon": { + "id": "minecraft:oak_fence", + "blockRuntimeId": 9393 + } + }, + { + "name": "itemGroup.name.fenceGate", + "category": "construction", + "icon": { + "id": "minecraft:fence_gate", + "blockRuntimeId": 279 + } + }, + { + "name": "itemGroup.name.stairs", + "category": "construction", + "icon": { + "id": "minecraft:stone_stairs", + "blockRuntimeId": 5031 + } + }, + { + "name": "itemGroup.name.door", + "category": "construction", + "icon": { + "id": "minecraft:wooden_door", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.trapdoor", + "category": "construction", + "icon": { + "id": "minecraft:trapdoor", + "blockRuntimeId": 1203 + } + }, + { + "name": "", + "category": "construction", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.glass", + "category": "construction", + "icon": { + "id": "minecraft:glass", + "blockRuntimeId": 11504 + } + }, + { + "name": "itemGroup.name.glassPane", + "category": "construction", + "icon": { + "id": "minecraft:glass_pane", + "blockRuntimeId": 8131 + } + }, + { + "name": "", + "category": "construction", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.slab", + "category": "construction", + "icon": { + "id": "minecraft:smooth_stone_slab", + "blockRuntimeId": 13805 + } + }, + { + "name": "itemGroup.name.stoneBrick", + "category": "construction", + "icon": { + "id": "minecraft:stone_bricks", + "blockRuntimeId": 5835 + } + }, + { + "name": "", + "category": "construction", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.sandstone", + "category": "construction", + "icon": { + "id": "minecraft:sandstone", + "blockRuntimeId": 4987 + } + }, + { + "name": "", + "category": "construction", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.copper", + "category": "construction", + "icon": { + "id": "minecraft:copper_block", + "blockRuntimeId": 6904 + } + }, + { + "name": "", + "category": "construction", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.wool", + "category": "construction", + "icon": { + "id": "minecraft:white_wool", + "blockRuntimeId": 8297 + } + }, + { + "name": "itemGroup.name.woolCarpet", + "category": "construction", + "icon": { + "id": "minecraft:white_carpet", + "blockRuntimeId": 13314 + } + }, + { + "name": "itemGroup.name.concretePowder", + "category": "construction", + "icon": { + "id": "minecraft:white_concrete_powder", + "blockRuntimeId": 7505 + } + }, + { + "name": "itemGroup.name.concrete", + "category": "construction", + "icon": { + "id": "minecraft:white_concrete", + "blockRuntimeId": 14620 + } + }, + { + "name": "itemGroup.name.stainedClay", + "category": "construction", + "icon": { + "id": "minecraft:hardened_clay", + "blockRuntimeId": 1995 + } + }, + { + "name": "itemGroup.name.glazedTerracotta", + "category": "construction", + "icon": { + "id": "minecraft:white_glazed_terracotta", + "blockRuntimeId": 9211 + } + }, + { + "name": "", + "category": "construction", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "", + "category": "nature", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.ore", + "category": "nature", + "icon": { + "id": "minecraft:iron_ore", + "blockRuntimeId": 6943 + } + }, + { + "name": "itemGroup.name.stone", + "category": "nature", + "icon": { + "id": "minecraft:stone", + "blockRuntimeId": 2437 + } + }, + { + "name": "", + "category": "nature", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.log", + "category": "nature", + "icon": { + "id": "minecraft:oak_log", + "blockRuntimeId": 1288 + } + }, + { + "name": "itemGroup.name.wood", + "category": "nature", + "icon": { + "id": "minecraft:oak_wood", + "blockRuntimeId": 7564 + } + }, + { + "name": "itemGroup.name.leaves", + "category": "nature", + "icon": { + "id": "minecraft:oak_leaves", + "blockRuntimeId": 2657 + } + }, + { + "name": "itemGroup.name.sapling", + "category": "nature", + "icon": { + "id": "minecraft:oak_sapling", + "blockRuntimeId": 2425 + } + }, + { + "name": "", + "category": "nature", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.seed", + "category": "nature", + "icon": { + "id": "minecraft:wheat_seeds", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.crop", + "category": "nature", + "icon": { + "id": "minecraft:wheat", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "nature", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.grass", + "category": "nature", + "icon": { + "id": "minecraft:fern", + "blockRuntimeId": 11175 + } + }, + { + "name": "itemGroup.name.coral_decorations", + "category": "nature", + "icon": { + "id": "minecraft:fire_coral", + "blockRuntimeId": 2436 + } + }, + { + "name": "itemGroup.name.flower", + "category": "nature", + "icon": { + "id": "minecraft:dandelion", + "blockRuntimeId": 15236 + } + }, + { + "name": "itemGroup.name.dye", + "category": "nature", + "icon": { + "id": "minecraft:yellow_dye", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "nature", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.rawFood", + "category": "nature", + "icon": { + "id": "minecraft:chicken", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.mushroom", + "category": "nature", + "icon": { + "id": "minecraft:brown_mushroom", + "blockRuntimeId": 4841 + } + }, + { + "name": "", + "category": "nature", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.monsterStoneEgg", + "category": "nature", + "icon": { + "id": "minecraft:infested_stone", + "blockRuntimeId": 11180 + } + }, + { + "name": "", + "category": "nature", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.mobEgg", + "category": "nature", + "icon": { + "id": "minecraft:chicken_spawn_egg", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "nature", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.coral", + "category": "nature", + "icon": { + "id": "minecraft:tube_coral_block", + "blockRuntimeId": 13772 + } + }, + { + "name": "itemGroup.name.sculk", + "category": "nature", + "icon": { + "id": "minecraft:sculk", + "blockRuntimeId": 12607 + } + }, + { + "name": "", + "category": "nature", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.helmet", + "category": "equipment", + "icon": { + "id": "minecraft:leather_helmet", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.chestplate", + "category": "equipment", + "icon": { + "id": "minecraft:leather_chestplate", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.leggings", + "category": "equipment", + "icon": { + "id": "minecraft:leather_leggings", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.boots", + "category": "equipment", + "icon": { + "id": "minecraft:leather_boots", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.sword", + "category": "equipment", + "icon": { + "id": "minecraft:wooden_sword", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.axe", + "category": "equipment", + "icon": { + "id": "minecraft:wooden_axe", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.pickaxe", + "category": "equipment", + "icon": { + "id": "minecraft:wooden_pickaxe", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.shovel", + "category": "equipment", + "icon": { + "id": "minecraft:wooden_shovel", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.hoe", + "category": "equipment", + "icon": { + "id": "minecraft:wooden_hoe", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "equipment", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.arrow", + "category": "equipment", + "icon": { + "id": "minecraft:arrow", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "equipment", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.cookedFood", + "category": "equipment", + "icon": { + "id": "minecraft:cooked_chicken", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.miscFood", + "category": "equipment", + "icon": { + "id": "minecraft:bread", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "equipment", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.goatHorn", + "category": "equipment", + "icon": { + "id": "minecraft:goat_horn", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "equipment", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.bundles", + "category": "equipment", + "icon": { + "id": "minecraft:bundle", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.horseArmor", + "category": "equipment", + "icon": { + "id": "minecraft:leather_horse_armor", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "equipment", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.potion", + "category": "equipment", + "icon": { + "id": "minecraft:potion", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.splashPotion", + "category": "equipment", + "icon": { + "id": "minecraft:splash_potion", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.lingeringPotion", + "category": "equipment", + "icon": { + "id": "minecraft:lingering_potion", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.ominousBottle", + "category": "equipment", + "icon": { + "id": "minecraft:ominous_bottle", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "equipment", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "", + "category": "items", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.bed", + "category": "items", + "icon": { + "id": "minecraft:bed", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "items", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.candles", + "category": "items", + "icon": { + "id": "minecraft:candle", + "blockRuntimeId": 13635 + } + }, + { + "name": "", + "category": "items", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.anvil", + "category": "items", + "icon": { + "id": "minecraft:anvil", + "blockRuntimeId": 11997 + } + }, + { + "name": "", + "category": "items", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.chest", + "category": "items", + "icon": { + "id": "minecraft:chest", + "blockRuntimeId": 12732 + } + }, + { + "name": "", + "category": "items", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.shulkerBox", + "category": "items", + "icon": { + "id": "minecraft:undyed_shulker_box", + "blockRuntimeId": 5012 + } + }, + { + "name": "", + "category": "items", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.record", + "category": "items", + "icon": { + "id": "minecraft:music_disc_13", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "items", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.sign", + "category": "items", + "icon": { + "id": "minecraft:oak_sign", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.hanging_sign", + "category": "items", + "icon": { + "id": "minecraft:oak_hanging_sign", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "items", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.skull", + "category": "items", + "icon": { + "id": "minecraft:creeper_head", + "blockRuntimeId": 9992 + } + }, + { + "name": "", + "category": "items", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.enchantedBook", + "category": "items", + "icon": { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA=" + } + }, + { + "name": "itemGroup.name.boat", + "category": "items", + "icon": { + "id": "minecraft:oak_boat", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.chestboat", + "category": "items", + "icon": { + "id": "minecraft:oak_chest_boat", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.rail", + "category": "items", + "icon": { + "id": "minecraft:rail", + "blockRuntimeId": 5663 + } + }, + { + "name": "itemGroup.name.minecart", + "category": "items", + "icon": { + "id": "minecraft:minecart", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "items", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.buttons", + "category": "items", + "icon": { + "id": "minecraft:wooden_button", + "blockRuntimeId": 11729 + } + }, + { + "name": "", + "category": "items", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.pressurePlate", + "category": "items", + "icon": { + "id": "minecraft:wooden_pressure_plate", + "blockRuntimeId": 14432 + } + }, + { + "name": "", + "category": "items", + "icon": { + "id": "minecraft:air" + } + }, + { + "name": "itemGroup.name.banner", + "category": "items", + "icon": { + "id": "minecraft:banner", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.banner_pattern", + "category": "items", + "icon": { + "id": "minecraft:creeper_banner_pattern", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.potterySherds", + "category": "items", + "icon": { + "id": "minecraft:archer_pottery_sherd", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.smithing_templates", + "category": "items", + "icon": { + "id": "minecraft:netherite_upgrade_smithing_template", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.firework", + "category": "items", + "icon": { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0 + } + }, + { + "name": "itemGroup.name.fireworkStars", + "category": "items", + "icon": { + "id": "minecraft:firework_star", + "blockRuntimeId": 0 + } + }, + { + "name": "", + "category": "items", + "icon": { + "id": "minecraft:air" + } + } + ], + "items": [ + { + "id": "minecraft:oak_planks", + "blockRuntimeId": 13801, + "groupId": 0 + }, + { + "id": "minecraft:spruce_planks", + "blockRuntimeId": 14191, + "groupId": 0 + }, + { + "id": "minecraft:birch_planks", + "blockRuntimeId": 8210, + "groupId": 0 + }, + { + "id": "minecraft:jungle_planks", + "blockRuntimeId": 11992, + "groupId": 0 + }, + { + "id": "minecraft:acacia_planks", + "blockRuntimeId": 6246, + "groupId": 0 + }, + { + "id": "minecraft:dark_oak_planks", + "blockRuntimeId": 4873, + "groupId": 0 + }, + { + "id": "minecraft:mangrove_planks", + "blockRuntimeId": 3142, + "groupId": 0 + }, + { + "id": "minecraft:cherry_planks", + "blockRuntimeId": 14056, + "groupId": 0 + }, + { + "id": "minecraft:pale_oak_planks", + "blockRuntimeId": 5030, + "groupId": 0 + }, + { + "id": "minecraft:bamboo_planks", + "blockRuntimeId": 9258, + "groupId": 0 + }, + { + "id": "minecraft:bamboo_mosaic", + "blockRuntimeId": 15167, + "groupId": 0 + }, + { + "id": "minecraft:crimson_planks", + "blockRuntimeId": 7554, + "groupId": 0 + }, + { + "id": "minecraft:warped_planks", + "blockRuntimeId": 3116, + "groupId": 0 + }, + { + "id": "minecraft:cobblestone_wall", + "blockRuntimeId": 3697, + "groupId": 1 + }, + { + "id": "minecraft:mossy_cobblestone_wall", + "blockRuntimeId": 3507, + "groupId": 1 + }, + { + "id": "minecraft:granite_wall", + "blockRuntimeId": 9439, + "groupId": 1 + }, + { + "id": "minecraft:diorite_wall", + "blockRuntimeId": 3145, + "groupId": 1 + }, + { + "id": "minecraft:andesite_wall", + "blockRuntimeId": 9049, + "groupId": 1 + }, + { + "id": "minecraft:sandstone_wall", + "blockRuntimeId": 14448, + "groupId": 1 + }, + { + "id": "minecraft:red_sandstone_wall", + "blockRuntimeId": 1002, + "groupId": 1 + }, + { + "id": "minecraft:stone_brick_wall", + "blockRuntimeId": 8860, + "groupId": 1 + }, + { + "id": "minecraft:mossy_stone_brick_wall", + "blockRuntimeId": 14967, + "groupId": 1 + }, + { + "id": "minecraft:brick_wall", + "blockRuntimeId": 777, + "groupId": 1 + }, + { + "id": "minecraft:nether_brick_wall", + "blockRuntimeId": 12405, + "groupId": 1 + }, + { + "id": "minecraft:red_nether_brick_wall", + "blockRuntimeId": 13447, + "groupId": 1 + }, + { + "id": "minecraft:end_stone_brick_wall", + "blockRuntimeId": 115, + "groupId": 1 + }, + { + "id": "minecraft:prismarine_wall", + "blockRuntimeId": 7618, + "groupId": 1 + }, + { + "id": "minecraft:blackstone_wall", + "blockRuntimeId": 5673, + "groupId": 1 + }, + { + "id": "minecraft:polished_blackstone_wall", + "blockRuntimeId": 12095, + "groupId": 1 + }, + { + "id": "minecraft:polished_blackstone_brick_wall", + "blockRuntimeId": 3321, + "groupId": 1 + }, + { + "id": "minecraft:cobbled_deepslate_wall", + "blockRuntimeId": 14801, + "groupId": 1 + }, + { + "id": "minecraft:deepslate_tile_wall", + "blockRuntimeId": 7969, + "groupId": 1 + }, + { + "id": "minecraft:polished_deepslate_wall", + "blockRuntimeId": 14208, + "groupId": 1 + }, + { + "id": "minecraft:deepslate_brick_wall", + "blockRuntimeId": 1793, + "groupId": 1 + }, + { + "id": "minecraft:tuff_wall", + "blockRuntimeId": 4261, + "groupId": 1 + }, + { + "id": "minecraft:tuff_brick_wall", + "blockRuntimeId": 2444, + "groupId": 1 + }, + { + "id": "minecraft:polished_tuff_wall", + "blockRuntimeId": 2729, + "groupId": 1 + }, + { + "id": "minecraft:mud_brick_wall", + "blockRuntimeId": 2906, + "groupId": 1 + }, + { + "id": "minecraft:resin_brick_wall", + "blockRuntimeId": 14639, + "groupId": 1 + }, + { + "id": "minecraft:oak_fence", + "blockRuntimeId": 9393, + "groupId": 2 + }, + { + "id": "minecraft:spruce_fence", + "blockRuntimeId": 1734, + "groupId": 2 + }, + { + "id": "minecraft:birch_fence", + "blockRuntimeId": 14610, + "groupId": 2 + }, + { + "id": "minecraft:jungle_fence", + "blockRuntimeId": 1725, + "groupId": 2 + }, + { + "id": "minecraft:acacia_fence", + "blockRuntimeId": 14637, + "groupId": 2 + }, + { + "id": "minecraft:dark_oak_fence", + "blockRuntimeId": 12691, + "groupId": 2 + }, + { + "id": "minecraft:mangrove_fence", + "blockRuntimeId": 11995, + "groupId": 2 + }, + { + "id": "minecraft:cherry_fence", + "blockRuntimeId": 3141, + "groupId": 2 + }, + { + "id": "minecraft:pale_oak_fence", + "blockRuntimeId": 1685, + "groupId": 2 + }, + { + "id": "minecraft:bamboo_fence", + "blockRuntimeId": 1982, + "groupId": 2 + }, + { + "id": "minecraft:nether_brick_fence", + "blockRuntimeId": 6019, + "groupId": 2 + }, + { + "id": "minecraft:crimson_fence", + "blockRuntimeId": 14374, + "groupId": 2 + }, + { + "id": "minecraft:warped_fence", + "blockRuntimeId": 10057, + "groupId": 2 + }, + { + "id": "minecraft:fence_gate", + "blockRuntimeId": 279, + "groupId": 3 + }, + { + "id": "minecraft:spruce_fence_gate", + "blockRuntimeId": 11960, + "groupId": 3 + }, + { + "id": "minecraft:birch_fence_gate", + "blockRuntimeId": 5125, + "groupId": 3 + }, + { + "id": "minecraft:jungle_fence_gate", + "blockRuntimeId": 8260, + "groupId": 3 + }, + { + "id": "minecraft:acacia_fence_gate", + "blockRuntimeId": 13852, + "groupId": 3 + }, + { + "id": "minecraft:dark_oak_fence_gate", + "blockRuntimeId": 5891, + "groupId": 3 + }, + { + "id": "minecraft:mangrove_fence_gate", + "blockRuntimeId": 6460, + "groupId": 3 + }, + { + "id": "minecraft:cherry_fence_gate", + "blockRuntimeId": 15138, + "groupId": 3 + }, + { + "id": "minecraft:pale_oak_fence_gate", + "blockRuntimeId": 345, + "groupId": 3 + }, + { + "id": "minecraft:bamboo_fence_gate", + "blockRuntimeId": 7943, + "groupId": 3 + }, + { + "id": "minecraft:crimson_fence_gate", + "blockRuntimeId": 6914, + "groupId": 3 + }, + { + "id": "minecraft:warped_fence_gate", + "blockRuntimeId": 8298, + "groupId": 3 + }, + { + "id": "minecraft:normal_stone_stairs", + "blockRuntimeId": 1983, + "groupId": 4 + }, + { + "id": "minecraft:stone_stairs", + "blockRuntimeId": 5031, + "groupId": 4 + }, + { + "id": "minecraft:mossy_cobblestone_stairs", + "blockRuntimeId": 5836, + "groupId": 4 + }, + { + "id": "minecraft:oak_stairs", + "blockRuntimeId": 1279, + "groupId": 4 + }, + { + "id": "minecraft:spruce_stairs", + "blockRuntimeId": 335, + "groupId": 4 + }, + { + "id": "minecraft:birch_stairs", + "blockRuntimeId": 12397, + "groupId": 4 + }, + { + "id": "minecraft:jungle_stairs", + "blockRuntimeId": 12357, + "groupId": 4 + }, + { + "id": "minecraft:acacia_stairs", + "blockRuntimeId": 11526, + "groupId": 4 + }, + { + "id": "minecraft:dark_oak_stairs", + "blockRuntimeId": 7961, + "groupId": 4 + }, + { + "id": "minecraft:mangrove_stairs", + "blockRuntimeId": 6422, + "groupId": 4 + }, + { + "id": "minecraft:cherry_stairs", + "blockRuntimeId": 12741, + "groupId": 4 + }, + { + "id": "minecraft:pale_oak_stairs", + "blockRuntimeId": 13410, + "groupId": 4 + }, + { + "id": "minecraft:bamboo_stairs", + "blockRuntimeId": 2891, + "groupId": 4 + }, + { + "id": "minecraft:bamboo_mosaic_stairs", + "blockRuntimeId": 11534, + "groupId": 4 + }, + { + "id": "minecraft:stone_brick_stairs", + "blockRuntimeId": 3124, + "groupId": 4 + }, + { + "id": "minecraft:mossy_stone_brick_stairs", + "blockRuntimeId": 10492, + "groupId": 4 + }, + { + "id": "minecraft:sandstone_stairs", + "blockRuntimeId": 4906, + "groupId": 4 + }, + { + "id": "minecraft:smooth_sandstone_stairs", + "blockRuntimeId": 4944, + "groupId": 4 + }, + { + "id": "minecraft:red_sandstone_stairs", + "blockRuntimeId": 8241, + "groupId": 4 + }, + { + "id": "minecraft:smooth_red_sandstone_stairs", + "blockRuntimeId": 9022, + "groupId": 4 + }, + { + "id": "minecraft:granite_stairs", + "blockRuntimeId": 4447, + "groupId": 4 + }, + { + "id": "minecraft:polished_granite_stairs", + "blockRuntimeId": 5859, + "groupId": 4 + }, + { + "id": "minecraft:diorite_stairs", + "blockRuntimeId": 6183, + "groupId": 4 + }, + { + "id": "minecraft:polished_diorite_stairs", + "blockRuntimeId": 12073, + "groupId": 4 + }, + { + "id": "minecraft:andesite_stairs", + "blockRuntimeId": 8202, + "groupId": 4 + }, + { + "id": "minecraft:polished_andesite_stairs", + "blockRuntimeId": 12589, + "groupId": 4 + }, + { + "id": "minecraft:brick_stairs", + "blockRuntimeId": 11883, + "groupId": 4 + }, + { + "id": "minecraft:nether_brick_stairs", + "blockRuntimeId": 310, + "groupId": 4 + }, + { + "id": "minecraft:red_nether_brick_stairs", + "blockRuntimeId": 11978, + "groupId": 4 + }, + { + "id": "minecraft:end_brick_stairs", + "blockRuntimeId": 11719, + "groupId": 4 + }, + { + "id": "minecraft:quartz_stairs", + "blockRuntimeId": 7080, + "groupId": 4 + }, + { + "id": "minecraft:smooth_quartz_stairs", + "blockRuntimeId": 13998, + "groupId": 4 + }, + { + "id": "minecraft:purpur_stairs", + "blockRuntimeId": 14061, + "groupId": 4 + }, + { + "id": "minecraft:prismarine_stairs", + "blockRuntimeId": 13306, + "groupId": 4 + }, + { + "id": "minecraft:dark_prismarine_stairs", + "blockRuntimeId": 13667, + "groupId": 4 + }, + { + "id": "minecraft:prismarine_bricks_stairs", + "blockRuntimeId": 1164, + "groupId": 4 + }, + { + "id": "minecraft:crimson_stairs", + "blockRuntimeId": 11608, + "groupId": 4 + }, + { + "id": "minecraft:warped_stairs", + "blockRuntimeId": 5044, + "groupId": 4 + }, + { + "id": "minecraft:blackstone_stairs", + "blockRuntimeId": 12578, + "groupId": 4 + }, + { + "id": "minecraft:polished_blackstone_stairs", + "blockRuntimeId": 6078, + "groupId": 4 + }, + { + "id": "minecraft:polished_blackstone_brick_stairs", + "blockRuntimeId": 6282, + "groupId": 4 + }, + { + "id": "minecraft:cobbled_deepslate_stairs", + "blockRuntimeId": 939, + "groupId": 4 + }, + { + "id": "minecraft:deepslate_tile_stairs", + "blockRuntimeId": 6906, + "groupId": 4 + }, + { + "id": "minecraft:polished_deepslate_stairs", + "blockRuntimeId": 1598, + "groupId": 4 + }, + { + "id": "minecraft:deepslate_brick_stairs", + "blockRuntimeId": 13659, + "groupId": 4 + }, + { + "id": "minecraft:tuff_stairs", + "blockRuntimeId": 10528, + "groupId": 4 + }, + { + "id": "minecraft:polished_tuff_stairs", + "blockRuntimeId": 13316, + "groupId": 4 + }, + { + "id": "minecraft:tuff_brick_stairs", + "blockRuntimeId": 11592, + "groupId": 4 + }, + { + "id": "minecraft:mud_brick_stairs", + "blockRuntimeId": 8836, + "groupId": 4 + }, + { + "id": "minecraft:cut_copper_stairs", + "blockRuntimeId": 6433, + "groupId": 4 + }, + { + "id": "minecraft:exposed_cut_copper_stairs", + "blockRuntimeId": 6414, + "groupId": 4 + }, + { + "id": "minecraft:weathered_cut_copper_stairs", + "blockRuntimeId": 6086, + "groupId": 4 + }, + { + "id": "minecraft:oxidized_cut_copper_stairs", + "blockRuntimeId": 1677, + "groupId": 4 + }, + { + "id": "minecraft:waxed_cut_copper_stairs", + "blockRuntimeId": 1741, + "groupId": 4 + }, + { + "id": "minecraft:waxed_exposed_cut_copper_stairs", + "blockRuntimeId": 5639, + "groupId": 4 + }, + { + "id": "minecraft:waxed_weathered_cut_copper_stairs", + "blockRuntimeId": 11509, + "groupId": 4 + }, + { + "id": "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId": 10004, + "groupId": 4 + }, + { + "id": "minecraft:resin_brick_stairs", + "blockRuntimeId": 11405, + "groupId": 4 + }, + { + "id": "minecraft:wooden_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:spruce_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:birch_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:jungle_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:acacia_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:dark_oak_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:mangrove_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:cherry_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:pale_oak_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:bamboo_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:iron_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:crimson_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:warped_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:copper_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:exposed_copper_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:weathered_copper_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:oxidized_copper_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:waxed_copper_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:waxed_exposed_copper_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:waxed_weathered_copper_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:waxed_oxidized_copper_door", + "blockRuntimeId": 0, + "groupId": 5 + }, + { + "id": "minecraft:trapdoor", + "blockRuntimeId": 1203, + "groupId": 6 + }, + { + "id": "minecraft:spruce_trapdoor", + "blockRuntimeId": 11928, + "groupId": 6 + }, + { + "id": "minecraft:birch_trapdoor", + "blockRuntimeId": 12001, + "groupId": 6 + }, + { + "id": "minecraft:jungle_trapdoor", + "blockRuntimeId": 8279, + "groupId": 6 + }, + { + "id": "minecraft:acacia_trapdoor", + "blockRuntimeId": 9225, + "groupId": 6 + }, + { + "id": "minecraft:dark_oak_trapdoor", + "blockRuntimeId": 13780, + "groupId": 6 + }, + { + "id": "minecraft:mangrove_trapdoor", + "blockRuntimeId": 6290, + "groupId": 6 + }, + { + "id": "minecraft:cherry_trapdoor", + "blockRuntimeId": 3090, + "groupId": 6 + }, + { + "id": "minecraft:pale_oak_trapdoor", + "blockRuntimeId": 13356, + "groupId": 6 + }, + { + "id": "minecraft:bamboo_trapdoor", + "blockRuntimeId": 8156, + "groupId": 6 + }, + { + "id": "minecraft:iron_trapdoor", + "blockRuntimeId": 1626, + "groupId": 6 + }, + { + "id": "minecraft:crimson_trapdoor", + "blockRuntimeId": 6119, + "groupId": 6 + }, + { + "id": "minecraft:warped_trapdoor", + "blockRuntimeId": 7030, + "groupId": 6 + }, + { + "id": "minecraft:copper_trapdoor", + "blockRuntimeId": 10036, + "groupId": 6 + }, + { + "id": "minecraft:exposed_copper_trapdoor", + "blockRuntimeId": 11372, + "groupId": 6 + }, + { + "id": "minecraft:weathered_copper_trapdoor", + "blockRuntimeId": 11897, + "groupId": 6 + }, + { + "id": "minecraft:oxidized_copper_trapdoor", + "blockRuntimeId": 6388, + "groupId": 6 + }, + { + "id": "minecraft:waxed_copper_trapdoor", + "blockRuntimeId": 4853, + "groupId": 6 + }, + { + "id": "minecraft:waxed_exposed_copper_trapdoor", + "blockRuntimeId": 10468, + "groupId": 6 + }, + { + "id": "minecraft:waxed_weathered_copper_trapdoor", + "blockRuntimeId": 7064, + "groupId": 6 + }, + { + "id": "minecraft:waxed_oxidized_copper_trapdoor", + "blockRuntimeId": 7568, + "groupId": 6 + }, + { + "id": "minecraft:iron_bars", + "blockRuntimeId": 7115, + "groupId": 7 + }, + { + "id": "minecraft:glass", + "blockRuntimeId": 11504, + "groupId": 8 + }, + { + "id": "minecraft:white_stained_glass", + "blockRuntimeId": 7559, + "groupId": 8 + }, + { + "id": "minecraft:light_gray_stained_glass", + "blockRuntimeId": 1788, + "groupId": 8 + }, + { + "id": "minecraft:gray_stained_glass", + "blockRuntimeId": 5040, + "groupId": 8 + }, + { + "id": "minecraft:black_stained_glass", + "blockRuntimeId": 10538, + "groupId": 8 + }, + { + "id": "minecraft:brown_stained_glass", + "blockRuntimeId": 2434, + "groupId": 8 + }, + { + "id": "minecraft:red_stained_glass", + "blockRuntimeId": 8135, + "groupId": 8 + }, + { + "id": "minecraft:orange_stained_glass", + "blockRuntimeId": 6345, + "groupId": 8 + }, + { + "id": "minecraft:yellow_stained_glass", + "blockRuntimeId": 13843, + "groupId": 8 + }, + { + "id": "minecraft:lime_stained_glass", + "blockRuntimeId": 321, + "groupId": 8 + }, + { + "id": "minecraft:green_stained_glass", + "blockRuntimeId": 6016, + "groupId": 8 + }, + { + "id": "minecraft:cyan_stained_glass", + "blockRuntimeId": 10537, + "groupId": 8 + }, + { + "id": "minecraft:light_blue_stained_glass", + "blockRuntimeId": 9436, + "groupId": 8 + }, + { + "id": "minecraft:blue_stained_glass", + "blockRuntimeId": 9398, + "groupId": 8 + }, + { + "id": "minecraft:purple_stained_glass", + "blockRuntimeId": 3685, + "groupId": 8 + }, + { + "id": "minecraft:magenta_stained_glass", + "blockRuntimeId": 13265, + "groupId": 8 + }, + { + "id": "minecraft:pink_stained_glass", + "blockRuntimeId": 6102, + "groupId": 8 + }, + { + "id": "minecraft:tinted_glass", + "blockRuntimeId": 10669, + "groupId": 8 + }, + { + "id": "minecraft:glass_pane", + "blockRuntimeId": 8131, + "groupId": 9 + }, + { + "id": "minecraft:white_stained_glass_pane", + "blockRuntimeId": 6346, + "groupId": 9 + }, + { + "id": "minecraft:light_gray_stained_glass_pane", + "blockRuntimeId": 1790, + "groupId": 9 + }, + { + "id": "minecraft:gray_stained_glass_pane", + "blockRuntimeId": 12282, + "groupId": 9 + }, + { + "id": "minecraft:black_stained_glass_pane", + "blockRuntimeId": 3696, + "groupId": 9 + }, + { + "id": "minecraft:brown_stained_glass_pane", + "blockRuntimeId": 1291, + "groupId": 9 + }, + { + "id": "minecraft:red_stained_glass_pane", + "blockRuntimeId": 12683, + "groupId": 9 + }, + { + "id": "minecraft:orange_stained_glass_pane", + "blockRuntimeId": 1193, + "groupId": 9 + }, + { + "id": "minecraft:yellow_stained_glass_pane", + "blockRuntimeId": 772, + "groupId": 9 + }, + { + "id": "minecraft:lime_stained_glass_pane", + "blockRuntimeId": 13841, + "groupId": 9 + }, + { + "id": "minecraft:green_stained_glass_pane", + "blockRuntimeId": 5858, + "groupId": 9 + }, + { + "id": "minecraft:cyan_stained_glass_pane", + "blockRuntimeId": 11832, + "groupId": 9 + }, + { + "id": "minecraft:light_blue_stained_glass_pane", + "blockRuntimeId": 5621, + "groupId": 9 + }, + { + "id": "minecraft:blue_stained_glass_pane", + "blockRuntimeId": 278, + "groupId": 9 + }, + { + "id": "minecraft:purple_stained_glass_pane", + "blockRuntimeId": 7567, + "groupId": 9 + }, + { + "id": "minecraft:magenta_stained_glass_pane", + "blockRuntimeId": 7114, + "groupId": 9 + }, + { + "id": "minecraft:pink_stained_glass_pane", + "blockRuntimeId": 12688, + "groupId": 9 + }, + { + "id": "minecraft:ladder", + "blockRuntimeId": 15173, + "groupId": 10 + }, + { + "id": "minecraft:scaffolding", + "blockRuntimeId": 4890, + "groupId": 10 + }, + { + "id": "minecraft:brick_block", + "blockRuntimeId": 7062, + "groupId": 10 + }, + { + "id": "minecraft:smooth_stone_slab", + "blockRuntimeId": 13805, + "groupId": 11 + }, + { + "id": "minecraft:normal_stone_slab", + "blockRuntimeId": 5922, + "groupId": 11 + }, + { + "id": "minecraft:cobblestone_slab", + "blockRuntimeId": 5911, + "groupId": 11 + }, + { + "id": "minecraft:mossy_cobblestone_slab", + "blockRuntimeId": 5907, + "groupId": 11 + }, + { + "id": "minecraft:oak_slab", + "blockRuntimeId": 6021, + "groupId": 11 + }, + { + "id": "minecraft:spruce_slab", + "blockRuntimeId": 12576, + "groupId": 11 + }, + { + "id": "minecraft:birch_slab", + "blockRuntimeId": 5561, + "groupId": 11 + }, + { + "id": "minecraft:jungle_slab", + "blockRuntimeId": 5619, + "groupId": 11 + }, + { + "id": "minecraft:acacia_slab", + "blockRuntimeId": 13828, + "groupId": 11 + }, + { + "id": "minecraft:dark_oak_slab", + "blockRuntimeId": 1791, + "groupId": 11 + }, + { + "id": "minecraft:mangrove_slab", + "blockRuntimeId": 3483, + "groupId": 11 + }, + { + "id": "minecraft:cherry_slab", + "blockRuntimeId": 11543, + "groupId": 11 + }, + { + "id": "minecraft:pale_oak_slab", + "blockRuntimeId": 6029, + "groupId": 11 + }, + { + "id": "minecraft:bamboo_slab", + "blockRuntimeId": 11880, + "groupId": 11 + }, + { + "id": "minecraft:bamboo_mosaic_slab", + "blockRuntimeId": 3869, + "groupId": 11 + }, + { + "id": "minecraft:stone_brick_slab", + "blockRuntimeId": 11606, + "groupId": 11 + }, + { + "id": "minecraft:mossy_stone_brick_slab", + "blockRuntimeId": 1694, + "groupId": 11 + }, + { + "id": "minecraft:sandstone_slab", + "blockRuntimeId": 1692, + "groupId": 11 + }, + { + "id": "minecraft:cut_sandstone_slab", + "blockRuntimeId": 8314, + "groupId": 11 + }, + { + "id": "minecraft:smooth_sandstone_slab", + "blockRuntimeId": 2438, + "groupId": 11 + }, + { + "id": "minecraft:red_sandstone_slab", + "blockRuntimeId": 3088, + "groupId": 11 + }, + { + "id": "minecraft:cut_red_sandstone_slab", + "blockRuntimeId": 13657, + "groupId": 11 + }, + { + "id": "minecraft:smooth_red_sandstone_slab", + "blockRuntimeId": 11913, + "groupId": 11 + }, + { + "id": "minecraft:granite_slab", + "blockRuntimeId": 6404, + "groupId": 11 + }, + { + "id": "minecraft:polished_granite_slab", + "blockRuntimeId": 11588, + "groupId": 11 + }, + { + "id": "minecraft:diorite_slab", + "blockRuntimeId": 1174, + "groupId": 11 + }, + { + "id": "minecraft:polished_diorite_slab", + "blockRuntimeId": 6430, + "groupId": 11 + }, + { + "id": "minecraft:andesite_slab", + "blockRuntimeId": 11687, + "groupId": 11 + }, + { + "id": "minecraft:polished_andesite_slab", + "blockRuntimeId": 13643, + "groupId": 11 + }, + { + "id": "minecraft:brick_slab", + "blockRuntimeId": 13798, + "groupId": 11 + }, + { + "id": "minecraft:nether_brick_slab", + "blockRuntimeId": 11157, + "groupId": 11 + }, + { + "id": "minecraft:red_nether_brick_slab", + "blockRuntimeId": 11957, + "groupId": 11 + }, + { + "id": "minecraft:end_stone_brick_slab", + "blockRuntimeId": 1993, + "groupId": 11 + }, + { + "id": "minecraft:quartz_slab", + "blockRuntimeId": 12023, + "groupId": 11 + }, + { + "id": "minecraft:smooth_quartz_slab", + "blockRuntimeId": 13834, + "groupId": 11 + }, + { + "id": "minecraft:purpur_slab", + "blockRuntimeId": 2606, + "groupId": 11 + }, + { + "id": "minecraft:prismarine_slab", + "blockRuntimeId": 6033, + "groupId": 11 + }, + { + "id": "minecraft:dark_prismarine_slab", + "blockRuntimeId": 10034, + "groupId": 11 + }, + { + "id": "minecraft:prismarine_brick_slab", + "blockRuntimeId": 5066, + "groupId": 11 + }, + { + "id": "minecraft:crimson_slab", + "blockRuntimeId": 10512, + "groupId": 11 + }, + { + "id": "minecraft:warped_slab", + "blockRuntimeId": 11839, + "groupId": 11 + }, + { + "id": "minecraft:blackstone_slab", + "blockRuntimeId": 3106, + "groupId": 11 + }, + { + "id": "minecraft:polished_blackstone_slab", + "blockRuntimeId": 11098, + "groupId": 11 + }, + { + "id": "minecraft:polished_blackstone_brick_slab", + "blockRuntimeId": 5920, + "groupId": 11 + }, + { + "id": "minecraft:cobbled_deepslate_slab", + "blockRuntimeId": 13352, + "groupId": 11 + }, + { + "id": "minecraft:polished_deepslate_slab", + "blockRuntimeId": 1300, + "groupId": 11 + }, + { + "id": "minecraft:deepslate_tile_slab", + "blockRuntimeId": 6026, + "groupId": 11 + }, + { + "id": "minecraft:deepslate_brick_slab", + "blockRuntimeId": 5042, + "groupId": 11 + }, + { + "id": "minecraft:tuff_slab", + "blockRuntimeId": 1254, + "groupId": 11 + }, + { + "id": "minecraft:polished_tuff_slab", + "blockRuntimeId": 363, + "groupId": 11 + }, + { + "id": "minecraft:tuff_brick_slab", + "blockRuntimeId": 5061, + "groupId": 11 + }, + { + "id": "minecraft:mud_brick_slab", + "blockRuntimeId": 5648, + "groupId": 11 + }, + { + "id": "minecraft:cut_copper_slab", + "blockRuntimeId": 8133, + "groupId": 11 + }, + { + "id": "minecraft:exposed_cut_copper_slab", + "blockRuntimeId": 11976, + "groupId": 11 + }, + { + "id": "minecraft:weathered_cut_copper_slab", + "blockRuntimeId": 11151, + "groupId": 11 + }, + { + "id": "minecraft:oxidized_cut_copper_slab", + "blockRuntimeId": 8181, + "groupId": 11 + }, + { + "id": "minecraft:waxed_cut_copper_slab", + "blockRuntimeId": 14206, + "groupId": 11 + }, + { + "id": "minecraft:waxed_exposed_cut_copper_slab", + "blockRuntimeId": 1228, + "groupId": 11 + }, + { + "id": "minecraft:waxed_weathered_cut_copper_slab", + "blockRuntimeId": 11924, + "groupId": 11 + }, + { + "id": "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId": 2655, + "groupId": 11 + }, + { + "id": "minecraft:resin_brick_slab", + "blockRuntimeId": 13349, + "groupId": 11 + }, + { + "id": "minecraft:stone_bricks", + "blockRuntimeId": 5835, + "groupId": 12 + }, + { + "id": "minecraft:mossy_stone_bricks", + "blockRuntimeId": 5063, + "groupId": 12 + }, + { + "id": "minecraft:cracked_stone_bricks", + "blockRuntimeId": 4935, + "groupId": 12 + }, + { + "id": "minecraft:chiseled_stone_bricks", + "blockRuntimeId": 309, + "groupId": 12 + }, + { + "id": "minecraft:smooth_stone", + "blockRuntimeId": 6385, + "groupId": 12 + }, + { + "id": "minecraft:end_bricks", + "blockRuntimeId": 1292, + "groupId": 12 + }, + { + "id": "minecraft:polished_blackstone_bricks", + "blockRuntimeId": 6933, + "groupId": 12 + }, + { + "id": "minecraft:cracked_polished_blackstone_bricks", + "blockRuntimeId": 13225, + "groupId": 12 + }, + { + "id": "minecraft:gilded_blackstone", + "blockRuntimeId": 6411, + "groupId": 12 + }, + { + "id": "minecraft:chiseled_polished_blackstone", + "blockRuntimeId": 7960, + "groupId": 12 + }, + { + "id": "minecraft:deepslate_tiles", + "blockRuntimeId": 6384, + "groupId": 12 + }, + { + "id": "minecraft:cracked_deepslate_tiles", + "blockRuntimeId": 5877, + "groupId": 12 + }, + { + "id": "minecraft:deepslate_bricks", + "blockRuntimeId": 8391, + "groupId": 12 + }, + { + "id": "minecraft:tuff_bricks", + "blockRuntimeId": 12017, + "groupId": 12 + }, + { + "id": "minecraft:cracked_deepslate_bricks", + "blockRuntimeId": 8255, + "groupId": 12 + }, + { + "id": "minecraft:chiseled_deepslate", + "blockRuntimeId": 8132, + "groupId": 12 + }, + { + "id": "minecraft:chiseled_tuff", + "blockRuntimeId": 14375, + "groupId": 12 + }, + { + "id": "minecraft:chiseled_tuff_bricks", + "blockRuntimeId": 13705, + "groupId": 12 + }, + { + "id": "minecraft:cobblestone", + "blockRuntimeId": 4938, + "groupId": 13 + }, + { + "id": "minecraft:mossy_cobblestone", + "blockRuntimeId": 1231, + "groupId": 13 + }, + { + "id": "minecraft:cobbled_deepslate", + "blockRuntimeId": 12022, + "groupId": 13 + }, + { + "id": "minecraft:sandstone", + "blockRuntimeId": 4987, + "groupId": 14 + }, + { + "id": "minecraft:chiseled_sandstone", + "blockRuntimeId": 11119, + "groupId": 14 + }, + { + "id": "minecraft:cut_sandstone", + "blockRuntimeId": 10702, + "groupId": 14 + }, + { + "id": "minecraft:smooth_sandstone", + "blockRuntimeId": 947, + "groupId": 14 + }, + { + "id": "minecraft:red_sandstone", + "blockRuntimeId": 11956, + "groupId": 14 + }, + { + "id": "minecraft:chiseled_red_sandstone", + "blockRuntimeId": 13773, + "groupId": 14 + }, + { + "id": "minecraft:cut_red_sandstone", + "blockRuntimeId": 5662, + "groupId": 14 + }, + { + "id": "minecraft:smooth_red_sandstone", + "blockRuntimeId": 14060, + "groupId": 14 + }, + { + "id": "minecraft:coal_block", + "blockRuntimeId": 8296, + "groupId": 15 + }, + { + "id": "minecraft:dried_kelp_block", + "blockRuntimeId": 14372, + "groupId": 15 + }, + { + "id": "minecraft:copper_block", + "blockRuntimeId": 6904, + "groupId": 16 + }, + { + "id": "minecraft:weathered_copper", + "blockRuntimeId": 14966, + "groupId": 16 + }, + { + "id": "minecraft:exposed_copper", + "blockRuntimeId": 1958, + "groupId": 16 + }, + { + "id": "minecraft:oxidized_copper", + "blockRuntimeId": 4871, + "groupId": 16 + }, + { + "id": "minecraft:waxed_copper", + "blockRuntimeId": 14029, + "groupId": 16 + }, + { + "id": "minecraft:waxed_exposed_copper", + "blockRuntimeId": 2631, + "groupId": 16 + }, + { + "id": "minecraft:waxed_weathered_copper", + "blockRuntimeId": 2653, + "groupId": 16 + }, + { + "id": "minecraft:waxed_oxidized_copper", + "blockRuntimeId": 13800, + "groupId": 16 + }, + { + "id": "minecraft:copper_grate", + "blockRuntimeId": 1699, + "groupId": 16 + }, + { + "id": "minecraft:exposed_copper_grate", + "blockRuntimeId": 8276, + "groupId": 16 + }, + { + "id": "minecraft:weathered_copper_grate", + "blockRuntimeId": 5059, + "groupId": 16 + }, + { + "id": "minecraft:oxidized_copper_grate", + "blockRuntimeId": 11996, + "groupId": 16 + }, + { + "id": "minecraft:waxed_copper_grate", + "blockRuntimeId": 8277, + "groupId": 16 + }, + { + "id": "minecraft:waxed_exposed_copper_grate", + "blockRuntimeId": 1955, + "groupId": 16 + }, + { + "id": "minecraft:waxed_weathered_copper_grate", + "blockRuntimeId": 6103, + "groupId": 16 + }, + { + "id": "minecraft:waxed_oxidized_copper_grate", + "blockRuntimeId": 14613, + "groupId": 16 + }, + { + "id": "minecraft:cut_copper", + "blockRuntimeId": 6942, + "groupId": 16 + }, + { + "id": "minecraft:exposed_cut_copper", + "blockRuntimeId": 11508, + "groupId": 16 + }, + { + "id": "minecraft:weathered_cut_copper", + "blockRuntimeId": 13206, + "groupId": 16 + }, + { + "id": "minecraft:oxidized_cut_copper", + "blockRuntimeId": 8407, + "groupId": 16 + }, + { + "id": "minecraft:waxed_cut_copper", + "blockRuntimeId": 13348, + "groupId": 16 + }, + { + "id": "minecraft:waxed_exposed_cut_copper", + "blockRuntimeId": 5160, + "groupId": 16 + }, + { + "id": "minecraft:waxed_weathered_cut_copper", + "blockRuntimeId": 7558, + "groupId": 16 + }, + { + "id": "minecraft:waxed_oxidized_cut_copper", + "blockRuntimeId": 1172, + "groupId": 16 + }, + { + "id": "minecraft:chiseled_copper", + "blockRuntimeId": 9358, + "groupId": 16 + }, + { + "id": "minecraft:exposed_chiseled_copper", + "blockRuntimeId": 11959, + "groupId": 16 + }, + { + "id": "minecraft:weathered_chiseled_copper", + "blockRuntimeId": 1607, + "groupId": 16 + }, + { + "id": "minecraft:oxidized_chiseled_copper", + "blockRuntimeId": 8172, + "groupId": 16 + }, + { + "id": "minecraft:waxed_chiseled_copper", + "blockRuntimeId": 14205, + "groupId": 16 + }, + { + "id": "minecraft:waxed_exposed_chiseled_copper", + "blockRuntimeId": 1253, + "groupId": 16 + }, + { + "id": "minecraft:waxed_oxidized_chiseled_copper", + "blockRuntimeId": 113, + "groupId": 16 + }, + { + "id": "minecraft:waxed_weathered_chiseled_copper", + "blockRuntimeId": 5039, + "groupId": 16 + }, + { + "id": "minecraft:copper_bulb", + "blockRuntimeId": 6179, + "groupId": 16 + }, + { + "id": "minecraft:exposed_copper_bulb", + "blockRuntimeId": 11601, + "groupId": 16 + }, + { + "id": "minecraft:weathered_copper_bulb", + "blockRuntimeId": 13819, + "groupId": 16 + }, + { + "id": "minecraft:oxidized_copper_bulb", + "blockRuntimeId": 3308, + "groupId": 16 + }, + { + "id": "minecraft:waxed_copper_bulb", + "blockRuntimeId": 1975, + "groupId": 16 + }, + { + "id": "minecraft:waxed_exposed_copper_bulb", + "blockRuntimeId": 5916, + "groupId": 16 + }, + { + "id": "minecraft:waxed_weathered_copper_bulb", + "blockRuntimeId": 10012, + "groupId": 16 + }, + { + "id": "minecraft:waxed_oxidized_copper_bulb", + "blockRuntimeId": 11619, + "groupId": 16 + }, + { + "id": "minecraft:iron_block", + "blockRuntimeId": 15172, + "groupId": 17 + }, + { + "id": "minecraft:gold_block", + "blockRuntimeId": 1339, + "groupId": 17 + }, + { + "id": "minecraft:emerald_block", + "blockRuntimeId": 3498, + "groupId": 17 + }, + { + "id": "minecraft:diamond_block", + "blockRuntimeId": 1276, + "groupId": 17 + }, + { + "id": "minecraft:lapis_block", + "blockRuntimeId": 6006, + "groupId": 17 + }, + { + "id": "minecraft:raw_copper_block", + "blockRuntimeId": 8179, + "groupId": 17 + }, + { + "id": "minecraft:raw_iron_block", + "blockRuntimeId": 15169, + "groupId": 17 + }, + { + "id": "minecraft:raw_gold_block", + "blockRuntimeId": 1696, + "groupId": 17 + }, + { + "id": "minecraft:quartz_block", + "blockRuntimeId": 5027, + "groupId": 17 + }, + { + "id": "minecraft:quartz_bricks", + "blockRuntimeId": 11686, + "groupId": 17 + }, + { + "id": "minecraft:quartz_pillar", + "blockRuntimeId": 5157, + "groupId": 17 + }, + { + "id": "minecraft:chiseled_quartz_block", + "blockRuntimeId": 13372, + "groupId": 17 + }, + { + "id": "minecraft:smooth_quartz", + "blockRuntimeId": 6335, + "groupId": 17 + }, + { + "id": "minecraft:prismarine", + "blockRuntimeId": 11369, + "groupId": 17 + }, + { + "id": "minecraft:prismarine_bricks", + "blockRuntimeId": 14431, + "groupId": 17 + }, + { + "id": "minecraft:dark_prismarine", + "blockRuntimeId": 6150, + "groupId": 17 + }, + { + "id": "minecraft:slime", + "blockRuntimeId": 5966, + "groupId": 17 + }, + { + "id": "minecraft:honey_block", + "blockRuntimeId": 3068, + "groupId": 17 + }, + { + "id": "minecraft:honeycomb_block", + "blockRuntimeId": 6281, + "groupId": 17 + }, + { + "id": "minecraft:resin_block", + "blockRuntimeId": 11838, + "groupId": 17 + }, + { + "id": "minecraft:hay_block", + "blockRuntimeId": 2638, + "groupId": 17 + }, + { + "id": "minecraft:bone_block", + "blockRuntimeId": 5967, + "groupId": 17 + }, + { + "id": "minecraft:resin_bricks", + "blockRuntimeId": 10519, + "groupId": 17 + }, + { + "id": "minecraft:chiseled_resin_bricks", + "blockRuntimeId": 11545, + "groupId": 17 + }, + { + "id": "minecraft:nether_brick", + "blockRuntimeId": 13326, + "groupId": 17 + }, + { + "id": "minecraft:red_nether_brick", + "blockRuntimeId": 776, + "groupId": 17 + }, + { + "id": "minecraft:chiseled_nether_bricks", + "blockRuntimeId": 13284, + "groupId": 17 + }, + { + "id": "minecraft:cracked_nether_bricks", + "blockRuntimeId": 6350, + "groupId": 17 + }, + { + "id": "minecraft:netherite_block", + "blockRuntimeId": 5122, + "groupId": 17 + }, + { + "id": "minecraft:lodestone", + "blockRuntimeId": 15166, + "groupId": 17 + }, + { + "id": "minecraft:white_wool", + "blockRuntimeId": 8297, + "groupId": 18 + }, + { + "id": "minecraft:light_gray_wool", + "blockRuntimeId": 14422, + "groupId": 18 + }, + { + "id": "minecraft:gray_wool", + "blockRuntimeId": 1192, + "groupId": 18 + }, + { + "id": "minecraft:black_wool", + "blockRuntimeId": 1700, + "groupId": 18 + }, + { + "id": "minecraft:brown_wool", + "blockRuntimeId": 1252, + "groupId": 18 + }, + { + "id": "minecraft:red_wool", + "blockRuntimeId": 322, + "groupId": 18 + }, + { + "id": "minecraft:orange_wool", + "blockRuntimeId": 2612, + "groupId": 18 + }, + { + "id": "minecraft:yellow_wool", + "blockRuntimeId": 765, + "groupId": 18 + }, + { + "id": "minecraft:lime_wool", + "blockRuntimeId": 11087, + "groupId": 18 + }, + { + "id": "minecraft:green_wool", + "blockRuntimeId": 5064, + "groupId": 18 + }, + { + "id": "minecraft:cyan_wool", + "blockRuntimeId": 8223, + "groupId": 18 + }, + { + "id": "minecraft:light_blue_wool", + "blockRuntimeId": 12689, + "groupId": 18 + }, + { + "id": "minecraft:blue_wool", + "blockRuntimeId": 8408, + "groupId": 18 + }, + { + "id": "minecraft:purple_wool", + "blockRuntimeId": 15171, + "groupId": 18 + }, + { + "id": "minecraft:magenta_wool", + "blockRuntimeId": 3312, + "groupId": 18 + }, + { + "id": "minecraft:pink_wool", + "blockRuntimeId": 5123, + "groupId": 18 + }, + { + "id": "minecraft:white_carpet", + "blockRuntimeId": 13314, + "groupId": 19 + }, + { + "id": "minecraft:light_gray_carpet", + "blockRuntimeId": 15170, + "groupId": 19 + }, + { + "id": "minecraft:gray_carpet", + "blockRuntimeId": 1195, + "groupId": 19 + }, + { + "id": "minecraft:black_carpet", + "blockRuntimeId": 11129, + "groupId": 19 + }, + { + "id": "minecraft:brown_carpet", + "blockRuntimeId": 3123, + "groupId": 19 + }, + { + "id": "minecraft:red_carpet", + "blockRuntimeId": 13655, + "groupId": 19 + }, + { + "id": "minecraft:orange_carpet", + "blockRuntimeId": 12646, + "groupId": 19 + }, + { + "id": "minecraft:yellow_carpet", + "blockRuntimeId": 10536, + "groupId": 19 + }, + { + "id": "minecraft:lime_carpet", + "blockRuntimeId": 12084, + "groupId": 19 + }, + { + "id": "minecraft:green_carpet", + "blockRuntimeId": 5065, + "groupId": 19 + }, + { + "id": "minecraft:cyan_carpet", + "blockRuntimeId": 4941, + "groupId": 19 + }, + { + "id": "minecraft:light_blue_carpet", + "blockRuntimeId": 7120, + "groupId": 19 + }, + { + "id": "minecraft:blue_carpet", + "blockRuntimeId": 974, + "groupId": 19 + }, + { + "id": "minecraft:purple_carpet", + "blockRuntimeId": 14052, + "groupId": 19 + }, + { + "id": "minecraft:magenta_carpet", + "blockRuntimeId": 1235, + "groupId": 19 + }, + { + "id": "minecraft:pink_carpet", + "blockRuntimeId": 13997, + "groupId": 19 + }, + { + "id": "minecraft:white_concrete_powder", + "blockRuntimeId": 7505, + "groupId": 20 + }, + { + "id": "minecraft:light_gray_concrete_powder", + "blockRuntimeId": 13298, + "groupId": 20 + }, + { + "id": "minecraft:gray_concrete_powder", + "blockRuntimeId": 13435, + "groupId": 20 + }, + { + "id": "minecraft:black_concrete_powder", + "blockRuntimeId": 1738, + "groupId": 20 + }, + { + "id": "minecraft:brown_concrete_powder", + "blockRuntimeId": 10083, + "groupId": 20 + }, + { + "id": "minecraft:red_concrete_powder", + "blockRuntimeId": 13297, + "groupId": 20 + }, + { + "id": "minecraft:orange_concrete_powder", + "blockRuntimeId": 14963, + "groupId": 20 + }, + { + "id": "minecraft:yellow_concrete_powder", + "blockRuntimeId": 13836, + "groupId": 20 + }, + { + "id": "minecraft:lime_concrete_powder", + "blockRuntimeId": 14376, + "groupId": 20 + }, + { + "id": "minecraft:green_concrete_powder", + "blockRuntimeId": 12573, + "groupId": 20 + }, + { + "id": "minecraft:cyan_concrete_powder", + "blockRuntimeId": 4842, + "groupId": 20 + }, + { + "id": "minecraft:light_blue_concrete_powder", + "blockRuntimeId": 103, + "groupId": 20 + }, + { + "id": "minecraft:blue_concrete_powder", + "blockRuntimeId": 12081, + "groupId": 20 + }, + { + "id": "minecraft:purple_concrete_powder", + "blockRuntimeId": 11916, + "groupId": 20 + }, + { + "id": "minecraft:magenta_concrete_powder", + "blockRuntimeId": 6248, + "groupId": 20 + }, + { + "id": "minecraft:pink_concrete_powder", + "blockRuntimeId": 6028, + "groupId": 20 + }, + { + "id": "minecraft:white_concrete", + "blockRuntimeId": 14620, + "groupId": 21 + }, + { + "id": "minecraft:light_gray_concrete", + "blockRuntimeId": 2622, + "groupId": 21 + }, + { + "id": "minecraft:gray_concrete", + "blockRuntimeId": 13438, + "groupId": 21 + }, + { + "id": "minecraft:black_concrete", + "blockRuntimeId": 12049, + "groupId": 21 + }, + { + "id": "minecraft:brown_concrete", + "blockRuntimeId": 11542, + "groupId": 21 + }, + { + "id": "minecraft:red_concrete", + "blockRuntimeId": 13996, + "groupId": 21 + }, + { + "id": "minecraft:orange_concrete", + "blockRuntimeId": 12082, + "groupId": 21 + }, + { + "id": "minecraft:yellow_concrete", + "blockRuntimeId": 4940, + "groupId": 21 + }, + { + "id": "minecraft:lime_concrete", + "blockRuntimeId": 6407, + "groupId": 21 + }, + { + "id": "minecraft:green_concrete", + "blockRuntimeId": 10509, + "groupId": 21 + }, + { + "id": "minecraft:cyan_concrete", + "blockRuntimeId": 13315, + "groupId": 21 + }, + { + "id": "minecraft:light_blue_concrete", + "blockRuntimeId": 13706, + "groupId": 21 + }, + { + "id": "minecraft:blue_concrete", + "blockRuntimeId": 13325, + "groupId": 21 + }, + { + "id": "minecraft:purple_concrete", + "blockRuntimeId": 5915, + "groupId": 21 + }, + { + "id": "minecraft:magenta_concrete", + "blockRuntimeId": 6149, + "groupId": 21 + }, + { + "id": "minecraft:pink_concrete", + "blockRuntimeId": 4455, + "groupId": 21 + }, + { + "id": "minecraft:hardened_clay", + "blockRuntimeId": 1995, + "groupId": 22 + }, + { + "id": "minecraft:white_terracotta", + "blockRuntimeId": 7116, + "groupId": 22 + }, + { + "id": "minecraft:light_gray_terracotta", + "blockRuntimeId": 2429, + "groupId": 22 + }, + { + "id": "minecraft:gray_terracotta", + "blockRuntimeId": 6387, + "groupId": 22 + }, + { + "id": "minecraft:black_terracotta", + "blockRuntimeId": 11404, + "groupId": 22 + }, + { + "id": "minecraft:brown_terracotta", + "blockRuntimeId": 14402, + "groupId": 22 + }, + { + "id": "minecraft:red_terracotta", + "blockRuntimeId": 3144, + "groupId": 22 + }, + { + "id": "minecraft:orange_terracotta", + "blockRuntimeId": 13797, + "groupId": 22 + }, + { + "id": "minecraft:yellow_terracotta", + "blockRuntimeId": 5927, + "groupId": 22 + }, + { + "id": "minecraft:lime_terracotta", + "blockRuntimeId": 15137, + "groupId": 22 + }, + { + "id": "minecraft:green_terracotta", + "blockRuntimeId": 5041, + "groupId": 22 + }, + { + "id": "minecraft:cyan_terracotta", + "blockRuntimeId": 0, + "groupId": 22 + }, + { + "id": "minecraft:light_blue_terracotta", + "blockRuntimeId": 6143, + "groupId": 22 + }, + { + "id": "minecraft:blue_terracotta", + "blockRuntimeId": 4986, + "groupId": 22 + }, + { + "id": "minecraft:purple_terracotta", + "blockRuntimeId": 11727, + "groupId": 22 + }, + { + "id": "minecraft:magenta_terracotta", + "blockRuntimeId": 6413, + "groupId": 22 + }, + { + "id": "minecraft:pink_terracotta", + "blockRuntimeId": 5871, + "groupId": 22 + }, + { + "id": "minecraft:white_glazed_terracotta", + "blockRuntimeId": 9211, + "groupId": 23 + }, + { + "id": "minecraft:silver_glazed_terracotta", + "blockRuntimeId": 4441, + "groupId": 23 + }, + { + "id": "minecraft:gray_glazed_terracotta", + "blockRuntimeId": 15154, + "groupId": 23 + }, + { + "id": "minecraft:black_glazed_terracotta", + "blockRuntimeId": 9998, + "groupId": 23 + }, + { + "id": "minecraft:brown_glazed_terracotta", + "blockRuntimeId": 4847, + "groupId": 23 + }, + { + "id": "minecraft:red_glazed_terracotta", + "blockRuntimeId": 5885, + "groupId": 23 + }, + { + "id": "minecraft:orange_glazed_terracotta", + "blockRuntimeId": 3485, + "groupId": 23 + }, + { + "id": "minecraft:yellow_glazed_terracotta", + "blockRuntimeId": 3109, + "groupId": 23 + }, + { + "id": "minecraft:lime_glazed_terracotta", + "blockRuntimeId": 1197, + "groupId": 23 + }, + { + "id": "minecraft:green_glazed_terracotta", + "blockRuntimeId": 11986, + "groupId": 23 + }, + { + "id": "minecraft:cyan_glazed_terracotta", + "blockRuntimeId": 8249, + "groupId": 23 + }, + { + "id": "minecraft:light_blue_glazed_terracotta", + "blockRuntimeId": 8398, + "groupId": 23 + }, + { + "id": "minecraft:blue_glazed_terracotta", + "blockRuntimeId": 8392, + "groupId": 23 + }, + { + "id": "minecraft:purple_glazed_terracotta", + "blockRuntimeId": 12567, + "groupId": 23 + }, + { + "id": "minecraft:magenta_glazed_terracotta", + "blockRuntimeId": 3313, + "groupId": 23 + }, + { + "id": "minecraft:pink_glazed_terracotta", + "blockRuntimeId": 11917, + "groupId": 23 + }, + { + "id": "minecraft:purpur_block", + "blockRuntimeId": 14012, + "groupId": 24 + }, + { + "id": "minecraft:purpur_pillar", + "blockRuntimeId": 9323, + "groupId": 24 + }, + { + "id": "minecraft:packed_mud", + "blockRuntimeId": 1295, + "groupId": 24 + }, + { + "id": "minecraft:mud_bricks", + "blockRuntimeId": 12266, + "groupId": 24 + }, + { + "id": "minecraft:nether_wart_block", + "blockRuntimeId": 6032, + "groupId": 25 + }, + { + "id": "minecraft:warped_wart_block", + "blockRuntimeId": 10517, + "groupId": 25 + }, + { + "id": "minecraft:shroomlight", + "blockRuntimeId": 7942, + "groupId": 25 + }, + { + "id": "minecraft:crimson_nylium", + "blockRuntimeId": 5913, + "groupId": 25 + }, + { + "id": "minecraft:warped_nylium", + "blockRuntimeId": 11682, + "groupId": 25 + }, + { + "id": "minecraft:netherrack", + "blockRuntimeId": 12609, + "groupId": 25 + }, + { + "id": "minecraft:soul_soil", + "blockRuntimeId": 9437, + "groupId": 25 + }, + { + "id": "minecraft:grass_block", + "blockRuntimeId": 10574, + "groupId": 25 + }, + { + "id": "minecraft:podzol", + "blockRuntimeId": 6903, + "groupId": 25 + }, + { + "id": "minecraft:mycelium", + "blockRuntimeId": 5014, + "groupId": 25 + }, + { + "id": "minecraft:grass_path", + "blockRuntimeId": 14638, + "groupId": 25 + }, + { + "id": "minecraft:dirt", + "blockRuntimeId": 9397, + "groupId": 25 + }, + { + "id": "minecraft:coarse_dirt", + "blockRuntimeId": 6338, + "groupId": 25 + }, + { + "id": "minecraft:dirt_with_roots", + "blockRuntimeId": 8295, + "groupId": 25 + }, + { + "id": "minecraft:farmland", + "blockRuntimeId": 5650, + "groupId": 25 + }, + { + "id": "minecraft:mud", + "blockRuntimeId": 12026, + "groupId": 25 + }, + { + "id": "minecraft:clay", + "blockRuntimeId": 12740, + "groupId": 25 + }, + { + "id": "minecraft:iron_ore", + "blockRuntimeId": 6943, + "groupId": 26 + }, + { + "id": "minecraft:gold_ore", + "blockRuntimeId": 3108, + "groupId": 26 + }, + { + "id": "minecraft:diamond_ore", + "blockRuntimeId": 6147, + "groupId": 26 + }, + { + "id": "minecraft:lapis_ore", + "blockRuntimeId": 13995, + "groupId": 26 + }, + { + "id": "minecraft:redstone_ore", + "blockRuntimeId": 6013, + "groupId": 26 + }, + { + "id": "minecraft:coal_ore", + "blockRuntimeId": 6007, + "groupId": 26 + }, + { + "id": "minecraft:copper_ore", + "blockRuntimeId": 4872, + "groupId": 26 + }, + { + "id": "minecraft:emerald_ore", + "blockRuntimeId": 13418, + "groupId": 26 + }, + { + "id": "minecraft:quartz_ore", + "blockRuntimeId": 6306, + "groupId": 26 + }, + { + "id": "minecraft:nether_gold_ore", + "blockRuntimeId": 32, + "groupId": 26 + }, + { + "id": "minecraft:ancient_debris", + "blockRuntimeId": 11414, + "groupId": 26 + }, + { + "id": "minecraft:deepslate_iron_ore", + "blockRuntimeId": 13327, + "groupId": 26 + }, + { + "id": "minecraft:deepslate_gold_ore", + "blockRuntimeId": 11413, + "groupId": 26 + }, + { + "id": "minecraft:deepslate_diamond_ore", + "blockRuntimeId": 14405, + "groupId": 26 + }, + { + "id": "minecraft:deepslate_lapis_ore", + "blockRuntimeId": 13299, + "groupId": 26 + }, + { + "id": "minecraft:deepslate_redstone_ore", + "blockRuntimeId": 11993, + "groupId": 26 + }, + { + "id": "minecraft:deepslate_emerald_ore", + "blockRuntimeId": 11683, + "groupId": 26 + }, + { + "id": "minecraft:deepslate_coal_ore", + "blockRuntimeId": 13205, + "groupId": 26 + }, + { + "id": "minecraft:deepslate_copper_ore", + "blockRuntimeId": 308, + "groupId": 26 + }, + { + "id": "minecraft:stone", + "blockRuntimeId": 2437, + "groupId": 27 + }, + { + "id": "minecraft:granite", + "blockRuntimeId": 277, + "groupId": 27 + }, + { + "id": "minecraft:diorite", + "blockRuntimeId": 344, + "groupId": 27 + }, + { + "id": "minecraft:andesite", + "blockRuntimeId": 2435, + "groupId": 27 + }, + { + "id": "minecraft:blackstone", + "blockRuntimeId": 13851, + "groupId": 27 + }, + { + "id": "minecraft:deepslate", + "blockRuntimeId": 1232, + "groupId": 27 + }, + { + "id": "minecraft:tuff", + "blockRuntimeId": 1673, + "groupId": 27 + }, + { + "id": "minecraft:basalt", + "blockRuntimeId": 6135, + "groupId": 27 + }, + { + "id": "minecraft:polished_granite", + "blockRuntimeId": 1753, + "groupId": 27 + }, + { + "id": "minecraft:polished_diorite", + "blockRuntimeId": 9985, + "groupId": 27 + }, + { + "id": "minecraft:polished_andesite", + "blockRuntimeId": 13807, + "groupId": 27 + }, + { + "id": "minecraft:polished_blackstone", + "blockRuntimeId": 5013, + "groupId": 27 + }, + { + "id": "minecraft:polished_deepslate", + "blockRuntimeId": 14057, + "groupId": 27 + }, + { + "id": "minecraft:polished_tuff", + "blockRuntimeId": 13264, + "groupId": 27 + }, + { + "id": "minecraft:polished_basalt", + "blockRuntimeId": 29, + "groupId": 27 + }, + { + "id": "minecraft:smooth_basalt", + "blockRuntimeId": 3492, + "groupId": 27 + }, + { + "id": "minecraft:gravel", + "blockRuntimeId": 15198, + "groupId": 28 + }, + { + "id": "minecraft:sand", + "blockRuntimeId": 5929, + "groupId": 28 + }, + { + "id": "minecraft:red_sand", + "blockRuntimeId": 2637, + "groupId": 28 + }, + { + "id": "minecraft:cactus", + "blockRuntimeId": 12375, + "groupId": 28 + }, + { + "id": "minecraft:oak_log", + "blockRuntimeId": 1288, + "groupId": 29 + }, + { + "id": "minecraft:stripped_oak_log", + "blockRuntimeId": 13802, + "groupId": 29 + }, + { + "id": "minecraft:spruce_log", + "blockRuntimeId": 6003, + "groupId": 29 + }, + { + "id": "minecraft:stripped_spruce_log", + "blockRuntimeId": 11616, + "groupId": 29 + }, + { + "id": "minecraft:birch_log", + "blockRuntimeId": 2440, + "groupId": 29 + }, + { + "id": "minecraft:stripped_birch_log", + "blockRuntimeId": 10666, + "groupId": 29 + }, + { + "id": "minecraft:jungle_log", + "blockRuntimeId": 1182, + "groupId": 29 + }, + { + "id": "minecraft:stripped_jungle_log", + "blockRuntimeId": 2380, + "groupId": 29 + }, + { + "id": "minecraft:acacia_log", + "blockRuntimeId": 6116, + "groupId": 29 + }, + { + "id": "minecraft:stripped_acacia_log", + "blockRuntimeId": 10052, + "groupId": 29 + }, + { + "id": "minecraft:dark_oak_log", + "blockRuntimeId": 3871, + "groupId": 29 + }, + { + "id": "minecraft:stripped_dark_oak_log", + "blockRuntimeId": 1176, + "groupId": 29 + }, + { + "id": "minecraft:mangrove_log", + "blockRuntimeId": 1674, + "groupId": 29 + }, + { + "id": "minecraft:stripped_mangrove_log", + "blockRuntimeId": 15195, + "groupId": 29 + }, + { + "id": "minecraft:cherry_log", + "blockRuntimeId": 13303, + "groupId": 29 + }, + { + "id": "minecraft:stripped_cherry_log", + "blockRuntimeId": 6231, + "groupId": 29 + }, + { + "id": "minecraft:pale_oak_log", + "blockRuntimeId": 11130, + "groupId": 29 + }, + { + "id": "minecraft:stripped_pale_oak_log", + "blockRuntimeId": 6023, + "groupId": 29 + }, + { + "id": "minecraft:crimson_stem", + "blockRuntimeId": 10506, + "groupId": 29 + }, + { + "id": "minecraft:stripped_crimson_stem", + "blockRuntimeId": 12337, + "groupId": 29 + }, + { + "id": "minecraft:warped_stem", + "blockRuntimeId": 11841, + "groupId": 29 + }, + { + "id": "minecraft:stripped_warped_stem", + "blockRuntimeId": 13632, + "groupId": 29 + }, + { + "id": "minecraft:oak_wood", + "blockRuntimeId": 7564, + "groupId": 30 + }, + { + "id": "minecraft:stripped_oak_wood", + "blockRuntimeId": 7117, + "groupId": 30 + }, + { + "id": "minecraft:spruce_wood", + "blockRuntimeId": 13848, + "groupId": 30 + }, + { + "id": "minecraft:stripped_spruce_wood", + "blockRuntimeId": 2609, + "groupId": 30 + }, + { + "id": "minecraft:birch_wood", + "blockRuntimeId": 2634, + "groupId": 30 + }, + { + "id": "minecraft:stripped_birch_wood", + "blockRuntimeId": 6347, + "groupId": 30 + }, + { + "id": "minecraft:jungle_wood", + "blockRuntimeId": 2650, + "groupId": 30 + }, + { + "id": "minecraft:stripped_jungle_wood", + "blockRuntimeId": 1669, + "groupId": 30 + }, + { + "id": "minecraft:acacia_wood", + "blockRuntimeId": 12279, + "groupId": 30 + }, + { + "id": "minecraft:stripped_acacia_wood", + "blockRuntimeId": 1272, + "groupId": 30 + }, + { + "id": "minecraft:dark_oak_wood", + "blockRuntimeId": 10, + "groupId": 30 + }, + { + "id": "minecraft:stripped_dark_oak_wood", + "blockRuntimeId": 7555, + "groupId": 30 + }, + { + "id": "minecraft:mangrove_wood", + "blockRuntimeId": 5882, + "groupId": 30 + }, + { + "id": "minecraft:stripped_mangrove_wood", + "blockRuntimeId": 5962, + "groupId": 30 + }, + { + "id": "minecraft:cherry_wood", + "blockRuntimeId": 12734, + "groupId": 30 + }, + { + "id": "minecraft:stripped_cherry_wood", + "blockRuntimeId": 7591, + "groupId": 30 + }, + { + "id": "minecraft:pale_oak_wood", + "blockRuntimeId": 8136, + "groupId": 30 + }, + { + "id": "minecraft:stripped_pale_oak_wood", + "blockRuntimeId": 3494, + "groupId": 30 + }, + { + "id": "minecraft:crimson_hyphae", + "blockRuntimeId": 6075, + "groupId": 30 + }, + { + "id": "minecraft:stripped_crimson_hyphae", + "blockRuntimeId": 11849, + "groupId": 30 + }, + { + "id": "minecraft:warped_hyphae", + "blockRuntimeId": 10514, + "groupId": 30 + }, + { + "id": "minecraft:stripped_warped_hyphae", + "blockRuntimeId": 9217, + "groupId": 30 + }, + { + "id": "minecraft:bamboo_block", + "blockRuntimeId": 104, + "groupId": 30 + }, + { + "id": "minecraft:stripped_bamboo_block", + "blockRuntimeId": 4916, + "groupId": 30 + }, + { + "id": "minecraft:oak_leaves", + "blockRuntimeId": 2657, + "groupId": 31 + }, + { + "id": "minecraft:spruce_leaves", + "blockRuntimeId": 6191, + "groupId": 31 + }, + { + "id": "minecraft:birch_leaves", + "blockRuntimeId": 5867, + "groupId": 31 + }, + { + "id": "minecraft:jungle_leaves", + "blockRuntimeId": 8236, + "groupId": 31 + }, + { + "id": "minecraft:acacia_leaves", + "blockRuntimeId": 3692, + "groupId": 31 + }, + { + "id": "minecraft:dark_oak_leaves", + "blockRuntimeId": 11153, + "groupId": 31 + }, + { + "id": "minecraft:mangrove_leaves", + "blockRuntimeId": 12018, + "groupId": 31 + }, + { + "id": "minecraft:cherry_leaves", + "blockRuntimeId": 9988, + "groupId": 31 + }, + { + "id": "minecraft:pale_oak_leaves", + "blockRuntimeId": 1686, + "groupId": 31 + }, + { + "id": "minecraft:azalea_leaves", + "blockRuntimeId": 14008, + "groupId": 31 + }, + { + "id": "minecraft:azalea_leaves_flowered", + "blockRuntimeId": 11671, + "groupId": 31 + }, + { + "id": "minecraft:oak_sapling", + "blockRuntimeId": 2425, + "groupId": 32 + }, + { + "id": "minecraft:spruce_sapling", + "blockRuntimeId": 5925, + "groupId": 32 + }, + { + "id": "minecraft:birch_sapling", + "blockRuntimeId": 13778, + "groupId": 32 + }, + { + "id": "minecraft:jungle_sapling", + "blockRuntimeId": 11117, + "groupId": 32 + }, + { + "id": "minecraft:acacia_sapling", + "blockRuntimeId": 11684, + "groupId": 32 + }, + { + "id": "minecraft:dark_oak_sapling", + "blockRuntimeId": 1735, + "groupId": 32 + }, + { + "id": "minecraft:mangrove_propagule", + "blockRuntimeId": 12365, + "groupId": 32 + }, + { + "id": "minecraft:cherry_sapling", + "blockRuntimeId": 13301, + "groupId": 32 + }, + { + "id": "minecraft:pale_oak_sapling", + "blockRuntimeId": 1751, + "groupId": 32 + }, + { + "id": "minecraft:bee_nest", + "blockRuntimeId": 9400, + "groupId": 33 + }, + { + "id": "minecraft:wheat_seeds", + "blockRuntimeId": 0, + "groupId": 34 + }, + { + "id": "minecraft:pumpkin_seeds", + "blockRuntimeId": 0, + "groupId": 34 + }, + { + "id": "minecraft:melon_seeds", + "blockRuntimeId": 0, + "groupId": 34 + }, + { + "id": "minecraft:beetroot_seeds", + "blockRuntimeId": 0, + "groupId": 34 + }, + { + "id": "minecraft:torchflower_seeds", + "blockRuntimeId": 0, + "groupId": 34 + }, + { + "id": "minecraft:pitcher_pod", + "blockRuntimeId": 0, + "groupId": 34 + }, + { + "id": "minecraft:wheat", + "blockRuntimeId": 0, + "groupId": 35 + }, + { + "id": "minecraft:beetroot", + "blockRuntimeId": 0, + "groupId": 35 + }, + { + "id": "minecraft:potato", + "blockRuntimeId": 0, + "groupId": 35 + }, + { + "id": "minecraft:poisonous_potato", + "blockRuntimeId": 0, + "groupId": 35 + }, + { + "id": "minecraft:carrot", + "blockRuntimeId": 0, + "groupId": 35 + }, + { + "id": "minecraft:golden_carrot", + "blockRuntimeId": 0, + "groupId": 35 + }, + { + "id": "minecraft:apple", + "blockRuntimeId": 0, + "groupId": 35 + }, + { + "id": "minecraft:golden_apple", + "blockRuntimeId": 0, + "groupId": 35 + }, + { + "id": "minecraft:enchanted_golden_apple", + "blockRuntimeId": 0, + "groupId": 35 + }, + { + "id": "minecraft:melon_block", + "blockRuntimeId": 1737, + "groupId": 35 + }, + { + "id": "minecraft:melon_slice", + "blockRuntimeId": 0, + "groupId": 35 + }, + { + "id": "minecraft:glistering_melon_slice", + "blockRuntimeId": 0, + "groupId": 35 + }, + { + "id": "minecraft:sweet_berries", + "blockRuntimeId": 0, + "groupId": 35 + }, + { + "id": "minecraft:glow_berries", + "blockRuntimeId": 0, + "groupId": 35 + }, + { + "id": "minecraft:pumpkin", + "blockRuntimeId": 6376, + "groupId": 35 + }, + { + "id": "minecraft:carved_pumpkin", + "blockRuntimeId": 13610, + "groupId": 36 + }, + { + "id": "minecraft:lit_pumpkin", + "blockRuntimeId": 12027, + "groupId": 36 + }, + { + "id": "minecraft:honeycomb", + "blockRuntimeId": 0, + "groupId": 36 + }, + { + "id": "minecraft:resin_clump", + "blockRuntimeId": 2661, + "groupId": 36 + }, + { + "id": "minecraft:fern", + "blockRuntimeId": 11175, + "groupId": 37 + }, + { + "id": "minecraft:large_fern", + "blockRuntimeId": 11847, + "groupId": 37 + }, + { + "id": "minecraft:short_grass", + "blockRuntimeId": 11923, + "groupId": 37 + }, + { + "id": "minecraft:tall_grass", + "blockRuntimeId": 11823, + "groupId": 37 + }, + { + "id": "minecraft:short_dry_grass", + "blockRuntimeId": 11179, + "groupId": 37 + }, + { + "id": "minecraft:tall_dry_grass", + "blockRuntimeId": 8180, + "groupId": 37 + }, + { + "id": "minecraft:bush", + "blockRuntimeId": 12336, + "groupId": 37 + }, + { + "id": "minecraft:nether_sprouts", + "blockRuntimeId": 0, + "groupId": 37 + }, + { + "id": "minecraft:fire_coral", + "blockRuntimeId": 2436, + "groupId": 38 + }, + { + "id": "minecraft:brain_coral", + "blockRuntimeId": 2608, + "groupId": 38 + }, + { + "id": "minecraft:bubble_coral", + "blockRuntimeId": 11546, + "groupId": 38 + }, + { + "id": "minecraft:tube_coral", + "blockRuntimeId": 14069, + "groupId": 38 + }, + { + "id": "minecraft:horn_coral", + "blockRuntimeId": 4939, + "groupId": 38 + }, + { + "id": "minecraft:dead_fire_coral", + "blockRuntimeId": 11605, + "groupId": 38 + }, + { + "id": "minecraft:dead_brain_coral", + "blockRuntimeId": 13204, + "groupId": 38 + }, + { + "id": "minecraft:dead_bubble_coral", + "blockRuntimeId": 13300, + "groupId": 38 + }, + { + "id": "minecraft:dead_tube_coral", + "blockRuntimeId": 6031, + "groupId": 38 + }, + { + "id": "minecraft:dead_horn_coral", + "blockRuntimeId": 10571, + "groupId": 38 + }, + { + "id": "minecraft:fire_coral_fan", + "blockRuntimeId": 11926, + "groupId": 38 + }, + { + "id": "minecraft:brain_coral_fan", + "blockRuntimeId": 2725, + "groupId": 38 + }, + { + "id": "minecraft:bubble_coral_fan", + "blockRuntimeId": 1185, + "groupId": 38 + }, + { + "id": "minecraft:tube_coral_fan", + "blockRuntimeId": 1226, + "groupId": 38 + }, + { + "id": "minecraft:horn_coral_fan", + "blockRuntimeId": 11844, + "groupId": 38 + }, + { + "id": "minecraft:dead_fire_coral_fan", + "blockRuntimeId": 12086, + "groupId": 38 + }, + { + "id": "minecraft:dead_brain_coral_fan", + "blockRuntimeId": 1220, + "groupId": 38 + }, + { + "id": "minecraft:dead_bubble_coral_fan", + "blockRuntimeId": 1180, + "groupId": 38 + }, + { + "id": "minecraft:dead_tube_coral_fan", + "blockRuntimeId": 12055, + "groupId": 38 + }, + { + "id": "minecraft:dead_horn_coral_fan", + "blockRuntimeId": 12647, + "groupId": 38 + }, + { + "id": "minecraft:crimson_roots", + "blockRuntimeId": 13827, + "groupId": 39 + }, + { + "id": "minecraft:warped_roots", + "blockRuntimeId": 6148, + "groupId": 39 + }, + { + "id": "minecraft:dandelion", + "blockRuntimeId": 15236, + "groupId": 39 + }, + { + "id": "minecraft:poppy", + "blockRuntimeId": 5060, + "groupId": 39 + }, + { + "id": "minecraft:blue_orchid", + "blockRuntimeId": 5857, + "groupId": 39 + }, + { + "id": "minecraft:allium", + "blockRuntimeId": 1697, + "groupId": 39 + }, + { + "id": "minecraft:azure_bluet", + "blockRuntimeId": 774, + "groupId": 39 + }, + { + "id": "minecraft:red_tulip", + "blockRuntimeId": 13707, + "groupId": 39 + }, + { + "id": "minecraft:orange_tulip", + "blockRuntimeId": 12263, + "groupId": 39 + }, + { + "id": "minecraft:white_tulip", + "blockRuntimeId": 6406, + "groupId": 39 + }, + { + "id": "minecraft:pink_tulip", + "blockRuntimeId": 6020, + "groupId": 39 + }, + { + "id": "minecraft:oxeye_daisy", + "blockRuntimeId": 13338, + "groupId": 39 + }, + { + "id": "minecraft:cornflower", + "blockRuntimeId": 7959, + "groupId": 39 + }, + { + "id": "minecraft:lily_of_the_valley", + "blockRuntimeId": 1196, + "groupId": 39 + }, + { + "id": "minecraft:sunflower", + "blockRuntimeId": 6476, + "groupId": 39 + }, + { + "id": "minecraft:lilac", + "blockRuntimeId": 13354, + "groupId": 39 + }, + { + "id": "minecraft:rose_bush", + "blockRuntimeId": 8404, + "groupId": 39 + }, + { + "id": "minecraft:peony", + "blockRuntimeId": 14117, + "groupId": 39 + }, + { + "id": "minecraft:pitcher_plant", + "blockRuntimeId": 5100, + "groupId": 39 + }, + { + "id": "minecraft:pink_petals", + "blockRuntimeId": 6478, + "groupId": 39 + }, + { + "id": "minecraft:wildflowers", + "blockRuntimeId": 13869, + "groupId": 39 + }, + { + "id": "minecraft:wither_rose", + "blockRuntimeId": 11505, + "groupId": 39 + }, + { + "id": "minecraft:torchflower", + "blockRuntimeId": 11178, + "groupId": 39 + }, + { + "id": "minecraft:cactus_flower", + "blockRuntimeId": 1219, + "groupId": 39 + }, + { + "id": "minecraft:closed_eyeblossom", + "blockRuntimeId": 12085, + "groupId": 39 + }, + { + "id": "minecraft:open_eyeblossom", + "blockRuntimeId": 1749, + "groupId": 39 + }, + { + "id": "minecraft:white_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:light_gray_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:gray_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:black_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:brown_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:red_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:orange_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:yellow_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:lime_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:green_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:cyan_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:light_blue_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:blue_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:purple_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:magenta_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:pink_dye", + "blockRuntimeId": 0, + "groupId": 40 + }, + { + "id": "minecraft:ink_sac", + "blockRuntimeId": 0, + "groupId": 41 + }, + { + "id": "minecraft:glow_ink_sac", + "blockRuntimeId": 0, + "groupId": 41 + }, + { + "id": "minecraft:cocoa_beans", + "blockRuntimeId": 0, + "groupId": 41 + }, + { + "id": "minecraft:lapis_lazuli", + "blockRuntimeId": 0, + "groupId": 41 + }, + { + "id": "minecraft:bone_meal", + "blockRuntimeId": 0, + "groupId": 41 + }, + { + "id": "minecraft:vine", + "blockRuntimeId": 3072, + "groupId": 41 + }, + { + "id": "minecraft:weeping_vines", + "blockRuntimeId": 8793, + "groupId": 41 + }, + { + "id": "minecraft:twisting_vines", + "blockRuntimeId": 9332, + "groupId": 41 + }, + { + "id": "minecraft:waterlily", + "blockRuntimeId": 3493, + "groupId": 41 + }, + { + "id": "minecraft:seagrass", + "blockRuntimeId": 1223, + "groupId": 41 + }, + { + "id": "minecraft:kelp", + "blockRuntimeId": 0, + "groupId": 41 + }, + { + "id": "minecraft:deadbush", + "blockRuntimeId": 6930, + "groupId": 41 + }, + { + "id": "minecraft:bamboo", + "blockRuntimeId": 5015, + "groupId": 41 + }, + { + "id": "minecraft:snow", + "blockRuntimeId": 5928, + "groupId": 41 + }, + { + "id": "minecraft:ice", + "blockRuntimeId": 12031, + "groupId": 41 + }, + { + "id": "minecraft:packed_ice", + "blockRuntimeId": 1294, + "groupId": 41 + }, + { + "id": "minecraft:blue_ice", + "blockRuntimeId": 12586, + "groupId": 41 + }, + { + "id": "minecraft:snow_layer", + "blockRuntimeId": 948, + "groupId": 41 + }, + { + "id": "minecraft:pointed_dripstone", + "blockRuntimeId": 13650, + "groupId": 41 + }, + { + "id": "minecraft:dripstone_block", + "blockRuntimeId": 3071, + "groupId": 41 + }, + { + "id": "minecraft:leaf_litter", + "blockRuntimeId": 39, + "groupId": 41 + }, + { + "id": "minecraft:moss_carpet", + "blockRuntimeId": 1298, + "groupId": 41 + }, + { + "id": "minecraft:moss_block", + "blockRuntimeId": 11915, + "groupId": 41 + }, + { + "id": "minecraft:pale_moss_carpet", + "blockRuntimeId": 11183, + "groupId": 41 + }, + { + "id": "minecraft:pale_moss_block", + "blockRuntimeId": 9394, + "groupId": 41 + }, + { + "id": "minecraft:pale_hanging_moss", + "blockRuntimeId": 11181, + "groupId": 41 + }, + { + "id": "minecraft:hanging_roots", + "blockRuntimeId": 1001, + "groupId": 41 + }, + { + "id": "minecraft:mangrove_roots", + "blockRuntimeId": 11517, + "groupId": 41 + }, + { + "id": "minecraft:muddy_mangrove_roots", + "blockRuntimeId": 1650, + "groupId": 41 + }, + { + "id": "minecraft:big_dripleaf", + "blockRuntimeId": 10674, + "groupId": 41 + }, + { + "id": "minecraft:small_dripleaf_block", + "blockRuntimeId": 6101, + "groupId": 41 + }, + { + "id": "minecraft:spore_blossom", + "blockRuntimeId": 13375, + "groupId": 41 + }, + { + "id": "minecraft:firefly_bush", + "blockRuntimeId": 1275, + "groupId": 41 + }, + { + "id": "minecraft:azalea", + "blockRuntimeId": 12265, + "groupId": 41 + }, + { + "id": "minecraft:flowering_azalea", + "blockRuntimeId": 8406, + "groupId": 41 + }, + { + "id": "minecraft:glow_lichen", + "blockRuntimeId": 9259, + "groupId": 41 + }, + { + "id": "minecraft:amethyst_block", + "blockRuntimeId": 1334, + "groupId": 41 + }, + { + "id": "minecraft:budding_amethyst", + "blockRuntimeId": 12391, + "groupId": 41 + }, + { + "id": "minecraft:amethyst_cluster", + "blockRuntimeId": 14200, + "groupId": 41 + }, + { + "id": "minecraft:large_amethyst_bud", + "blockRuntimeId": 6985, + "groupId": 41 + }, + { + "id": "minecraft:medium_amethyst_bud", + "blockRuntimeId": 6162, + "groupId": 41 + }, + { + "id": "minecraft:small_amethyst_bud", + "blockRuntimeId": 1609, + "groupId": 41 + }, + { + "id": "minecraft:calcite", + "blockRuntimeId": 1173, + "groupId": 41 + }, + { + "id": "minecraft:chicken", + "blockRuntimeId": 0, + "groupId": 42 + }, + { + "id": "minecraft:porkchop", + "blockRuntimeId": 0, + "groupId": 42 + }, + { + "id": "minecraft:beef", + "blockRuntimeId": 0, + "groupId": 42 + }, + { + "id": "minecraft:mutton", + "blockRuntimeId": 0, + "groupId": 42 + }, + { + "id": "minecraft:rabbit", + "blockRuntimeId": 0, + "groupId": 42 + }, + { + "id": "minecraft:cod", + "blockRuntimeId": 0, + "groupId": 42 + }, + { + "id": "minecraft:salmon", + "blockRuntimeId": 0, + "groupId": 42 + }, + { + "id": "minecraft:tropical_fish", + "blockRuntimeId": 0, + "groupId": 42 + }, + { + "id": "minecraft:pufferfish", + "blockRuntimeId": 0, + "groupId": 42 + }, + { + "id": "minecraft:brown_mushroom", + "blockRuntimeId": 4841, + "groupId": 43 + }, + { + "id": "minecraft:red_mushroom", + "blockRuntimeId": 6410, + "groupId": 43 + }, + { + "id": "minecraft:crimson_fungus", + "blockRuntimeId": 14055, + "groupId": 43 + }, + { + "id": "minecraft:warped_fungus", + "blockRuntimeId": 1299, + "groupId": 43 + }, + { + "id": "minecraft:brown_mushroom_block", + "blockRuntimeId": 13433, + "groupId": 43 + }, + { + "id": "minecraft:red_mushroom_block", + "blockRuntimeId": 4933, + "groupId": 43 + }, + { + "id": "minecraft:mushroom_stem", + "blockRuntimeId": 11403, + "groupId": 43 + }, + { + "id": "minecraft:egg", + "blockRuntimeId": 0, + "groupId": 44 + }, + { + "id": "minecraft:brown_egg", + "blockRuntimeId": 0, + "groupId": 44 + }, + { + "id": "minecraft:blue_egg", + "blockRuntimeId": 0, + "groupId": 44 + }, + { + "id": "minecraft:sugar_cane", + "blockRuntimeId": 0, + "groupId": 44 + }, + { + "id": "minecraft:sugar", + "blockRuntimeId": 0, + "groupId": 44 + }, + { + "id": "minecraft:rotten_flesh", + "blockRuntimeId": 0, + "groupId": 44 + }, + { + "id": "minecraft:bone", + "blockRuntimeId": 0, + "groupId": 44 + }, + { + "id": "minecraft:web", + "blockRuntimeId": 12054, + "groupId": 44 + }, + { + "id": "minecraft:spider_eye", + "blockRuntimeId": 0, + "groupId": 44 + }, + { + "id": "minecraft:mob_spawner", + "blockRuntimeId": 1750, + "groupId": 44 + }, + { + "id": "minecraft:trial_spawner", + "blockRuntimeId": 14625, + "groupId": 44 + }, + { + "id": "minecraft:vault", + "blockRuntimeId": 11415, + "groupId": 44 + }, + { + "id": "minecraft:creaking_heart", + "blockRuntimeId": 13675, + "groupId": 44 + }, + { + "id": "minecraft:end_portal_frame", + "blockRuntimeId": 11345, + "groupId": 44 + }, + { + "id": "minecraft:infested_stone", + "blockRuntimeId": 11180, + "groupId": 45 + }, + { + "id": "minecraft:infested_cobblestone", + "blockRuntimeId": 5874, + "groupId": 45 + }, + { + "id": "minecraft:infested_stone_bricks", + "blockRuntimeId": 8139, + "groupId": 45 + }, + { + "id": "minecraft:infested_mossy_stone_bricks", + "blockRuntimeId": 2899, + "groupId": 45 + }, + { + "id": "minecraft:infested_cracked_stone_bricks", + "blockRuntimeId": 2654, + "groupId": 45 + }, + { + "id": "minecraft:infested_chiseled_stone_bricks", + "blockRuntimeId": 6018, + "groupId": 45 + }, + { + "id": "minecraft:infested_deepslate", + "blockRuntimeId": 6894, + "groupId": 45 + }, + { + "id": "minecraft:dragon_egg", + "blockRuntimeId": 13324, + "groupId": 46 + }, + { + "id": "minecraft:turtle_egg", + "blockRuntimeId": 14377, + "groupId": 46 + }, + { + "id": "minecraft:sniffer_egg", + "blockRuntimeId": 12392, + "groupId": 46 + }, + { + "id": "minecraft:frog_spawn", + "blockRuntimeId": 6195, + "groupId": 46 + }, + { + "id": "minecraft:pearlescent_froglight", + "blockRuntimeId": 11808, + "groupId": 46 + }, + { + "id": "minecraft:verdant_froglight", + "blockRuntimeId": 11834, + "groupId": 46 + }, + { + "id": "minecraft:ochre_froglight", + "blockRuntimeId": 4258, + "groupId": 46 + }, + { + "id": "minecraft:chicken_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:bee_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:cow_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:pig_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:sheep_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:wolf_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:polar_bear_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:ocelot_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:cat_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:mooshroom_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:bat_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:parrot_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:rabbit_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:llama_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:horse_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:donkey_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:mule_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:skeleton_horse_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:zombie_horse_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:tropical_fish_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:cod_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:pufferfish_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:salmon_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:dolphin_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:turtle_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:panda_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:fox_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:creeper_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:enderman_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:silverfish_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:skeleton_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:wither_skeleton_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:stray_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:slime_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:spider_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:zombie_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:zombie_pigman_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:husk_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:drowned_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:squid_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:glow_squid_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:cave_spider_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:witch_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:guardian_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:elder_guardian_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:endermite_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:magma_cube_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:strider_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:hoglin_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:piglin_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:zoglin_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:piglin_brute_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:goat_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:axolotl_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:warden_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:allay_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:frog_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:tadpole_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:trader_llama_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:camel_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:ghast_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:blaze_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:shulker_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:vindicator_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:evoker_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:vex_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:villager_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:wandering_trader_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:zombie_villager_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:phantom_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:pillager_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:ravager_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:iron_golem_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:snow_golem_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:sniffer_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:breeze_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:armadillo_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:bogged_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:creaking_spawn_egg", + "blockRuntimeId": 0, + "groupId": 47 + }, + { + "id": "minecraft:obsidian", + "blockRuntimeId": 1789, + "groupId": 48 + }, + { + "id": "minecraft:crying_obsidian", + "blockRuntimeId": 12083, + "groupId": 48 + }, + { + "id": "minecraft:bedrock", + "blockRuntimeId": 12574, + "groupId": 48 + }, + { + "id": "minecraft:soul_sand", + "blockRuntimeId": 9438, + "groupId": 48 + }, + { + "id": "minecraft:magma", + "blockRuntimeId": 14389, + "groupId": 48 + }, + { + "id": "minecraft:nether_wart", + "blockRuntimeId": 0, + "groupId": 48 + }, + { + "id": "minecraft:end_stone", + "blockRuntimeId": 5568, + "groupId": 48 + }, + { + "id": "minecraft:chorus_flower", + "blockRuntimeId": 6339, + "groupId": 48 + }, + { + "id": "minecraft:chorus_plant", + "blockRuntimeId": 8819, + "groupId": 48 + }, + { + "id": "minecraft:chorus_fruit", + "blockRuntimeId": 0, + "groupId": 48 + }, + { + "id": "minecraft:popped_chorus_fruit", + "blockRuntimeId": 0, + "groupId": 48 + }, + { + "id": "minecraft:sponge", + "blockRuntimeId": 1979, + "groupId": 48 + }, + { + "id": "minecraft:wet_sponge", + "blockRuntimeId": 114, + "groupId": 48 + }, + { + "id": "minecraft:tube_coral_block", + "blockRuntimeId": 13772, + "groupId": 49 + }, + { + "id": "minecraft:brain_coral_block", + "blockRuntimeId": 9241, + "groupId": 49 + }, + { + "id": "minecraft:bubble_coral_block", + "blockRuntimeId": 6017, + "groupId": 49 + }, + { + "id": "minecraft:fire_coral_block", + "blockRuntimeId": 6247, + "groupId": 49 + }, + { + "id": "minecraft:horn_coral_block", + "blockRuntimeId": 8183, + "groupId": 49 + }, + { + "id": "minecraft:dead_tube_coral_block", + "blockRuntimeId": 5567, + "groupId": 49 + }, + { + "id": "minecraft:dead_brain_coral_block", + "blockRuntimeId": 11994, + "groupId": 49 + }, + { + "id": "minecraft:dead_bubble_coral_block", + "blockRuntimeId": 3132, + "groupId": 49 + }, + { + "id": "minecraft:dead_fire_coral_block", + "blockRuntimeId": 3307, + "groupId": 49 + }, + { + "id": "minecraft:dead_horn_coral_block", + "blockRuntimeId": 11833, + "groupId": 49 + }, + { + "id": "minecraft:sculk", + "blockRuntimeId": 12607, + "groupId": 50 + }, + { + "id": "minecraft:sculk_vein", + "blockRuntimeId": 13140, + "groupId": 50 + }, + { + "id": "minecraft:sculk_catalyst", + "blockRuntimeId": 4936, + "groupId": 50 + }, + { + "id": "minecraft:sculk_shrieker", + "blockRuntimeId": 1188, + "groupId": 50 + }, + { + "id": "minecraft:sculk_sensor", + "blockRuntimeId": 6176, + "groupId": 50 + }, + { + "id": "minecraft:calibrated_sculk_sensor", + "blockRuntimeId": 10022, + "groupId": 50 + }, + { + "id": "minecraft:reinforced_deepslate", + "blockRuntimeId": 9986, + "groupId": 51 + }, + { + "id": "minecraft:leather_helmet", + "blockRuntimeId": 0, + "groupId": 52 + }, + { + "id": "minecraft:chainmail_helmet", + "blockRuntimeId": 0, + "groupId": 52 + }, + { + "id": "minecraft:iron_helmet", + "blockRuntimeId": 0, + "groupId": 52 + }, + { + "id": "minecraft:golden_helmet", + "blockRuntimeId": 0, + "groupId": 52 + }, + { + "id": "minecraft:diamond_helmet", + "blockRuntimeId": 0, + "groupId": 52 + }, + { + "id": "minecraft:netherite_helmet", + "blockRuntimeId": 0, + "groupId": 52 + }, + { + "id": "minecraft:leather_chestplate", + "blockRuntimeId": 0, + "groupId": 53 + }, + { + "id": "minecraft:chainmail_chestplate", + "blockRuntimeId": 0, + "groupId": 53 + }, + { + "id": "minecraft:iron_chestplate", + "blockRuntimeId": 0, + "groupId": 53 + }, + { + "id": "minecraft:golden_chestplate", + "blockRuntimeId": 0, + "groupId": 53 + }, + { + "id": "minecraft:diamond_chestplate", + "blockRuntimeId": 0, + "groupId": 53 + }, + { + "id": "minecraft:netherite_chestplate", + "blockRuntimeId": 0, + "groupId": 53 + }, + { + "id": "minecraft:leather_leggings", + "blockRuntimeId": 0, + "groupId": 54 + }, + { + "id": "minecraft:chainmail_leggings", + "blockRuntimeId": 0, + "groupId": 54 + }, + { + "id": "minecraft:iron_leggings", + "blockRuntimeId": 0, + "groupId": 54 + }, + { + "id": "minecraft:golden_leggings", + "blockRuntimeId": 0, + "groupId": 54 + }, + { + "id": "minecraft:diamond_leggings", + "blockRuntimeId": 0, + "groupId": 54 + }, + { + "id": "minecraft:netherite_leggings", + "blockRuntimeId": 0, + "groupId": 54 + }, + { + "id": "minecraft:leather_boots", + "blockRuntimeId": 0, + "groupId": 55 + }, + { + "id": "minecraft:chainmail_boots", + "blockRuntimeId": 0, + "groupId": 55 + }, + { + "id": "minecraft:iron_boots", + "blockRuntimeId": 0, + "groupId": 55 + }, + { + "id": "minecraft:golden_boots", + "blockRuntimeId": 0, + "groupId": 55 + }, + { + "id": "minecraft:diamond_boots", + "blockRuntimeId": 0, + "groupId": 55 + }, + { + "id": "minecraft:netherite_boots", + "blockRuntimeId": 0, + "groupId": 55 + }, + { + "id": "minecraft:wooden_sword", + "blockRuntimeId": 0, + "groupId": 56 + }, + { + "id": "minecraft:stone_sword", + "blockRuntimeId": 0, + "groupId": 56 + }, + { + "id": "minecraft:iron_sword", + "blockRuntimeId": 0, + "groupId": 56 + }, + { + "id": "minecraft:golden_sword", + "blockRuntimeId": 0, + "groupId": 56 + }, + { + "id": "minecraft:diamond_sword", + "blockRuntimeId": 0, + "groupId": 56 + }, + { + "id": "minecraft:netherite_sword", + "blockRuntimeId": 0, + "groupId": 56 + }, + { + "id": "minecraft:wooden_axe", + "blockRuntimeId": 0, + "groupId": 57 + }, + { + "id": "minecraft:stone_axe", + "blockRuntimeId": 0, + "groupId": 57 + }, + { + "id": "minecraft:iron_axe", + "blockRuntimeId": 0, + "groupId": 57 + }, + { + "id": "minecraft:golden_axe", + "blockRuntimeId": 0, + "groupId": 57 + }, + { + "id": "minecraft:diamond_axe", + "blockRuntimeId": 0, + "groupId": 57 + }, + { + "id": "minecraft:netherite_axe", + "blockRuntimeId": 0, + "groupId": 57 + }, + { + "id": "minecraft:wooden_pickaxe", + "blockRuntimeId": 0, + "groupId": 58 + }, + { + "id": "minecraft:stone_pickaxe", + "blockRuntimeId": 0, + "groupId": 58 + }, + { + "id": "minecraft:iron_pickaxe", + "blockRuntimeId": 0, + "groupId": 58 + }, + { + "id": "minecraft:golden_pickaxe", + "blockRuntimeId": 0, + "groupId": 58 + }, + { + "id": "minecraft:diamond_pickaxe", + "blockRuntimeId": 0, + "groupId": 58 + }, + { + "id": "minecraft:netherite_pickaxe", + "blockRuntimeId": 0, + "groupId": 58 + }, + { + "id": "minecraft:wooden_shovel", + "blockRuntimeId": 0, + "groupId": 59 + }, + { + "id": "minecraft:stone_shovel", + "blockRuntimeId": 0, + "groupId": 59 + }, + { + "id": "minecraft:iron_shovel", + "blockRuntimeId": 0, + "groupId": 59 + }, + { + "id": "minecraft:golden_shovel", + "blockRuntimeId": 0, + "groupId": 59 + }, + { + "id": "minecraft:diamond_shovel", + "blockRuntimeId": 0, + "groupId": 59 + }, + { + "id": "minecraft:netherite_shovel", + "blockRuntimeId": 0, + "groupId": 59 + }, + { + "id": "minecraft:wooden_hoe", + "blockRuntimeId": 0, + "groupId": 60 + }, + { + "id": "minecraft:stone_hoe", + "blockRuntimeId": 0, + "groupId": 60 + }, + { + "id": "minecraft:iron_hoe", + "blockRuntimeId": 0, + "groupId": 60 + }, + { + "id": "minecraft:golden_hoe", + "blockRuntimeId": 0, + "groupId": 60 + }, + { + "id": "minecraft:diamond_hoe", + "blockRuntimeId": 0, + "groupId": 60 + }, + { + "id": "minecraft:netherite_hoe", + "blockRuntimeId": 0, + "groupId": 60 + }, + { + "id": "minecraft:bow", + "blockRuntimeId": 0, + "groupId": 61 + }, + { + "id": "minecraft:crossbow", + "blockRuntimeId": 0, + "groupId": 61 + }, + { + "id": "minecraft:mace", + "blockRuntimeId": 0, + "groupId": 61 + }, + { + "id": "minecraft:arrow", + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 6, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 7, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 8, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 9, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 10, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 11, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 12, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 13, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 14, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 15, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 16, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 17, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 18, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 19, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 20, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 21, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 22, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 23, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 24, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 25, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 26, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 27, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 28, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 29, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 30, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 31, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 32, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 33, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 34, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 35, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 36, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 37, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 38, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 39, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 40, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 41, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 42, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 43, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 44, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 45, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 46, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:arrow", + "damage": 47, + "blockRuntimeId": 0, + "groupId": 62 + }, + { + "id": "minecraft:shield", + "blockRuntimeId": 0, + "groupId": 63 + }, + { + "id": "minecraft:cooked_chicken", + "blockRuntimeId": 0, + "groupId": 64 + }, + { + "id": "minecraft:cooked_porkchop", + "blockRuntimeId": 0, + "groupId": 64 + }, + { + "id": "minecraft:cooked_beef", + "blockRuntimeId": 0, + "groupId": 64 + }, + { + "id": "minecraft:cooked_mutton", + "blockRuntimeId": 0, + "groupId": 64 + }, + { + "id": "minecraft:cooked_rabbit", + "blockRuntimeId": 0, + "groupId": 64 + }, + { + "id": "minecraft:cooked_cod", + "blockRuntimeId": 0, + "groupId": 64 + }, + { + "id": "minecraft:cooked_salmon", + "blockRuntimeId": 0, + "groupId": 64 + }, + { + "id": "minecraft:bread", + "blockRuntimeId": 0, + "groupId": 65 + }, + { + "id": "minecraft:mushroom_stew", + "blockRuntimeId": 0, + "groupId": 65 + }, + { + "id": "minecraft:beetroot_soup", + "blockRuntimeId": 0, + "groupId": 65 + }, + { + "id": "minecraft:rabbit_stew", + "blockRuntimeId": 0, + "groupId": 65 + }, + { + "id": "minecraft:baked_potato", + "blockRuntimeId": 0, + "groupId": 65 + }, + { + "id": "minecraft:cookie", + "blockRuntimeId": 0, + "groupId": 65 + }, + { + "id": "minecraft:pumpkin_pie", + "blockRuntimeId": 0, + "groupId": 65 + }, + { + "id": "minecraft:cake", + "blockRuntimeId": 0, + "groupId": 65 + }, + { + "id": "minecraft:dried_kelp", + "blockRuntimeId": 0, + "groupId": 65 + }, + { + "id": "minecraft:fishing_rod", + "blockRuntimeId": 0, + "groupId": 66 + }, + { + "id": "minecraft:carrot_on_a_stick", + "blockRuntimeId": 0, + "groupId": 66 + }, + { + "id": "minecraft:warped_fungus_on_a_stick", + "blockRuntimeId": 0, + "groupId": 66 + }, + { + "id": "minecraft:snowball", + "blockRuntimeId": 0, + "groupId": 66 + }, + { + "id": "minecraft:wind_charge", + "blockRuntimeId": 0, + "groupId": 66 + }, + { + "id": "minecraft:shears", + "blockRuntimeId": 0, + "groupId": 66 + }, + { + "id": "minecraft:flint_and_steel", + "blockRuntimeId": 0, + "groupId": 66 + }, + { + "id": "minecraft:lead", + "blockRuntimeId": 0, + "groupId": 66 + }, + { + "id": "minecraft:clock", + "blockRuntimeId": 0, + "groupId": 66 + }, + { + "id": "minecraft:compass", + "blockRuntimeId": 0, + "groupId": 66 + }, + { + "id": "minecraft:recovery_compass", + "blockRuntimeId": 0, + "groupId": 66 + }, + { + "id": "minecraft:goat_horn", + "blockRuntimeId": 0, + "groupId": 67 + }, + { + "id": "minecraft:goat_horn", + "damage": 1, + "blockRuntimeId": 0, + "groupId": 67 + }, + { + "id": "minecraft:goat_horn", + "damage": 2, + "blockRuntimeId": 0, + "groupId": 67 + }, + { + "id": "minecraft:goat_horn", + "damage": 3, + "blockRuntimeId": 0, + "groupId": 67 + }, + { + "id": "minecraft:goat_horn", + "damage": 4, + "blockRuntimeId": 0, + "groupId": 67 + }, + { + "id": "minecraft:goat_horn", + "damage": 5, + "blockRuntimeId": 0, + "groupId": 67 + }, + { + "id": "minecraft:goat_horn", + "damage": 6, + "blockRuntimeId": 0, + "groupId": 67 + }, + { + "id": "minecraft:goat_horn", + "damage": 7, + "blockRuntimeId": 0, + "groupId": 67 + }, + { + "id": "minecraft:empty_map", + "blockRuntimeId": 0, + "groupId": 68 + }, + { + "id": "minecraft:empty_map", + "damage": 2, + "blockRuntimeId": 0, + "groupId": 68 + }, + { + "id": "minecraft:saddle", + "blockRuntimeId": 0, + "groupId": 68 + }, + { + "id": "minecraft:bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:white_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:light_gray_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:gray_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:black_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:brown_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:red_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:orange_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:yellow_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:lime_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:green_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:cyan_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:light_blue_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:blue_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:purple_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:magenta_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:pink_bundle", + "blockRuntimeId": 0, + "groupId": 69 + }, + { + "id": "minecraft:leather_horse_armor", + "blockRuntimeId": 0, + "groupId": 70 + }, + { + "id": "minecraft:iron_horse_armor", + "blockRuntimeId": 0, + "groupId": 70 + }, + { + "id": "minecraft:golden_horse_armor", + "blockRuntimeId": 0, + "groupId": 70 + }, + { + "id": "minecraft:diamond_horse_armor", + "blockRuntimeId": 0, + "groupId": 70 + }, + { + "id": "minecraft:wolf_armor", + "blockRuntimeId": 0, + "groupId": 71 + }, + { + "id": "minecraft:trident", + "blockRuntimeId": 0, + "groupId": 71 + }, + { + "id": "minecraft:turtle_helmet", + "blockRuntimeId": 0, + "groupId": 71 + }, + { + "id": "minecraft:elytra", + "blockRuntimeId": 0, + "groupId": 71 + }, + { + "id": "minecraft:totem_of_undying", + "blockRuntimeId": 0, + "groupId": 71 + }, + { + "id": "minecraft:glass_bottle", + "blockRuntimeId": 0, + "groupId": 71 + }, + { + "id": "minecraft:experience_bottle", + "blockRuntimeId": 0, + "groupId": 71 + }, + { + "id": "minecraft:potion", + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 1, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 2, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 3, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 4, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 5, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 6, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 7, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 8, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 9, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 10, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 11, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 12, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 13, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 14, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 15, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 16, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 17, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 18, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 19, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 20, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 21, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 22, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 23, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 24, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 25, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 26, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 27, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 28, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 29, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 30, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 31, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 32, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 33, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 34, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 35, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 36, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 37, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 38, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 39, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 40, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 41, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 42, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 43, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 44, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 45, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:potion", + "damage": 46, + "blockRuntimeId": 0, + "groupId": 72 + }, + { + "id": "minecraft:splash_potion", + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 1, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 2, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 3, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 4, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 5, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 6, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 7, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 8, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 9, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 10, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 11, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 12, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 13, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 14, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 15, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 16, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 17, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 18, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 19, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 20, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 21, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 22, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 23, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 24, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 25, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 26, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 27, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 28, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 29, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 30, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 31, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 32, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 33, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 34, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 35, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 36, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 37, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 38, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 39, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 40, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 41, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 42, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 43, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 44, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 45, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:splash_potion", + "damage": 46, + "blockRuntimeId": 0, + "groupId": 73 + }, + { + "id": "minecraft:lingering_potion", + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 1, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 2, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 3, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 4, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 5, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 6, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 7, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 8, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 9, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 10, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 11, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 12, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 13, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 14, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 15, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 16, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 17, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 18, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 19, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 20, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 21, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 22, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 23, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 24, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 25, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 26, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 27, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 28, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 29, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 30, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 31, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 32, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 33, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 34, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 35, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 36, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 37, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 38, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 39, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 40, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 41, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 42, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 43, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 44, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 45, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:lingering_potion", + "damage": 46, + "blockRuntimeId": 0, + "groupId": 74 + }, + { + "id": "minecraft:ominous_bottle", + "blockRuntimeId": 0, + "groupId": 75 + }, + { + "id": "minecraft:ominous_bottle", + "damage": 1, + "blockRuntimeId": 0, + "groupId": 75 + }, + { + "id": "minecraft:ominous_bottle", + "damage": 2, + "blockRuntimeId": 0, + "groupId": 75 + }, + { + "id": "minecraft:ominous_bottle", + "damage": 3, + "blockRuntimeId": 0, + "groupId": 75 + }, + { + "id": "minecraft:ominous_bottle", + "damage": 4, + "blockRuntimeId": 0, + "groupId": 75 + }, + { + "id": "minecraft:spyglass", + "blockRuntimeId": 0, + "groupId": 76 + }, + { + "id": "minecraft:brush", + "blockRuntimeId": 0, + "groupId": 76 + }, + { + "id": "minecraft:stick", + "blockRuntimeId": 0, + "groupId": 77 + }, + { + "id": "minecraft:bed", + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 8, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 7, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 15, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 12, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 14, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 1, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 4, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 5, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 13, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 9, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 3, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 11, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 10, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 2, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:bed", + "damage": 6, + "blockRuntimeId": 0, + "groupId": 78 + }, + { + "id": "minecraft:torch", + "blockRuntimeId": 2900, + "groupId": 79 + }, + { + "id": "minecraft:soul_torch", + "blockRuntimeId": 6897, + "groupId": 79 + }, + { + "id": "minecraft:sea_pickle", + "blockRuntimeId": 10059, + "groupId": 79 + }, + { + "id": "minecraft:lantern", + "blockRuntimeId": 12649, + "groupId": 79 + }, + { + "id": "minecraft:soul_lantern", + "blockRuntimeId": 9395, + "groupId": 79 + }, + { + "id": "minecraft:candle", + "blockRuntimeId": 13635, + "groupId": 80 + }, + { + "id": "minecraft:white_candle", + "blockRuntimeId": 8194, + "groupId": 80 + }, + { + "id": "minecraft:orange_candle", + "blockRuntimeId": 1701, + "groupId": 80 + }, + { + "id": "minecraft:magenta_candle", + "blockRuntimeId": 1776, + "groupId": 80 + }, + { + "id": "minecraft:light_blue_candle", + "blockRuntimeId": 6367, + "groupId": 80 + }, + { + "id": "minecraft:yellow_candle", + "blockRuntimeId": 11518, + "groupId": 80 + }, + { + "id": "minecraft:lime_candle", + "blockRuntimeId": 11705, + "groupId": 80 + }, + { + "id": "minecraft:pink_candle", + "blockRuntimeId": 13439, + "groupId": 80 + }, + { + "id": "minecraft:gray_candle", + "blockRuntimeId": 3133, + "groupId": 80 + }, + { + "id": "minecraft:light_gray_candle", + "blockRuntimeId": 11548, + "groupId": 80 + }, + { + "id": "minecraft:cyan_candle", + "blockRuntimeId": 14021, + "groupId": 80 + }, + { + "id": "minecraft:purple_candle", + "blockRuntimeId": 12610, + "groupId": 80 + }, + { + "id": "minecraft:blue_candle", + "blockRuntimeId": 2, + "groupId": 80 + }, + { + "id": "minecraft:brown_candle", + "blockRuntimeId": 10484, + "groupId": 80 + }, + { + "id": "minecraft:green_candle", + "blockRuntimeId": 2623, + "groupId": 80 + }, + { + "id": "minecraft:red_candle", + "blockRuntimeId": 6934, + "groupId": 80 + }, + { + "id": "minecraft:black_candle", + "blockRuntimeId": 966, + "groupId": 80 + }, + { + "id": "minecraft:crafting_table", + "blockRuntimeId": 10058, + "groupId": 81 + }, + { + "id": "minecraft:cartography_table", + "blockRuntimeId": 15199, + "groupId": 81 + }, + { + "id": "minecraft:fletching_table", + "blockRuntimeId": 9987, + "groupId": 81 + }, + { + "id": "minecraft:smithing_table", + "blockRuntimeId": 5052, + "groupId": 81 + }, + { + "id": "minecraft:beehive", + "blockRuntimeId": 11447, + "groupId": 81 + }, + { + "id": "minecraft:suspicious_sand", + "blockRuntimeId": 3500, + "groupId": 81 + }, + { + "id": "minecraft:suspicious_gravel", + "blockRuntimeId": 7023, + "groupId": 81 + }, + { + "id": "minecraft:campfire", + "blockRuntimeId": 0, + "groupId": 81 + }, + { + "id": "minecraft:soul_campfire", + "blockRuntimeId": 0, + "groupId": 81 + }, + { + "id": "minecraft:furnace", + "blockRuntimeId": 14196, + "groupId": 81 + }, + { + "id": "minecraft:blast_furnace", + "blockRuntimeId": 13825, + "groupId": 81 + }, + { + "id": "minecraft:smoker", + "blockRuntimeId": 2432, + "groupId": 81 + }, + { + "id": "minecraft:respawn_anchor", + "blockRuntimeId": 2617, + "groupId": 81 + }, + { + "id": "minecraft:brewing_stand", + "blockRuntimeId": 0, + "groupId": 81 + }, + { + "id": "minecraft:anvil", + "blockRuntimeId": 11997, + "groupId": 82 + }, + { + "id": "minecraft:chipped_anvil", + "blockRuntimeId": 6980, + "groupId": 82 + }, + { + "id": "minecraft:damaged_anvil", + "blockRuntimeId": 14614, + "groupId": 82 + }, + { + "id": "minecraft:grindstone", + "blockRuntimeId": 14406, + "groupId": 83 + }, + { + "id": "minecraft:enchanting_table", + "blockRuntimeId": 12094, + "groupId": 83 + }, + { + "id": "minecraft:bookshelf", + "blockRuntimeId": 12025, + "groupId": 83 + }, + { + "id": "minecraft:chiseled_bookshelf", + "blockRuntimeId": 1342, + "groupId": 83 + }, + { + "id": "minecraft:lectern", + "blockRuntimeId": 12328, + "groupId": 83 + }, + { + "id": "minecraft:cauldron", + "blockRuntimeId": 0, + "groupId": 83 + }, + { + "id": "minecraft:composter", + "blockRuntimeId": 8322, + "groupId": 83 + }, + { + "id": "minecraft:chest", + "blockRuntimeId": 12732, + "groupId": 84 + }, + { + "id": "minecraft:trapped_chest", + "blockRuntimeId": 9223, + "groupId": 84 + }, + { + "id": "minecraft:ender_chest", + "blockRuntimeId": 6159, + "groupId": 84 + }, + { + "id": "minecraft:barrel", + "blockRuntimeId": 6323, + "groupId": 85 + }, + { + "id": "minecraft:undyed_shulker_box", + "blockRuntimeId": 5012, + "groupId": 86 + }, + { + "id": "minecraft:white_shulker_box", + "blockRuntimeId": 1698, + "groupId": 86 + }, + { + "id": "minecraft:light_gray_shulker_box", + "blockRuntimeId": 10518, + "groupId": 86 + }, + { + "id": "minecraft:gray_shulker_box", + "blockRuntimeId": 8240, + "groupId": 86 + }, + { + "id": "minecraft:black_shulker_box", + "blockRuntimeId": 11116, + "groupId": 86 + }, + { + "id": "minecraft:brown_shulker_box", + "blockRuntimeId": 12264, + "groupId": 86 + }, + { + "id": "minecraft:red_shulker_box", + "blockRuntimeId": 6230, + "groupId": 86 + }, + { + "id": "minecraft:orange_shulker_box", + "blockRuntimeId": 11547, + "groupId": 86 + }, + { + "id": "minecraft:yellow_shulker_box", + "blockRuntimeId": 318, + "groupId": 86 + }, + { + "id": "minecraft:lime_shulker_box", + "blockRuntimeId": 1606, + "groupId": 86 + }, + { + "id": "minecraft:green_shulker_box", + "blockRuntimeId": 11846, + "groupId": 86 + }, + { + "id": "minecraft:cyan_shulker_box", + "blockRuntimeId": 12587, + "groupId": 86 + }, + { + "id": "minecraft:light_blue_shulker_box", + "blockRuntimeId": 12356, + "groupId": 86 + }, + { + "id": "minecraft:blue_shulker_box", + "blockRuntimeId": 11600, + "groupId": 86 + }, + { + "id": "minecraft:purple_shulker_box", + "blockRuntimeId": 13609, + "groupId": 86 + }, + { + "id": "minecraft:magenta_shulker_box", + "blockRuntimeId": 1293, + "groupId": 86 + }, + { + "id": "minecraft:pink_shulker_box", + "blockRuntimeId": 6167, + "groupId": 86 + }, + { + "id": "minecraft:armor_stand", + "blockRuntimeId": 0, + "groupId": 87 + }, + { + "id": "minecraft:noteblock", + "blockRuntimeId": 1672, + "groupId": 87 + }, + { + "id": "minecraft:jukebox", + "blockRuntimeId": 7590, + "groupId": 87 + }, + { + "id": "minecraft:music_disc_13", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_cat", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_blocks", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_chirp", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_far", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_mall", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_mellohi", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_stal", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_strad", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_ward", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_11", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_wait", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_otherside", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_5", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_pigstep", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_relic", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_creator", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_creator_music_box", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:music_disc_precipice", + "blockRuntimeId": 0, + "groupId": 88 + }, + { + "id": "minecraft:disc_fragment_5", + "blockRuntimeId": 0, + "groupId": 89 + }, + { + "id": "minecraft:glowstone_dust", + "blockRuntimeId": 0, + "groupId": 89 + }, + { + "id": "minecraft:glowstone", + "blockRuntimeId": 5622, + "groupId": 89 + }, + { + "id": "minecraft:redstone_lamp", + "blockRuntimeId": 1230, + "groupId": 89 + }, + { + "id": "minecraft:sea_lantern", + "blockRuntimeId": 13808, + "groupId": 89 + }, + { + "id": "minecraft:oak_sign", + "blockRuntimeId": 0, + "groupId": 90 + }, + { + "id": "minecraft:spruce_sign", + "blockRuntimeId": 0, + "groupId": 90 + }, + { + "id": "minecraft:birch_sign", + "blockRuntimeId": 0, + "groupId": 90 + }, + { + "id": "minecraft:jungle_sign", + "blockRuntimeId": 0, + "groupId": 90 + }, + { + "id": "minecraft:acacia_sign", + "blockRuntimeId": 0, + "groupId": 90 + }, + { + "id": "minecraft:dark_oak_sign", + "blockRuntimeId": 0, + "groupId": 90 + }, + { + "id": "minecraft:mangrove_sign", + "blockRuntimeId": 0, + "groupId": 90 + }, + { + "id": "minecraft:cherry_sign", + "blockRuntimeId": 0, + "groupId": 90 + }, + { + "id": "minecraft:pale_oak_sign", + "blockRuntimeId": 0, + "groupId": 90 + }, + { + "id": "minecraft:bamboo_sign", + "blockRuntimeId": 0, + "groupId": 90 + }, + { + "id": "minecraft:crimson_sign", + "blockRuntimeId": 0, + "groupId": 90 + }, + { + "id": "minecraft:warped_sign", + "blockRuntimeId": 0, + "groupId": 90 + }, + { + "id": "minecraft:oak_hanging_sign", + "blockRuntimeId": 0, + "groupId": 91 + }, + { + "id": "minecraft:spruce_hanging_sign", + "blockRuntimeId": 0, + "groupId": 91 + }, + { + "id": "minecraft:birch_hanging_sign", + "blockRuntimeId": 0, + "groupId": 91 + }, + { + "id": "minecraft:jungle_hanging_sign", + "blockRuntimeId": 0, + "groupId": 91 + }, + { + "id": "minecraft:acacia_hanging_sign", + "blockRuntimeId": 0, + "groupId": 91 + }, + { + "id": "minecraft:dark_oak_hanging_sign", + "blockRuntimeId": 0, + "groupId": 91 + }, + { + "id": "minecraft:mangrove_hanging_sign", + "blockRuntimeId": 0, + "groupId": 91 + }, + { + "id": "minecraft:cherry_hanging_sign", + "blockRuntimeId": 0, + "groupId": 91 + }, + { + "id": "minecraft:pale_oak_hanging_sign", + "blockRuntimeId": 0, + "groupId": 91 + }, + { + "id": "minecraft:bamboo_hanging_sign", + "blockRuntimeId": 0, + "groupId": 91 + }, + { + "id": "minecraft:crimson_hanging_sign", + "blockRuntimeId": 0, + "groupId": 91 + }, + { + "id": "minecraft:warped_hanging_sign", + "blockRuntimeId": 0, + "groupId": 91 + }, + { + "id": "minecraft:painting", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:frame", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:glow_frame", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:honey_bottle", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:flower_pot", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:bowl", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:bucket", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:milk_bucket", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:water_bucket", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:lava_bucket", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:cod_bucket", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:salmon_bucket", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:tropical_fish_bucket", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:pufferfish_bucket", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:powder_snow_bucket", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:axolotl_bucket", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:tadpole_bucket", + "blockRuntimeId": 0, + "groupId": 92 + }, + { + "id": "minecraft:player_head", + "blockRuntimeId": 5053, + "groupId": 93 + }, + { + "id": "minecraft:zombie_head", + "blockRuntimeId": 33, + "groupId": 93 + }, + { + "id": "minecraft:creeper_head", + "blockRuntimeId": 9992, + "groupId": 93 + }, + { + "id": "minecraft:dragon_head", + "blockRuntimeId": 10016, + "groupId": 93 + }, + { + "id": "minecraft:skeleton_skull", + "blockRuntimeId": 8316, + "groupId": 93 + }, + { + "id": "minecraft:wither_skeleton_skull", + "blockRuntimeId": 13258, + "groupId": 93 + }, + { + "id": "minecraft:piglin_head", + "blockRuntimeId": 12601, + "groupId": 93 + }, + { + "id": "minecraft:beacon", + "blockRuntimeId": 775, + "groupId": 94 + }, + { + "id": "minecraft:bell", + "blockRuntimeId": 12296, + "groupId": 94 + }, + { + "id": "minecraft:conduit", + "blockRuntimeId": 5965, + "groupId": 94 + }, + { + "id": "minecraft:stonecutter_block", + "blockRuntimeId": 13832, + "groupId": 94 + }, + { + "id": "minecraft:coal", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:charcoal", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:diamond", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:iron_nugget", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:raw_iron", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:raw_gold", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:raw_copper", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:copper_ingot", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:iron_ingot", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:netherite_scrap", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:netherite_ingot", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:gold_nugget", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:gold_ingot", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:emerald", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:quartz", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:clay_ball", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:brick", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:netherbrick", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:resin_brick", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:prismarine_shard", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:amethyst_shard", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:prismarine_crystals", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:nautilus_shell", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:heart_of_the_sea", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:turtle_scute", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:armadillo_scute", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:phantom_membrane", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:string", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:feather", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:flint", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:gunpowder", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:leather", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:rabbit_hide", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:rabbit_foot", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:fire_charge", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:blaze_rod", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:breeze_rod", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:heavy_core", + "blockRuntimeId": 13351, + "groupId": 94 + }, + { + "id": "minecraft:blaze_powder", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:magma_cream", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:fermented_spider_eye", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:echo_shard", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:dragon_breath", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:shulker_shell", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:ghast_tear", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:slime_ball", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:ender_pearl", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:ender_eye", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:nether_star", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:end_rod", + "blockRuntimeId": 10500, + "groupId": 94 + }, + { + "id": "minecraft:lightning_rod", + "blockRuntimeId": 3686, + "groupId": 94 + }, + { + "id": "minecraft:end_crystal", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:paper", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:book", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:writable_book", + "blockRuntimeId": 0, + "groupId": 94 + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQmAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQmAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQmAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQoAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQoAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQoAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "blockRuntimeId": 0, + "groupId": 95, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQoAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:oak_boat", + "blockRuntimeId": 0, + "groupId": 96 + }, + { + "id": "minecraft:spruce_boat", + "blockRuntimeId": 0, + "groupId": 96 + }, + { + "id": "minecraft:birch_boat", + "blockRuntimeId": 0, + "groupId": 96 + }, + { + "id": "minecraft:jungle_boat", + "blockRuntimeId": 0, + "groupId": 96 + }, + { + "id": "minecraft:acacia_boat", + "blockRuntimeId": 0, + "groupId": 96 + }, + { + "id": "minecraft:dark_oak_boat", + "blockRuntimeId": 0, + "groupId": 96 + }, + { + "id": "minecraft:mangrove_boat", + "blockRuntimeId": 0, + "groupId": 96 + }, + { + "id": "minecraft:cherry_boat", + "blockRuntimeId": 0, + "groupId": 96 + }, + { + "id": "minecraft:pale_oak_boat", + "blockRuntimeId": 0, + "groupId": 96 + }, + { + "id": "minecraft:bamboo_raft", + "blockRuntimeId": 0, + "groupId": 96 + }, + { + "id": "minecraft:oak_chest_boat", + "blockRuntimeId": 0, + "groupId": 97 + }, + { + "id": "minecraft:spruce_chest_boat", + "blockRuntimeId": 0, + "groupId": 97 + }, + { + "id": "minecraft:birch_chest_boat", + "blockRuntimeId": 0, + "groupId": 97 + }, + { + "id": "minecraft:jungle_chest_boat", + "blockRuntimeId": 0, + "groupId": 97 + }, + { + "id": "minecraft:acacia_chest_boat", + "blockRuntimeId": 0, + "groupId": 97 + }, + { + "id": "minecraft:dark_oak_chest_boat", + "blockRuntimeId": 0, + "groupId": 97 + }, + { + "id": "minecraft:mangrove_chest_boat", + "blockRuntimeId": 0, + "groupId": 97 + }, + { + "id": "minecraft:cherry_chest_boat", + "blockRuntimeId": 0, + "groupId": 97 + }, + { + "id": "minecraft:pale_oak_chest_boat", + "blockRuntimeId": 0, + "groupId": 97 + }, + { + "id": "minecraft:bamboo_chest_raft", + "blockRuntimeId": 0, + "groupId": 97 + }, + { + "id": "minecraft:rail", + "blockRuntimeId": 5663, + "groupId": 98 + }, + { + "id": "minecraft:golden_rail", + "blockRuntimeId": 8211, + "groupId": 98 + }, + { + "id": "minecraft:detector_rail", + "blockRuntimeId": 5845, + "groupId": 98 + }, + { + "id": "minecraft:activator_rail", + "blockRuntimeId": 1614, + "groupId": 98 + }, + { + "id": "minecraft:minecart", + "blockRuntimeId": 0, + "groupId": 99 + }, + { + "id": "minecraft:chest_minecart", + "blockRuntimeId": 0, + "groupId": 99 + }, + { + "id": "minecraft:hopper_minecart", + "blockRuntimeId": 0, + "groupId": 99 + }, + { + "id": "minecraft:tnt_minecart", + "blockRuntimeId": 0, + "groupId": 99 + }, + { + "id": "minecraft:redstone", + "blockRuntimeId": 0, + "groupId": 100 + }, + { + "id": "minecraft:redstone_block", + "blockRuntimeId": 5124, + "groupId": 100 + }, + { + "id": "minecraft:redstone_torch", + "blockRuntimeId": 4435, + "groupId": 100 + }, + { + "id": "minecraft:lever", + "blockRuntimeId": 11864, + "groupId": 100 + }, + { + "id": "minecraft:wooden_button", + "blockRuntimeId": 11729, + "groupId": 101 + }, + { + "id": "minecraft:spruce_button", + "blockRuntimeId": 6104, + "groupId": 101 + }, + { + "id": "minecraft:birch_button", + "blockRuntimeId": 14105, + "groupId": 101 + }, + { + "id": "minecraft:jungle_button", + "blockRuntimeId": 323, + "groupId": 101 + }, + { + "id": "minecraft:acacia_button", + "blockRuntimeId": 13267, + "groupId": 101 + }, + { + "id": "minecraft:dark_oak_button", + "blockRuntimeId": 296, + "groupId": 101 + }, + { + "id": "minecraft:mangrove_button", + "blockRuntimeId": 12634, + "groupId": 101 + }, + { + "id": "minecraft:cherry_button", + "blockRuntimeId": 6446, + "groupId": 101 + }, + { + "id": "minecraft:pale_oak_button", + "blockRuntimeId": 13693, + "groupId": 101 + }, + { + "id": "minecraft:bamboo_button", + "blockRuntimeId": 11811, + "groupId": 101 + }, + { + "id": "minecraft:stone_button", + "blockRuntimeId": 1961, + "groupId": 101 + }, + { + "id": "minecraft:crimson_button", + "blockRuntimeId": 6234, + "groupId": 101 + }, + { + "id": "minecraft:warped_button", + "blockRuntimeId": 13285, + "groupId": 101 + }, + { + "id": "minecraft:polished_blackstone_button", + "blockRuntimeId": 14131, + "groupId": 101 + }, + { + "id": "minecraft:tripwire_hook", + "blockRuntimeId": 10575, + "groupId": 102 + }, + { + "id": "minecraft:wooden_pressure_plate", + "blockRuntimeId": 14432, + "groupId": 103 + }, + { + "id": "minecraft:spruce_pressure_plate", + "blockRuntimeId": 5106, + "groupId": 103 + }, + { + "id": "minecraft:birch_pressure_plate", + "blockRuntimeId": 4874, + "groupId": 103 + }, + { + "id": "minecraft:jungle_pressure_plate", + "blockRuntimeId": 4952, + "groupId": 103 + }, + { + "id": "minecraft:acacia_pressure_plate", + "blockRuntimeId": 8140, + "groupId": 103 + }, + { + "id": "minecraft:dark_oak_pressure_plate", + "blockRuntimeId": 10617, + "groupId": 103 + }, + { + "id": "minecraft:mangrove_pressure_plate", + "blockRuntimeId": 5603, + "groupId": 103 + }, + { + "id": "minecraft:cherry_pressure_plate", + "blockRuntimeId": 365, + "groupId": 103 + }, + { + "id": "minecraft:pale_oak_pressure_plate", + "blockRuntimeId": 1653, + "groupId": 103 + }, + { + "id": "minecraft:bamboo_pressure_plate", + "blockRuntimeId": 11353, + "groupId": 103 + }, + { + "id": "minecraft:crimson_pressure_plate", + "blockRuntimeId": 15179, + "groupId": 103 + }, + { + "id": "minecraft:warped_pressure_plate", + "blockRuntimeId": 1256, + "groupId": 103 + }, + { + "id": "minecraft:stone_pressure_plate", + "blockRuntimeId": 5623, + "groupId": 103 + }, + { + "id": "minecraft:light_weighted_pressure_plate", + "blockRuntimeId": 4996, + "groupId": 103 + }, + { + "id": "minecraft:heavy_weighted_pressure_plate", + "blockRuntimeId": 3669, + "groupId": 103 + }, + { + "id": "minecraft:polished_blackstone_pressure_plate", + "blockRuntimeId": 11556, + "groupId": 103 + }, + { + "id": "minecraft:observer", + "blockRuntimeId": 4423, + "groupId": 104 + }, + { + "id": "minecraft:daylight_detector", + "blockRuntimeId": 5930, + "groupId": 104 + }, + { + "id": "minecraft:repeater", + "blockRuntimeId": 0, + "groupId": 104 + }, + { + "id": "minecraft:comparator", + "blockRuntimeId": 0, + "groupId": 104 + }, + { + "id": "minecraft:hopper", + "blockRuntimeId": 0, + "groupId": 104 + }, + { + "id": "minecraft:dropper", + "blockRuntimeId": 13617, + "groupId": 104 + }, + { + "id": "minecraft:dispenser", + "blockRuntimeId": 14393, + "groupId": 104 + }, + { + "id": "minecraft:crafter", + "blockRuntimeId": 14143, + "groupId": 104 + }, + { + "id": "minecraft:piston", + "blockRuntimeId": 3117, + "groupId": 104 + }, + { + "id": "minecraft:sticky_piston", + "blockRuntimeId": 6151, + "groupId": 104 + }, + { + "id": "minecraft:tnt", + "blockRuntimeId": 12050, + "groupId": 104 + }, + { + "id": "minecraft:name_tag", + "blockRuntimeId": 0, + "groupId": 104 + }, + { + "id": "minecraft:loom", + "blockRuntimeId": 5563, + "groupId": 104 + }, + { + "id": "minecraft:banner", + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 8, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 7, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 15, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 12, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 14, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 1, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 4, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 5, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 13, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 9, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 3, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 11, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 10, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 2, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 6, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 15, + "blockRuntimeId": 0, + "groupId": 105, + "nbt_b64": "CgAAAwQAVHlwZQEAAAAA" + }, + { + "id": "minecraft:creeper_banner_pattern", + "blockRuntimeId": 0, + "groupId": 106 + }, + { + "id": "minecraft:skull_banner_pattern", + "blockRuntimeId": 0, + "groupId": 106 + }, + { + "id": "minecraft:flower_banner_pattern", + "blockRuntimeId": 0, + "groupId": 106 + }, + { + "id": "minecraft:mojang_banner_pattern", + "blockRuntimeId": 0, + "groupId": 106 + }, + { + "id": "minecraft:field_masoned_banner_pattern", + "blockRuntimeId": 0, + "groupId": 106 + }, + { + "id": "minecraft:bordure_indented_banner_pattern", + "blockRuntimeId": 0, + "groupId": 106 + }, + { + "id": "minecraft:piglin_banner_pattern", + "blockRuntimeId": 0, + "groupId": 106 + }, + { + "id": "minecraft:globe_banner_pattern", + "blockRuntimeId": 0, + "groupId": 106 + }, + { + "id": "minecraft:flow_banner_pattern", + "blockRuntimeId": 0, + "groupId": 106 + }, + { + "id": "minecraft:guster_banner_pattern", + "blockRuntimeId": 0, + "groupId": 106 + }, + { + "id": "minecraft:angler_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:archer_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:arms_up_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:blade_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:brewer_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:burn_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:danger_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:explorer_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:flow_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:friend_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:guster_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:heart_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:heartbreak_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:howl_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:miner_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:mourner_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:plenty_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:prize_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:scrape_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:sheaf_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:shelter_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:skull_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:snort_pottery_sherd", + "blockRuntimeId": 0, + "groupId": 107 + }, + { + "id": "minecraft:netherite_upgrade_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:sentry_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:vex_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:wild_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:coast_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:dune_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:wayfinder_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:shaper_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:raiser_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:host_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:ward_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:silence_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:tide_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:snout_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:rib_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:eye_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:spire_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:flow_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:bolt_armor_trim_smithing_template", + "blockRuntimeId": 0, + "groupId": 108 + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "blockRuntimeId": 0, + "groupId": 109, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_star", + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 8, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 7, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 15, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 12, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 14, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 1, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 4, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 5, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 13, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 9, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 3, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 11, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 10, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 2, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 6, + "blockRuntimeId": 0, + "groupId": 110, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" + }, + { + "id": "minecraft:chain", + "blockRuntimeId": 0, + "groupId": 111 + }, + { + "id": "minecraft:target", + "blockRuntimeId": 11728, + "groupId": 111 + }, + { + "id": "minecraft:decorated_pot", + "blockRuntimeId": 12088, + "groupId": 111 + }, + { + "id": "minecraft:trial_key", + "blockRuntimeId": 0, + "groupId": 111 + }, + { + "id": "minecraft:ominous_trial_key", + "blockRuntimeId": 0, + "groupId": 111 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/item_components.nbt b/src/main/resources/item_components.nbt index b34ebf88146..f91cb005e8e 100644 Binary files a/src/main/resources/item_components.nbt and b/src/main/resources/item_components.nbt differ diff --git a/src/main/resources/runtime_block_states.dat b/src/main/resources/runtime_block_states.dat index 86ec3822395..e9fb5df56f3 100644 Binary files a/src/main/resources/runtime_block_states.dat and b/src/main/resources/runtime_block_states.dat differ diff --git a/src/main/resources/runtime_item_states.json b/src/main/resources/runtime_item_states.json index 762e6b02dc2..9a2a14b3dca 100644 --- a/src/main/resources/runtime_item_states.json +++ b/src/main/resources/runtime_item_states.json @@ -1 +1 @@ -[{"name":"minecraft:acacia_boat","id":405,"version":2,"componentBased":false},{"name":"minecraft:acacia_button","id":-140,"version":2,"componentBased":false},{"name":"minecraft:acacia_chest_boat","id":679,"version":2,"componentBased":false},{"name":"minecraft:acacia_door","id":589,"version":2,"componentBased":false},{"name":"minecraft:acacia_double_slab","id":-812,"version":2,"componentBased":false},{"name":"minecraft:acacia_fence","id":-575,"version":2,"componentBased":false},{"name":"minecraft:acacia_fence_gate","id":187,"version":2,"componentBased":false},{"name":"minecraft:acacia_hanging_sign","id":-504,"version":2,"componentBased":false},{"name":"minecraft:acacia_leaves","id":161,"version":2,"componentBased":false},{"name":"minecraft:acacia_log","id":162,"version":2,"componentBased":false},{"name":"minecraft:acacia_planks","id":-742,"version":2,"componentBased":false},{"name":"minecraft:acacia_pressure_plate","id":-150,"version":2,"componentBased":false},{"name":"minecraft:acacia_sapling","id":-828,"version":2,"componentBased":false},{"name":"minecraft:acacia_sign","id":612,"version":2,"componentBased":false},{"name":"minecraft:acacia_slab","id":-807,"version":2,"componentBased":false},{"name":"minecraft:acacia_stairs","id":163,"version":2,"componentBased":false},{"name":"minecraft:acacia_standing_sign","id":-190,"version":2,"componentBased":false},{"name":"minecraft:acacia_trapdoor","id":-145,"version":2,"componentBased":false},{"name":"minecraft:acacia_wall_sign","id":-191,"version":2,"componentBased":false},{"name":"minecraft:acacia_wood","id":-817,"version":2,"componentBased":false},{"name":"minecraft:activator_rail","id":126,"version":2,"componentBased":false},{"name":"minecraft:agent_spawn_egg","id":515,"version":2,"componentBased":false},{"name":"minecraft:air","id":-158,"version":2,"componentBased":false},{"name":"minecraft:allay_spawn_egg","id":668,"version":2,"componentBased":false},{"name":"minecraft:allium","id":-831,"version":2,"componentBased":false},{"name":"minecraft:allow","id":210,"version":2,"componentBased":false},{"name":"minecraft:amethyst_block","id":-327,"version":2,"componentBased":false},{"name":"minecraft:amethyst_cluster","id":-329,"version":2,"componentBased":false},{"name":"minecraft:amethyst_shard","id":661,"version":2,"componentBased":false},{"name":"minecraft:ancient_debris","id":-271,"version":2,"componentBased":false},{"name":"minecraft:andesite","id":-594,"version":2,"componentBased":false},{"name":"minecraft:andesite_double_slab","id":-920,"version":2,"componentBased":false},{"name":"minecraft:andesite_slab","id":-893,"version":2,"componentBased":false},{"name":"minecraft:andesite_stairs","id":-171,"version":2,"componentBased":false},{"name":"minecraft:andesite_wall","id":-974,"version":2,"componentBased":false},{"name":"minecraft:angler_pottery_sherd","id":693,"version":2,"componentBased":false},{"name":"minecraft:anvil","id":145,"version":2,"componentBased":false},{"name":"minecraft:apple","id":278,"version":1,"componentBased":true},{"name":"minecraft:archer_pottery_sherd","id":694,"version":2,"componentBased":false},{"name":"minecraft:armadillo_scute","id":740,"version":2,"componentBased":false},{"name":"minecraft:armadillo_spawn_egg","id":739,"version":2,"componentBased":false},{"name":"minecraft:armor_stand","id":585,"version":2,"componentBased":false},{"name":"minecraft:arms_up_pottery_sherd","id":695,"version":2,"componentBased":false},{"name":"minecraft:arrow","id":325,"version":2,"componentBased":true},{"name":"minecraft:axolotl_bucket","id":394,"version":2,"componentBased":false},{"name":"minecraft:axolotl_spawn_egg","id":530,"version":2,"componentBased":false},{"name":"minecraft:azalea","id":-337,"version":2,"componentBased":false},{"name":"minecraft:azalea_leaves","id":-324,"version":2,"componentBased":false},{"name":"minecraft:azalea_leaves_flowered","id":-325,"version":2,"componentBased":false},{"name":"minecraft:azure_bluet","id":-832,"version":2,"componentBased":false},{"name":"minecraft:baked_potato","id":303,"version":0,"componentBased":false},{"name":"minecraft:balloon","id":635,"version":2,"componentBased":false},{"name":"minecraft:bamboo","id":-163,"version":2,"componentBased":false},{"name":"minecraft:bamboo_block","id":-527,"version":2,"componentBased":false},{"name":"minecraft:bamboo_button","id":-511,"version":2,"componentBased":false},{"name":"minecraft:bamboo_chest_raft","id":691,"version":2,"componentBased":false},{"name":"minecraft:bamboo_door","id":-517,"version":2,"componentBased":false},{"name":"minecraft:bamboo_double_slab","id":-521,"version":2,"componentBased":false},{"name":"minecraft:bamboo_fence","id":-515,"version":2,"componentBased":false},{"name":"minecraft:bamboo_fence_gate","id":-516,"version":2,"componentBased":false},{"name":"minecraft:bamboo_hanging_sign","id":-522,"version":2,"componentBased":false},{"name":"minecraft:bamboo_mosaic","id":-509,"version":2,"componentBased":false},{"name":"minecraft:bamboo_mosaic_double_slab","id":-525,"version":2,"componentBased":false},{"name":"minecraft:bamboo_mosaic_slab","id":-524,"version":2,"componentBased":false},{"name":"minecraft:bamboo_mosaic_stairs","id":-523,"version":2,"componentBased":false},{"name":"minecraft:bamboo_planks","id":-510,"version":2,"componentBased":false},{"name":"minecraft:bamboo_pressure_plate","id":-514,"version":2,"componentBased":false},{"name":"minecraft:bamboo_raft","id":690,"version":2,"componentBased":false},{"name":"minecraft:bamboo_sapling","id":-164,"version":2,"componentBased":false},{"name":"minecraft:bamboo_sign","id":689,"version":2,"componentBased":false},{"name":"minecraft:bamboo_slab","id":-513,"version":2,"componentBased":false},{"name":"minecraft:bamboo_stairs","id":-512,"version":2,"componentBased":false},{"name":"minecraft:bamboo_standing_sign","id":-518,"version":2,"componentBased":false},{"name":"minecraft:bamboo_trapdoor","id":-520,"version":2,"componentBased":false},{"name":"minecraft:bamboo_wall_sign","id":-519,"version":2,"componentBased":false},{"name":"minecraft:banner","id":600,"version":2,"componentBased":false},{"name":"minecraft:banner_pattern","id":793,"version":2,"componentBased":false},{"name":"minecraft:barrel","id":-203,"version":2,"componentBased":false},{"name":"minecraft:barrier","id":-161,"version":2,"componentBased":false},{"name":"minecraft:basalt","id":-234,"version":2,"componentBased":false},{"name":"minecraft:bat_spawn_egg","id":480,"version":2,"componentBased":false},{"name":"minecraft:beacon","id":138,"version":2,"componentBased":false},{"name":"minecraft:bed","id":444,"version":2,"componentBased":false},{"name":"minecraft:bedrock","id":7,"version":2,"componentBased":false},{"name":"minecraft:bee_nest","id":-218,"version":2,"componentBased":false},{"name":"minecraft:bee_spawn_egg","id":522,"version":2,"componentBased":false},{"name":"minecraft:beef","id":295,"version":0,"componentBased":false},{"name":"minecraft:beehive","id":-219,"version":2,"componentBased":false},{"name":"minecraft:beetroot","id":307,"version":0,"componentBased":false},{"name":"minecraft:beetroot_seeds","id":317,"version":0,"componentBased":false},{"name":"minecraft:beetroot_soup","id":308,"version":0,"componentBased":false},{"name":"minecraft:bell","id":-206,"version":2,"componentBased":false},{"name":"minecraft:big_dripleaf","id":-323,"version":2,"componentBased":false},{"name":"minecraft:birch_boat","id":402,"version":2,"componentBased":false},{"name":"minecraft:birch_button","id":-141,"version":2,"componentBased":false},{"name":"minecraft:birch_chest_boat","id":676,"version":2,"componentBased":false},{"name":"minecraft:birch_door","id":587,"version":2,"componentBased":false},{"name":"minecraft:birch_double_slab","id":-810,"version":2,"componentBased":false},{"name":"minecraft:birch_fence","id":-576,"version":2,"componentBased":false},{"name":"minecraft:birch_fence_gate","id":184,"version":2,"componentBased":false},{"name":"minecraft:birch_hanging_sign","id":-502,"version":2,"componentBased":false},{"name":"minecraft:birch_leaves","id":-801,"version":2,"componentBased":false},{"name":"minecraft:birch_log","id":-570,"version":2,"componentBased":false},{"name":"minecraft:birch_planks","id":-740,"version":2,"componentBased":false},{"name":"minecraft:birch_pressure_plate","id":-151,"version":2,"componentBased":false},{"name":"minecraft:birch_sapling","id":-826,"version":2,"componentBased":false},{"name":"minecraft:birch_sign","id":610,"version":2,"componentBased":false},{"name":"minecraft:birch_slab","id":-805,"version":2,"componentBased":false},{"name":"minecraft:birch_stairs","id":135,"version":2,"componentBased":false},{"name":"minecraft:birch_standing_sign","id":-186,"version":2,"componentBased":false},{"name":"minecraft:birch_trapdoor","id":-146,"version":2,"componentBased":false},{"name":"minecraft:birch_wall_sign","id":-187,"version":2,"componentBased":false},{"name":"minecraft:birch_wood","id":-815,"version":2,"componentBased":false},{"name":"minecraft:black_bundle","id":257,"version":1,"componentBased":true},{"name":"minecraft:black_candle","id":-428,"version":2,"componentBased":false},{"name":"minecraft:black_candle_cake","id":-445,"version":2,"componentBased":false},{"name":"minecraft:black_carpet","id":-611,"version":2,"componentBased":false},{"name":"minecraft:black_concrete","id":-642,"version":2,"componentBased":false},{"name":"minecraft:black_concrete_powder","id":-723,"version":2,"componentBased":false},{"name":"minecraft:black_dye","id":421,"version":2,"componentBased":false},{"name":"minecraft:black_glazed_terracotta","id":235,"version":2,"componentBased":false},{"name":"minecraft:black_shulker_box","id":-627,"version":2,"componentBased":false},{"name":"minecraft:black_stained_glass","id":-687,"version":2,"componentBased":false},{"name":"minecraft:black_stained_glass_pane","id":-657,"version":2,"componentBased":false},{"name":"minecraft:black_terracotta","id":-738,"version":2,"componentBased":false},{"name":"minecraft:black_wool","id":-554,"version":2,"componentBased":false},{"name":"minecraft:blackstone","id":-273,"version":2,"componentBased":false},{"name":"minecraft:blackstone_double_slab","id":-283,"version":2,"componentBased":false},{"name":"minecraft:blackstone_slab","id":-282,"version":2,"componentBased":false},{"name":"minecraft:blackstone_stairs","id":-276,"version":2,"componentBased":false},{"name":"minecraft:blackstone_wall","id":-277,"version":2,"componentBased":false},{"name":"minecraft:blade_pottery_sherd","id":696,"version":2,"componentBased":false},{"name":"minecraft:blast_furnace","id":-196,"version":2,"componentBased":false},{"name":"minecraft:blaze_powder","id":456,"version":2,"componentBased":false},{"name":"minecraft:blaze_rod","id":449,"version":2,"componentBased":false},{"name":"minecraft:blaze_spawn_egg","id":483,"version":2,"componentBased":false},{"name":"minecraft:bleach","id":633,"version":2,"componentBased":false},{"name":"minecraft:blue_bundle","id":258,"version":1,"componentBased":true},{"name":"minecraft:blue_candle","id":-424,"version":2,"componentBased":false},{"name":"minecraft:blue_candle_cake","id":-441,"version":2,"componentBased":false},{"name":"minecraft:blue_carpet","id":-607,"version":2,"componentBased":false},{"name":"minecraft:blue_concrete","id":-638,"version":2,"componentBased":false},{"name":"minecraft:blue_concrete_powder","id":-719,"version":2,"componentBased":false},{"name":"minecraft:blue_dye","id":425,"version":2,"componentBased":false},{"name":"minecraft:blue_glazed_terracotta","id":231,"version":2,"componentBased":false},{"name":"minecraft:blue_ice","id":-11,"version":2,"componentBased":false},{"name":"minecraft:blue_orchid","id":-830,"version":2,"componentBased":false},{"name":"minecraft:blue_shulker_box","id":-623,"version":2,"componentBased":false},{"name":"minecraft:blue_stained_glass","id":-683,"version":2,"componentBased":false},{"name":"minecraft:blue_stained_glass_pane","id":-653,"version":2,"componentBased":false},{"name":"minecraft:blue_terracotta","id":-734,"version":2,"componentBased":false},{"name":"minecraft:blue_wool","id":-563,"version":2,"componentBased":false},{"name":"minecraft:board","id":629,"version":2,"componentBased":false},{"name":"minecraft:boat","id":791,"version":2,"componentBased":false},{"name":"minecraft:bogged_spawn_egg","id":490,"version":2,"componentBased":false},{"name":"minecraft:bolt_armor_trim_smithing_template","id":735,"version":2,"componentBased":false},{"name":"minecraft:bone","id":441,"version":2,"componentBased":false},{"name":"minecraft:bone_block","id":216,"version":2,"componentBased":false},{"name":"minecraft:bone_meal","id":437,"version":2,"componentBased":false},{"name":"minecraft:book","id":413,"version":2,"componentBased":false},{"name":"minecraft:bookshelf","id":47,"version":2,"componentBased":false},{"name":"minecraft:border_block","id":212,"version":2,"componentBased":false},{"name":"minecraft:bordure_indented_banner_pattern","id":619,"version":2,"componentBased":false},{"name":"minecraft:bow","id":324,"version":2,"componentBased":false},{"name":"minecraft:bowl","id":346,"version":2,"componentBased":false},{"name":"minecraft:brain_coral","id":-581,"version":2,"componentBased":false},{"name":"minecraft:brain_coral_block","id":-849,"version":2,"componentBased":false},{"name":"minecraft:brain_coral_fan","id":-840,"version":2,"componentBased":false},{"name":"minecraft:brain_coral_wall_fan","id":-904,"version":2,"componentBased":false},{"name":"minecraft:bread","id":283,"version":0,"componentBased":false},{"name":"minecraft:breeze_rod","id":274,"version":1,"componentBased":true},{"name":"minecraft:breeze_spawn_egg","id":529,"version":2,"componentBased":false},{"name":"minecraft:brewer_pottery_sherd","id":697,"version":2,"componentBased":false},{"name":"minecraft:brewing_stand","id":458,"version":2,"componentBased":true},{"name":"minecraft:brick","id":409,"version":2,"componentBased":false},{"name":"minecraft:brick_block","id":45,"version":2,"componentBased":false},{"name":"minecraft:brick_double_slab","id":-880,"version":2,"componentBased":false},{"name":"minecraft:brick_slab","id":-874,"version":2,"componentBased":false},{"name":"minecraft:brick_stairs","id":108,"version":2,"componentBased":false},{"name":"minecraft:brick_wall","id":-976,"version":2,"componentBased":false},{"name":"minecraft:brown_bundle","id":259,"version":1,"componentBased":true},{"name":"minecraft:brown_candle","id":-425,"version":2,"componentBased":false},{"name":"minecraft:brown_candle_cake","id":-442,"version":2,"componentBased":false},{"name":"minecraft:brown_carpet","id":-608,"version":2,"componentBased":false},{"name":"minecraft:brown_concrete","id":-639,"version":2,"componentBased":false},{"name":"minecraft:brown_concrete_powder","id":-720,"version":2,"componentBased":false},{"name":"minecraft:brown_dye","id":424,"version":2,"componentBased":false},{"name":"minecraft:brown_glazed_terracotta","id":232,"version":2,"componentBased":false},{"name":"minecraft:brown_mushroom","id":39,"version":2,"componentBased":false},{"name":"minecraft:brown_mushroom_block","id":99,"version":2,"componentBased":false},{"name":"minecraft:brown_shulker_box","id":-624,"version":2,"componentBased":false},{"name":"minecraft:brown_stained_glass","id":-684,"version":2,"componentBased":false},{"name":"minecraft:brown_stained_glass_pane","id":-654,"version":2,"componentBased":false},{"name":"minecraft:brown_terracotta","id":-735,"version":2,"componentBased":false},{"name":"minecraft:brown_wool","id":-555,"version":2,"componentBased":false},{"name":"minecraft:brush","id":716,"version":2,"componentBased":false},{"name":"minecraft:bubble_column","id":-160,"version":2,"componentBased":false},{"name":"minecraft:bubble_coral","id":-582,"version":2,"componentBased":false},{"name":"minecraft:bubble_coral_block","id":-850,"version":2,"componentBased":false},{"name":"minecraft:bubble_coral_fan","id":-841,"version":2,"componentBased":false},{"name":"minecraft:bubble_coral_wall_fan","id":-136,"version":2,"componentBased":false},{"name":"minecraft:bucket","id":385,"version":2,"componentBased":false},{"name":"minecraft:budding_amethyst","id":-328,"version":2,"componentBased":false},{"name":"minecraft:bundle","id":260,"version":1,"componentBased":true},{"name":"minecraft:burn_pottery_sherd","id":698,"version":2,"componentBased":false},{"name":"minecraft:cactus","id":81,"version":2,"componentBased":false},{"name":"minecraft:cake","id":443,"version":2,"componentBased":true},{"name":"minecraft:calcite","id":-326,"version":2,"componentBased":false},{"name":"minecraft:calibrated_sculk_sensor","id":-580,"version":2,"componentBased":false},{"name":"minecraft:camel_spawn_egg","id":692,"version":2,"componentBased":false},{"name":"minecraft:camera","id":630,"version":0,"componentBased":false},{"name":"minecraft:campfire","id":624,"version":2,"componentBased":true},{"name":"minecraft:candle","id":-412,"version":2,"componentBased":false},{"name":"minecraft:candle_cake","id":-429,"version":2,"componentBased":false},{"name":"minecraft:carpet","id":750,"version":2,"componentBased":false},{"name":"minecraft:carrot","id":301,"version":0,"componentBased":false},{"name":"minecraft:carrot_on_a_stick","id":550,"version":2,"componentBased":false},{"name":"minecraft:carrots","id":141,"version":2,"componentBased":false},{"name":"minecraft:cartography_table","id":-200,"version":2,"componentBased":false},{"name":"minecraft:carved_pumpkin","id":-155,"version":2,"componentBased":false},{"name":"minecraft:cat_spawn_egg","id":516,"version":2,"componentBased":false},{"name":"minecraft:cauldron","id":459,"version":2,"componentBased":true},{"name":"minecraft:cave_spider_spawn_egg","id":484,"version":2,"componentBased":false},{"name":"minecraft:cave_vines","id":-322,"version":2,"componentBased":false},{"name":"minecraft:cave_vines_body_with_berries","id":-375,"version":2,"componentBased":false},{"name":"minecraft:cave_vines_head_with_berries","id":-376,"version":2,"componentBased":false},{"name":"minecraft:chain","id":656,"version":2,"componentBased":true},{"name":"minecraft:chain_command_block","id":189,"version":2,"componentBased":false},{"name":"minecraft:chainmail_boots","id":367,"version":2,"componentBased":false},{"name":"minecraft:chainmail_chestplate","id":365,"version":2,"componentBased":false},{"name":"minecraft:chainmail_helmet","id":364,"version":2,"componentBased":false},{"name":"minecraft:chainmail_leggings","id":366,"version":2,"componentBased":false},{"name":"minecraft:chalkboard","id":230,"version":2,"componentBased":false},{"name":"minecraft:charcoal","id":327,"version":2,"componentBased":true},{"name":"minecraft:chemical_heat","id":192,"version":2,"componentBased":false},{"name":"minecraft:chemistry_table","id":785,"version":2,"componentBased":false},{"name":"minecraft:cherry_boat","id":686,"version":2,"componentBased":false},{"name":"minecraft:cherry_button","id":-530,"version":2,"componentBased":false},{"name":"minecraft:cherry_chest_boat","id":687,"version":2,"componentBased":false},{"name":"minecraft:cherry_door","id":-531,"version":2,"componentBased":false},{"name":"minecraft:cherry_double_slab","id":-540,"version":2,"componentBased":false},{"name":"minecraft:cherry_fence","id":-532,"version":2,"componentBased":false},{"name":"minecraft:cherry_fence_gate","id":-533,"version":2,"componentBased":false},{"name":"minecraft:cherry_hanging_sign","id":-534,"version":2,"componentBased":false},{"name":"minecraft:cherry_leaves","id":-548,"version":2,"componentBased":false},{"name":"minecraft:cherry_log","id":-536,"version":2,"componentBased":false},{"name":"minecraft:cherry_planks","id":-537,"version":2,"componentBased":false},{"name":"minecraft:cherry_pressure_plate","id":-538,"version":2,"componentBased":false},{"name":"minecraft:cherry_sapling","id":-547,"version":2,"componentBased":false},{"name":"minecraft:cherry_sign","id":688,"version":2,"componentBased":false},{"name":"minecraft:cherry_slab","id":-539,"version":2,"componentBased":false},{"name":"minecraft:cherry_stairs","id":-541,"version":2,"componentBased":false},{"name":"minecraft:cherry_standing_sign","id":-542,"version":2,"componentBased":false},{"name":"minecraft:cherry_trapdoor","id":-543,"version":2,"componentBased":false},{"name":"minecraft:cherry_wall_sign","id":-544,"version":2,"componentBased":false},{"name":"minecraft:cherry_wood","id":-546,"version":2,"componentBased":false},{"name":"minecraft:chest","id":54,"version":2,"componentBased":false},{"name":"minecraft:chest_boat","id":682,"version":2,"componentBased":false},{"name":"minecraft:chest_minecart","id":415,"version":2,"componentBased":false},{"name":"minecraft:chicken","id":297,"version":0,"componentBased":false},{"name":"minecraft:chicken_spawn_egg","id":462,"version":2,"componentBased":false},{"name":"minecraft:chipped_anvil","id":-959,"version":2,"componentBased":false},{"name":"minecraft:chiseled_bookshelf","id":-526,"version":2,"componentBased":false},{"name":"minecraft:chiseled_copper","id":-760,"version":2,"componentBased":false},{"name":"minecraft:chiseled_deepslate","id":-395,"version":2,"componentBased":false},{"name":"minecraft:chiseled_nether_bricks","id":-302,"version":2,"componentBased":false},{"name":"minecraft:chiseled_polished_blackstone","id":-279,"version":2,"componentBased":false},{"name":"minecraft:chiseled_quartz_block","id":-953,"version":2,"componentBased":false},{"name":"minecraft:chiseled_red_sandstone","id":-956,"version":2,"componentBased":false},{"name":"minecraft:chiseled_resin_bricks","id":-1020,"version":2,"componentBased":false},{"name":"minecraft:chiseled_sandstone","id":-944,"version":2,"componentBased":false},{"name":"minecraft:chiseled_stone_bricks","id":-870,"version":2,"componentBased":false},{"name":"minecraft:chiseled_tuff","id":-753,"version":2,"componentBased":false},{"name":"minecraft:chiseled_tuff_bricks","id":-759,"version":2,"componentBased":false},{"name":"minecraft:chorus_flower","id":200,"version":2,"componentBased":false},{"name":"minecraft:chorus_fruit","id":591,"version":0,"componentBased":false},{"name":"minecraft:chorus_plant","id":240,"version":2,"componentBased":false},{"name":"minecraft:clay","id":82,"version":2,"componentBased":false},{"name":"minecraft:clay_ball","id":410,"version":2,"componentBased":false},{"name":"minecraft:client_request_placeholder_block","id":-465,"version":2,"componentBased":false},{"name":"minecraft:clock","id":419,"version":2,"componentBased":false},{"name":"minecraft:closed_eyeblossom","id":-1019,"version":2,"componentBased":false},{"name":"minecraft:coal","id":326,"version":2,"componentBased":true},{"name":"minecraft:coal_block","id":173,"version":2,"componentBased":false},{"name":"minecraft:coal_ore","id":16,"version":2,"componentBased":false},{"name":"minecraft:coarse_dirt","id":-962,"version":2,"componentBased":false},{"name":"minecraft:coast_armor_trim_smithing_template","id":720,"version":2,"componentBased":false},{"name":"minecraft:cobbled_deepslate","id":-379,"version":2,"componentBased":false},{"name":"minecraft:cobbled_deepslate_double_slab","id":-396,"version":2,"componentBased":false},{"name":"minecraft:cobbled_deepslate_slab","id":-380,"version":2,"componentBased":false},{"name":"minecraft:cobbled_deepslate_stairs","id":-381,"version":2,"componentBased":false},{"name":"minecraft:cobbled_deepslate_wall","id":-382,"version":2,"componentBased":false},{"name":"minecraft:cobblestone","id":4,"version":2,"componentBased":false},{"name":"minecraft:cobblestone_double_slab","id":-879,"version":2,"componentBased":false},{"name":"minecraft:cobblestone_slab","id":-873,"version":2,"componentBased":false},{"name":"minecraft:cobblestone_wall","id":139,"version":2,"componentBased":false},{"name":"minecraft:cocoa","id":127,"version":2,"componentBased":false},{"name":"minecraft:cocoa_beans","id":438,"version":2,"componentBased":false},{"name":"minecraft:cod","id":286,"version":0,"componentBased":false},{"name":"minecraft:cod_bucket","id":389,"version":2,"componentBased":false},{"name":"minecraft:cod_spawn_egg","id":508,"version":2,"componentBased":false},{"name":"minecraft:colored_torch_blue","id":204,"version":2,"componentBased":false},{"name":"minecraft:colored_torch_bp","id":789,"version":2,"componentBased":false},{"name":"minecraft:colored_torch_green","id":-963,"version":2,"componentBased":false},{"name":"minecraft:colored_torch_purple","id":-964,"version":2,"componentBased":false},{"name":"minecraft:colored_torch_red","id":202,"version":2,"componentBased":false},{"name":"minecraft:colored_torch_rg","id":788,"version":2,"componentBased":false},{"name":"minecraft:command_block","id":137,"version":2,"componentBased":false},{"name":"minecraft:command_block_minecart","id":596,"version":2,"componentBased":false},{"name":"minecraft:comparator","id":555,"version":2,"componentBased":true},{"name":"minecraft:compass","id":417,"version":2,"componentBased":false},{"name":"minecraft:composter","id":-213,"version":2,"componentBased":false},{"name":"minecraft:compound","id":631,"version":2,"componentBased":false},{"name":"minecraft:compound_creator","id":238,"version":2,"componentBased":false},{"name":"minecraft:concrete","id":776,"version":2,"componentBased":false},{"name":"minecraft:concrete_powder","id":777,"version":2,"componentBased":false},{"name":"minecraft:conduit","id":-157,"version":2,"componentBased":false},{"name":"minecraft:cooked_beef","id":296,"version":0,"componentBased":false},{"name":"minecraft:cooked_chicken","id":298,"version":0,"componentBased":false},{"name":"minecraft:cooked_cod","id":290,"version":0,"componentBased":false},{"name":"minecraft:cooked_mutton","id":584,"version":0,"componentBased":false},{"name":"minecraft:cooked_porkchop","id":285,"version":0,"componentBased":false},{"name":"minecraft:cooked_rabbit","id":311,"version":0,"componentBased":false},{"name":"minecraft:cooked_salmon","id":291,"version":0,"componentBased":false},{"name":"minecraft:cookie","id":293,"version":0,"componentBased":false},{"name":"minecraft:copper_block","id":-340,"version":2,"componentBased":false},{"name":"minecraft:copper_bulb","id":-776,"version":2,"componentBased":false},{"name":"minecraft:copper_door","id":-784,"version":2,"componentBased":false},{"name":"minecraft:copper_grate","id":-768,"version":2,"componentBased":false},{"name":"minecraft:copper_ingot","id":538,"version":2,"componentBased":false},{"name":"minecraft:copper_ore","id":-311,"version":2,"componentBased":false},{"name":"minecraft:copper_trapdoor","id":-792,"version":2,"componentBased":false},{"name":"minecraft:coral","id":772,"version":2,"componentBased":false},{"name":"minecraft:coral_block","id":754,"version":2,"componentBased":false},{"name":"minecraft:coral_fan","id":763,"version":2,"componentBased":false},{"name":"minecraft:coral_fan_dead","id":764,"version":2,"componentBased":false},{"name":"minecraft:cornflower","id":-838,"version":2,"componentBased":false},{"name":"minecraft:cow_spawn_egg","id":463,"version":2,"componentBased":false},{"name":"minecraft:cracked_deepslate_bricks","id":-410,"version":2,"componentBased":false},{"name":"minecraft:cracked_deepslate_tiles","id":-409,"version":2,"componentBased":false},{"name":"minecraft:cracked_nether_bricks","id":-303,"version":2,"componentBased":false},{"name":"minecraft:cracked_polished_blackstone_bricks","id":-280,"version":2,"componentBased":false},{"name":"minecraft:cracked_stone_bricks","id":-869,"version":2,"componentBased":false},{"name":"minecraft:crafter","id":-313,"version":2,"componentBased":false},{"name":"minecraft:crafting_table","id":58,"version":2,"componentBased":false},{"name":"minecraft:creaking_heart","id":-1012,"version":2,"componentBased":false},{"name":"minecraft:creaking_spawn_egg","id":747,"version":2,"componentBased":false},{"name":"minecraft:creeper_banner_pattern","id":615,"version":2,"componentBased":false},{"name":"minecraft:creeper_head","id":-968,"version":2,"componentBased":false},{"name":"minecraft:creeper_spawn_egg","id":468,"version":2,"componentBased":false},{"name":"minecraft:crimson_button","id":-260,"version":2,"componentBased":false},{"name":"minecraft:crimson_door","id":653,"version":2,"componentBased":false},{"name":"minecraft:crimson_double_slab","id":-266,"version":2,"componentBased":false},{"name":"minecraft:crimson_fence","id":-256,"version":2,"componentBased":false},{"name":"minecraft:crimson_fence_gate","id":-258,"version":2,"componentBased":false},{"name":"minecraft:crimson_fungus","id":-228,"version":2,"componentBased":false},{"name":"minecraft:crimson_hanging_sign","id":-506,"version":2,"componentBased":false},{"name":"minecraft:crimson_hyphae","id":-299,"version":2,"componentBased":false},{"name":"minecraft:crimson_nylium","id":-232,"version":2,"componentBased":false},{"name":"minecraft:crimson_planks","id":-242,"version":2,"componentBased":false},{"name":"minecraft:crimson_pressure_plate","id":-262,"version":2,"componentBased":false},{"name":"minecraft:crimson_roots","id":-223,"version":2,"componentBased":false},{"name":"minecraft:crimson_sign","id":651,"version":2,"componentBased":false},{"name":"minecraft:crimson_slab","id":-264,"version":2,"componentBased":false},{"name":"minecraft:crimson_stairs","id":-254,"version":2,"componentBased":false},{"name":"minecraft:crimson_standing_sign","id":-250,"version":2,"componentBased":false},{"name":"minecraft:crimson_stem","id":-225,"version":2,"componentBased":false},{"name":"minecraft:crimson_trapdoor","id":-246,"version":2,"componentBased":false},{"name":"minecraft:crimson_wall_sign","id":-252,"version":2,"componentBased":false},{"name":"minecraft:crossbow","id":608,"version":2,"componentBased":false},{"name":"minecraft:crying_obsidian","id":-289,"version":2,"componentBased":false},{"name":"minecraft:cut_copper","id":-347,"version":2,"componentBased":false},{"name":"minecraft:cut_copper_slab","id":-361,"version":2,"componentBased":false},{"name":"minecraft:cut_copper_stairs","id":-354,"version":2,"componentBased":false},{"name":"minecraft:cut_red_sandstone","id":-957,"version":2,"componentBased":false},{"name":"minecraft:cut_red_sandstone_double_slab","id":-928,"version":2,"componentBased":false},{"name":"minecraft:cut_red_sandstone_slab","id":-901,"version":2,"componentBased":false},{"name":"minecraft:cut_sandstone","id":-945,"version":2,"componentBased":false},{"name":"minecraft:cut_sandstone_double_slab","id":-927,"version":2,"componentBased":false},{"name":"minecraft:cut_sandstone_slab","id":-900,"version":2,"componentBased":false},{"name":"minecraft:cyan_bundle","id":261,"version":1,"componentBased":true},{"name":"minecraft:cyan_candle","id":-422,"version":2,"componentBased":false},{"name":"minecraft:cyan_candle_cake","id":-439,"version":2,"componentBased":false},{"name":"minecraft:cyan_carpet","id":-605,"version":2,"componentBased":false},{"name":"minecraft:cyan_concrete","id":-636,"version":2,"componentBased":false},{"name":"minecraft:cyan_concrete_powder","id":-717,"version":2,"componentBased":false},{"name":"minecraft:cyan_dye","id":427,"version":2,"componentBased":false},{"name":"minecraft:cyan_glazed_terracotta","id":229,"version":2,"componentBased":false},{"name":"minecraft:cyan_shulker_box","id":-621,"version":2,"componentBased":false},{"name":"minecraft:cyan_stained_glass","id":-681,"version":2,"componentBased":false},{"name":"minecraft:cyan_stained_glass_pane","id":-651,"version":2,"componentBased":false},{"name":"minecraft:cyan_terracotta","id":-732,"version":2,"componentBased":false},{"name":"minecraft:cyan_wool","id":-561,"version":2,"componentBased":false},{"name":"minecraft:damaged_anvil","id":-960,"version":2,"componentBased":false},{"name":"minecraft:dandelion","id":37,"version":2,"componentBased":false},{"name":"minecraft:danger_pottery_sherd","id":699,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_boat","id":406,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_button","id":-142,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_chest_boat","id":680,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_door","id":590,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_double_slab","id":-813,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_fence","id":-577,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_fence_gate","id":186,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_hanging_sign","id":-505,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_leaves","id":-803,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_log","id":-572,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_planks","id":-743,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_pressure_plate","id":-152,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_sapling","id":-829,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_sign","id":613,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_slab","id":-808,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_stairs","id":164,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_trapdoor","id":-147,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_wood","id":-818,"version":2,"componentBased":false},{"name":"minecraft:dark_prismarine","id":-947,"version":2,"componentBased":false},{"name":"minecraft:dark_prismarine_double_slab","id":-913,"version":2,"componentBased":false},{"name":"minecraft:dark_prismarine_slab","id":-886,"version":2,"componentBased":false},{"name":"minecraft:dark_prismarine_stairs","id":-3,"version":2,"componentBased":false},{"name":"minecraft:darkoak_standing_sign","id":-192,"version":2,"componentBased":false},{"name":"minecraft:darkoak_wall_sign","id":-193,"version":2,"componentBased":false},{"name":"minecraft:daylight_detector","id":151,"version":2,"componentBased":false},{"name":"minecraft:daylight_detector_inverted","id":178,"version":2,"componentBased":false},{"name":"minecraft:dead_brain_coral","id":-586,"version":2,"componentBased":false},{"name":"minecraft:dead_brain_coral_block","id":-854,"version":2,"componentBased":false},{"name":"minecraft:dead_brain_coral_fan","id":-844,"version":2,"componentBased":false},{"name":"minecraft:dead_brain_coral_wall_fan","id":-906,"version":2,"componentBased":false},{"name":"minecraft:dead_bubble_coral","id":-587,"version":2,"componentBased":false},{"name":"minecraft:dead_bubble_coral_block","id":-855,"version":2,"componentBased":false},{"name":"minecraft:dead_bubble_coral_fan","id":-845,"version":2,"componentBased":false},{"name":"minecraft:dead_bubble_coral_wall_fan","id":-908,"version":2,"componentBased":false},{"name":"minecraft:dead_fire_coral","id":-588,"version":2,"componentBased":false},{"name":"minecraft:dead_fire_coral_block","id":-856,"version":2,"componentBased":false},{"name":"minecraft:dead_fire_coral_fan","id":-846,"version":2,"componentBased":false},{"name":"minecraft:dead_fire_coral_wall_fan","id":-909,"version":2,"componentBased":false},{"name":"minecraft:dead_horn_coral","id":-589,"version":2,"componentBased":false},{"name":"minecraft:dead_horn_coral_block","id":-857,"version":2,"componentBased":false},{"name":"minecraft:dead_horn_coral_fan","id":-847,"version":2,"componentBased":false},{"name":"minecraft:dead_horn_coral_wall_fan","id":-910,"version":2,"componentBased":false},{"name":"minecraft:dead_tube_coral","id":-585,"version":2,"componentBased":false},{"name":"minecraft:dead_tube_coral_block","id":-853,"version":2,"componentBased":false},{"name":"minecraft:dead_tube_coral_fan","id":-134,"version":2,"componentBased":false},{"name":"minecraft:dead_tube_coral_wall_fan","id":-905,"version":2,"componentBased":false},{"name":"minecraft:deadbush","id":32,"version":2,"componentBased":false},{"name":"minecraft:decorated_pot","id":-551,"version":2,"componentBased":false},{"name":"minecraft:deepslate","id":-378,"version":2,"componentBased":false},{"name":"minecraft:deepslate_brick_double_slab","id":-399,"version":2,"componentBased":false},{"name":"minecraft:deepslate_brick_slab","id":-392,"version":2,"componentBased":false},{"name":"minecraft:deepslate_brick_stairs","id":-393,"version":2,"componentBased":false},{"name":"minecraft:deepslate_brick_wall","id":-394,"version":2,"componentBased":false},{"name":"minecraft:deepslate_bricks","id":-391,"version":2,"componentBased":false},{"name":"minecraft:deepslate_coal_ore","id":-406,"version":2,"componentBased":false},{"name":"minecraft:deepslate_copper_ore","id":-408,"version":2,"componentBased":false},{"name":"minecraft:deepslate_diamond_ore","id":-405,"version":2,"componentBased":false},{"name":"minecraft:deepslate_emerald_ore","id":-407,"version":2,"componentBased":false},{"name":"minecraft:deepslate_gold_ore","id":-402,"version":2,"componentBased":false},{"name":"minecraft:deepslate_iron_ore","id":-401,"version":2,"componentBased":false},{"name":"minecraft:deepslate_lapis_ore","id":-400,"version":2,"componentBased":false},{"name":"minecraft:deepslate_redstone_ore","id":-403,"version":2,"componentBased":false},{"name":"minecraft:deepslate_tile_double_slab","id":-398,"version":2,"componentBased":false},{"name":"minecraft:deepslate_tile_slab","id":-388,"version":2,"componentBased":false},{"name":"minecraft:deepslate_tile_stairs","id":-389,"version":2,"componentBased":false},{"name":"minecraft:deepslate_tile_wall","id":-390,"version":2,"componentBased":false},{"name":"minecraft:deepslate_tiles","id":-387,"version":2,"componentBased":false},{"name":"minecraft:deny","id":211,"version":2,"componentBased":false},{"name":"minecraft:deprecated_anvil","id":-961,"version":2,"componentBased":false},{"name":"minecraft:deprecated_purpur_block_1","id":-950,"version":2,"componentBased":false},{"name":"minecraft:deprecated_purpur_block_2","id":-952,"version":2,"componentBased":false},{"name":"minecraft:detector_rail","id":28,"version":2,"componentBased":false},{"name":"minecraft:diamond","id":328,"version":2,"componentBased":false},{"name":"minecraft:diamond_axe","id":343,"version":2,"componentBased":false},{"name":"minecraft:diamond_block","id":57,"version":2,"componentBased":false},{"name":"minecraft:diamond_boots","id":375,"version":2,"componentBased":false},{"name":"minecraft:diamond_chestplate","id":373,"version":2,"componentBased":false},{"name":"minecraft:diamond_helmet","id":372,"version":2,"componentBased":false},{"name":"minecraft:diamond_hoe","id":357,"version":2,"componentBased":false},{"name":"minecraft:diamond_horse_armor","id":566,"version":2,"componentBased":false},{"name":"minecraft:diamond_leggings","id":374,"version":2,"componentBased":false},{"name":"minecraft:diamond_ore","id":56,"version":2,"componentBased":false},{"name":"minecraft:diamond_pickaxe","id":342,"version":2,"componentBased":false},{"name":"minecraft:diamond_shovel","id":341,"version":2,"componentBased":false},{"name":"minecraft:diamond_sword","id":340,"version":2,"componentBased":false},{"name":"minecraft:diorite","id":-592,"version":2,"componentBased":false},{"name":"minecraft:diorite_double_slab","id":-921,"version":2,"componentBased":false},{"name":"minecraft:diorite_slab","id":-894,"version":2,"componentBased":false},{"name":"minecraft:diorite_stairs","id":-170,"version":2,"componentBased":false},{"name":"minecraft:diorite_wall","id":-973,"version":2,"componentBased":false},{"name":"minecraft:dirt","id":3,"version":2,"componentBased":false},{"name":"minecraft:dirt_with_roots","id":-318,"version":2,"componentBased":false},{"name":"minecraft:disc_fragment_5","id":674,"version":2,"componentBased":false},{"name":"minecraft:dispenser","id":23,"version":2,"componentBased":false},{"name":"minecraft:dolphin_spawn_egg","id":512,"version":2,"componentBased":false},{"name":"minecraft:donkey_spawn_egg","id":493,"version":2,"componentBased":false},{"name":"minecraft:double_cut_copper_slab","id":-368,"version":2,"componentBased":false},{"name":"minecraft:double_plant","id":770,"version":2,"componentBased":false},{"name":"minecraft:double_stone_block_slab","id":759,"version":2,"componentBased":false},{"name":"minecraft:double_stone_block_slab2","id":760,"version":2,"componentBased":false},{"name":"minecraft:double_stone_block_slab3","id":761,"version":2,"componentBased":false},{"name":"minecraft:double_stone_block_slab4","id":762,"version":2,"componentBased":false},{"name":"minecraft:dragon_breath","id":593,"version":2,"componentBased":false},{"name":"minecraft:dragon_egg","id":122,"version":2,"componentBased":false},{"name":"minecraft:dragon_head","id":-969,"version":2,"componentBased":false},{"name":"minecraft:dried_kelp","id":292,"version":0,"componentBased":false},{"name":"minecraft:dried_kelp_block","id":-139,"version":2,"componentBased":false},{"name":"minecraft:dripstone_block","id":-317,"version":2,"componentBased":false},{"name":"minecraft:dropper","id":125,"version":2,"componentBased":false},{"name":"minecraft:drowned_spawn_egg","id":511,"version":2,"componentBased":false},{"name":"minecraft:dune_armor_trim_smithing_template","id":719,"version":2,"componentBased":false},{"name":"minecraft:dye","id":792,"version":2,"componentBased":false},{"name":"minecraft:echo_shard","id":684,"version":2,"componentBased":false},{"name":"minecraft:egg","id":416,"version":2,"componentBased":false},{"name":"minecraft:elder_guardian_spawn_egg","id":499,"version":2,"componentBased":false},{"name":"minecraft:element_0","id":36,"version":2,"componentBased":false},{"name":"minecraft:element_1","id":-12,"version":2,"componentBased":false},{"name":"minecraft:element_10","id":-21,"version":2,"componentBased":false},{"name":"minecraft:element_100","id":-111,"version":2,"componentBased":false},{"name":"minecraft:element_101","id":-112,"version":2,"componentBased":false},{"name":"minecraft:element_102","id":-113,"version":2,"componentBased":false},{"name":"minecraft:element_103","id":-114,"version":2,"componentBased":false},{"name":"minecraft:element_104","id":-115,"version":2,"componentBased":false},{"name":"minecraft:element_105","id":-116,"version":2,"componentBased":false},{"name":"minecraft:element_106","id":-117,"version":2,"componentBased":false},{"name":"minecraft:element_107","id":-118,"version":2,"componentBased":false},{"name":"minecraft:element_108","id":-119,"version":2,"componentBased":false},{"name":"minecraft:element_109","id":-120,"version":2,"componentBased":false},{"name":"minecraft:element_11","id":-22,"version":2,"componentBased":false},{"name":"minecraft:element_110","id":-121,"version":2,"componentBased":false},{"name":"minecraft:element_111","id":-122,"version":2,"componentBased":false},{"name":"minecraft:element_112","id":-123,"version":2,"componentBased":false},{"name":"minecraft:element_113","id":-124,"version":2,"componentBased":false},{"name":"minecraft:element_114","id":-125,"version":2,"componentBased":false},{"name":"minecraft:element_115","id":-126,"version":2,"componentBased":false},{"name":"minecraft:element_116","id":-127,"version":2,"componentBased":false},{"name":"minecraft:element_117","id":-128,"version":2,"componentBased":false},{"name":"minecraft:element_118","id":-129,"version":2,"componentBased":false},{"name":"minecraft:element_12","id":-23,"version":2,"componentBased":false},{"name":"minecraft:element_13","id":-24,"version":2,"componentBased":false},{"name":"minecraft:element_14","id":-25,"version":2,"componentBased":false},{"name":"minecraft:element_15","id":-26,"version":2,"componentBased":false},{"name":"minecraft:element_16","id":-27,"version":2,"componentBased":false},{"name":"minecraft:element_17","id":-28,"version":2,"componentBased":false},{"name":"minecraft:element_18","id":-29,"version":2,"componentBased":false},{"name":"minecraft:element_19","id":-30,"version":2,"componentBased":false},{"name":"minecraft:element_2","id":-13,"version":2,"componentBased":false},{"name":"minecraft:element_20","id":-31,"version":2,"componentBased":false},{"name":"minecraft:element_21","id":-32,"version":2,"componentBased":false},{"name":"minecraft:element_22","id":-33,"version":2,"componentBased":false},{"name":"minecraft:element_23","id":-34,"version":2,"componentBased":false},{"name":"minecraft:element_24","id":-35,"version":2,"componentBased":false},{"name":"minecraft:element_25","id":-36,"version":2,"componentBased":false},{"name":"minecraft:element_26","id":-37,"version":2,"componentBased":false},{"name":"minecraft:element_27","id":-38,"version":2,"componentBased":false},{"name":"minecraft:element_28","id":-39,"version":2,"componentBased":false},{"name":"minecraft:element_29","id":-40,"version":2,"componentBased":false},{"name":"minecraft:element_3","id":-14,"version":2,"componentBased":false},{"name":"minecraft:element_30","id":-41,"version":2,"componentBased":false},{"name":"minecraft:element_31","id":-42,"version":2,"componentBased":false},{"name":"minecraft:element_32","id":-43,"version":2,"componentBased":false},{"name":"minecraft:element_33","id":-44,"version":2,"componentBased":false},{"name":"minecraft:element_34","id":-45,"version":2,"componentBased":false},{"name":"minecraft:element_35","id":-46,"version":2,"componentBased":false},{"name":"minecraft:element_36","id":-47,"version":2,"componentBased":false},{"name":"minecraft:element_37","id":-48,"version":2,"componentBased":false},{"name":"minecraft:element_38","id":-49,"version":2,"componentBased":false},{"name":"minecraft:element_39","id":-50,"version":2,"componentBased":false},{"name":"minecraft:element_4","id":-15,"version":2,"componentBased":false},{"name":"minecraft:element_40","id":-51,"version":2,"componentBased":false},{"name":"minecraft:element_41","id":-52,"version":2,"componentBased":false},{"name":"minecraft:element_42","id":-53,"version":2,"componentBased":false},{"name":"minecraft:element_43","id":-54,"version":2,"componentBased":false},{"name":"minecraft:element_44","id":-55,"version":2,"componentBased":false},{"name":"minecraft:element_45","id":-56,"version":2,"componentBased":false},{"name":"minecraft:element_46","id":-57,"version":2,"componentBased":false},{"name":"minecraft:element_47","id":-58,"version":2,"componentBased":false},{"name":"minecraft:element_48","id":-59,"version":2,"componentBased":false},{"name":"minecraft:element_49","id":-60,"version":2,"componentBased":false},{"name":"minecraft:element_5","id":-16,"version":2,"componentBased":false},{"name":"minecraft:element_50","id":-61,"version":2,"componentBased":false},{"name":"minecraft:element_51","id":-62,"version":2,"componentBased":false},{"name":"minecraft:element_52","id":-63,"version":2,"componentBased":false},{"name":"minecraft:element_53","id":-64,"version":2,"componentBased":false},{"name":"minecraft:element_54","id":-65,"version":2,"componentBased":false},{"name":"minecraft:element_55","id":-66,"version":2,"componentBased":false},{"name":"minecraft:element_56","id":-67,"version":2,"componentBased":false},{"name":"minecraft:element_57","id":-68,"version":2,"componentBased":false},{"name":"minecraft:element_58","id":-69,"version":2,"componentBased":false},{"name":"minecraft:element_59","id":-70,"version":2,"componentBased":false},{"name":"minecraft:element_6","id":-17,"version":2,"componentBased":false},{"name":"minecraft:element_60","id":-71,"version":2,"componentBased":false},{"name":"minecraft:element_61","id":-72,"version":2,"componentBased":false},{"name":"minecraft:element_62","id":-73,"version":2,"componentBased":false},{"name":"minecraft:element_63","id":-74,"version":2,"componentBased":false},{"name":"minecraft:element_64","id":-75,"version":2,"componentBased":false},{"name":"minecraft:element_65","id":-76,"version":2,"componentBased":false},{"name":"minecraft:element_66","id":-77,"version":2,"componentBased":false},{"name":"minecraft:element_67","id":-78,"version":2,"componentBased":false},{"name":"minecraft:element_68","id":-79,"version":2,"componentBased":false},{"name":"minecraft:element_69","id":-80,"version":2,"componentBased":false},{"name":"minecraft:element_7","id":-18,"version":2,"componentBased":false},{"name":"minecraft:element_70","id":-81,"version":2,"componentBased":false},{"name":"minecraft:element_71","id":-82,"version":2,"componentBased":false},{"name":"minecraft:element_72","id":-83,"version":2,"componentBased":false},{"name":"minecraft:element_73","id":-84,"version":2,"componentBased":false},{"name":"minecraft:element_74","id":-85,"version":2,"componentBased":false},{"name":"minecraft:element_75","id":-86,"version":2,"componentBased":false},{"name":"minecraft:element_76","id":-87,"version":2,"componentBased":false},{"name":"minecraft:element_77","id":-88,"version":2,"componentBased":false},{"name":"minecraft:element_78","id":-89,"version":2,"componentBased":false},{"name":"minecraft:element_79","id":-90,"version":2,"componentBased":false},{"name":"minecraft:element_8","id":-19,"version":2,"componentBased":false},{"name":"minecraft:element_80","id":-91,"version":2,"componentBased":false},{"name":"minecraft:element_81","id":-92,"version":2,"componentBased":false},{"name":"minecraft:element_82","id":-93,"version":2,"componentBased":false},{"name":"minecraft:element_83","id":-94,"version":2,"componentBased":false},{"name":"minecraft:element_84","id":-95,"version":2,"componentBased":false},{"name":"minecraft:element_85","id":-96,"version":2,"componentBased":false},{"name":"minecraft:element_86","id":-97,"version":2,"componentBased":false},{"name":"minecraft:element_87","id":-98,"version":2,"componentBased":false},{"name":"minecraft:element_88","id":-99,"version":2,"componentBased":false},{"name":"minecraft:element_89","id":-100,"version":2,"componentBased":false},{"name":"minecraft:element_9","id":-20,"version":2,"componentBased":false},{"name":"minecraft:element_90","id":-101,"version":2,"componentBased":false},{"name":"minecraft:element_91","id":-102,"version":2,"componentBased":false},{"name":"minecraft:element_92","id":-103,"version":2,"componentBased":false},{"name":"minecraft:element_93","id":-104,"version":2,"componentBased":false},{"name":"minecraft:element_94","id":-105,"version":2,"componentBased":false},{"name":"minecraft:element_95","id":-106,"version":2,"componentBased":false},{"name":"minecraft:element_96","id":-107,"version":2,"componentBased":false},{"name":"minecraft:element_97","id":-108,"version":2,"componentBased":false},{"name":"minecraft:element_98","id":-109,"version":2,"componentBased":false},{"name":"minecraft:element_99","id":-110,"version":2,"componentBased":false},{"name":"minecraft:element_constructor","id":-987,"version":2,"componentBased":false},{"name":"minecraft:elytra","id":597,"version":2,"componentBased":false},{"name":"minecraft:emerald","id":546,"version":2,"componentBased":false},{"name":"minecraft:emerald_block","id":133,"version":2,"componentBased":false},{"name":"minecraft:emerald_ore","id":129,"version":2,"componentBased":false},{"name":"minecraft:empty_map","id":549,"version":2,"componentBased":false},{"name":"minecraft:enchanted_book","id":554,"version":2,"componentBased":false},{"name":"minecraft:enchanted_golden_apple","id":281,"version":0,"componentBased":false},{"name":"minecraft:enchanting_table","id":116,"version":2,"componentBased":false},{"name":"minecraft:end_brick_stairs","id":-178,"version":2,"componentBased":false},{"name":"minecraft:end_bricks","id":206,"version":2,"componentBased":false},{"name":"minecraft:end_crystal","id":795,"version":2,"componentBased":false},{"name":"minecraft:end_gateway","id":209,"version":2,"componentBased":false},{"name":"minecraft:end_portal","id":119,"version":2,"componentBased":false},{"name":"minecraft:end_portal_frame","id":120,"version":2,"componentBased":false},{"name":"minecraft:end_rod","id":208,"version":2,"componentBased":false},{"name":"minecraft:end_stone","id":121,"version":2,"componentBased":false},{"name":"minecraft:end_stone_brick_double_slab","id":-167,"version":2,"componentBased":false},{"name":"minecraft:end_stone_brick_slab","id":-162,"version":2,"componentBased":false},{"name":"minecraft:end_stone_brick_wall","id":-980,"version":2,"componentBased":false},{"name":"minecraft:ender_chest","id":130,"version":2,"componentBased":false},{"name":"minecraft:ender_dragon_spawn_egg","id":535,"version":2,"componentBased":false},{"name":"minecraft:ender_eye","id":460,"version":2,"componentBased":false},{"name":"minecraft:ender_pearl","id":448,"version":2,"componentBased":false},{"name":"minecraft:enderman_spawn_egg","id":469,"version":2,"componentBased":false},{"name":"minecraft:endermite_spawn_egg","id":487,"version":2,"componentBased":false},{"name":"minecraft:evoker_spawn_egg","id":503,"version":2,"componentBased":false},{"name":"minecraft:experience_bottle","id":542,"version":2,"componentBased":false},{"name":"minecraft:explorer_pottery_sherd","id":700,"version":2,"componentBased":false},{"name":"minecraft:exposed_chiseled_copper","id":-761,"version":2,"componentBased":false},{"name":"minecraft:exposed_copper","id":-341,"version":2,"componentBased":false},{"name":"minecraft:exposed_copper_bulb","id":-777,"version":2,"componentBased":false},{"name":"minecraft:exposed_copper_door","id":-785,"version":2,"componentBased":false},{"name":"minecraft:exposed_copper_grate","id":-769,"version":2,"componentBased":false},{"name":"minecraft:exposed_copper_trapdoor","id":-793,"version":2,"componentBased":false},{"name":"minecraft:exposed_cut_copper","id":-348,"version":2,"componentBased":false},{"name":"minecraft:exposed_cut_copper_slab","id":-362,"version":2,"componentBased":false},{"name":"minecraft:exposed_cut_copper_stairs","id":-355,"version":2,"componentBased":false},{"name":"minecraft:exposed_double_cut_copper_slab","id":-369,"version":2,"componentBased":false},{"name":"minecraft:eye_armor_trim_smithing_template","id":723,"version":2,"componentBased":false},{"name":"minecraft:farmland","id":60,"version":2,"componentBased":false},{"name":"minecraft:feather","id":352,"version":2,"componentBased":false},{"name":"minecraft:fence","id":752,"version":2,"componentBased":false},{"name":"minecraft:fence_gate","id":107,"version":2,"componentBased":false},{"name":"minecraft:fermented_spider_eye","id":455,"version":2,"componentBased":false},{"name":"minecraft:fern","id":-848,"version":2,"componentBased":false},{"name":"minecraft:field_masoned_banner_pattern","id":618,"version":2,"componentBased":false},{"name":"minecraft:filled_map","id":446,"version":2,"componentBased":false},{"name":"minecraft:fire","id":51,"version":2,"componentBased":false},{"name":"minecraft:fire_charge","id":543,"version":2,"componentBased":false},{"name":"minecraft:fire_coral","id":-583,"version":2,"componentBased":false},{"name":"minecraft:fire_coral_block","id":-851,"version":2,"componentBased":false},{"name":"minecraft:fire_coral_fan","id":-842,"version":2,"componentBased":false},{"name":"minecraft:fire_coral_wall_fan","id":-907,"version":2,"componentBased":false},{"name":"minecraft:firework_rocket","id":552,"version":2,"componentBased":false},{"name":"minecraft:firework_star","id":553,"version":2,"componentBased":false},{"name":"minecraft:fishing_rod","id":418,"version":2,"componentBased":true},{"name":"minecraft:fletching_table","id":-201,"version":2,"componentBased":false},{"name":"minecraft:flint","id":381,"version":2,"componentBased":false},{"name":"minecraft:flint_and_steel","id":323,"version":2,"componentBased":false},{"name":"minecraft:flow_armor_trim_smithing_template","id":734,"version":2,"componentBased":false},{"name":"minecraft:flow_banner_pattern","id":622,"version":2,"componentBased":false},{"name":"minecraft:flow_pottery_sherd","id":701,"version":2,"componentBased":false},{"name":"minecraft:flower_banner_pattern","id":614,"version":2,"componentBased":false},{"name":"minecraft:flower_pot","id":548,"version":2,"componentBased":true},{"name":"minecraft:flowering_azalea","id":-338,"version":2,"componentBased":false},{"name":"minecraft:flowing_lava","id":10,"version":2,"componentBased":false},{"name":"minecraft:flowing_water","id":8,"version":2,"componentBased":false},{"name":"minecraft:fox_spawn_egg","id":518,"version":2,"componentBased":false},{"name":"minecraft:frame","id":547,"version":2,"componentBased":true},{"name":"minecraft:friend_pottery_sherd","id":702,"version":2,"componentBased":false},{"name":"minecraft:frog_spawn","id":-468,"version":2,"componentBased":false},{"name":"minecraft:frog_spawn_egg","id":665,"version":2,"componentBased":false},{"name":"minecraft:frosted_ice","id":207,"version":2,"componentBased":false},{"name":"minecraft:furnace","id":61,"version":2,"componentBased":false},{"name":"minecraft:ghast_spawn_egg","id":481,"version":2,"componentBased":false},{"name":"minecraft:ghast_tear","id":451,"version":2,"componentBased":false},{"name":"minecraft:gilded_blackstone","id":-281,"version":2,"componentBased":false},{"name":"minecraft:glass","id":20,"version":2,"componentBased":false},{"name":"minecraft:glass_bottle","id":454,"version":2,"componentBased":false},{"name":"minecraft:glass_pane","id":102,"version":2,"componentBased":false},{"name":"minecraft:glistering_melon_slice","id":461,"version":2,"componentBased":false},{"name":"minecraft:globe_banner_pattern","id":621,"version":2,"componentBased":false},{"name":"minecraft:glow_berries","id":796,"version":0,"componentBased":false},{"name":"minecraft:glow_frame","id":660,"version":2,"componentBased":true},{"name":"minecraft:glow_ink_sac","id":537,"version":2,"componentBased":false},{"name":"minecraft:glow_lichen","id":-411,"version":2,"componentBased":false},{"name":"minecraft:glow_squid_spawn_egg","id":532,"version":2,"componentBased":false},{"name":"minecraft:glow_stick","id":638,"version":2,"componentBased":false},{"name":"minecraft:glowingobsidian","id":246,"version":2,"componentBased":false},{"name":"minecraft:glowstone","id":89,"version":2,"componentBased":false},{"name":"minecraft:glowstone_dust","id":420,"version":2,"componentBased":false},{"name":"minecraft:goat_horn","id":664,"version":2,"componentBased":false},{"name":"minecraft:goat_spawn_egg","id":531,"version":2,"componentBased":false},{"name":"minecraft:gold_block","id":41,"version":2,"componentBased":false},{"name":"minecraft:gold_ingot","id":330,"version":2,"componentBased":false},{"name":"minecraft:gold_nugget","id":452,"version":2,"componentBased":false},{"name":"minecraft:gold_ore","id":14,"version":2,"componentBased":false},{"name":"minecraft:golden_apple","id":280,"version":0,"componentBased":false},{"name":"minecraft:golden_axe","id":350,"version":2,"componentBased":false},{"name":"minecraft:golden_boots","id":379,"version":2,"componentBased":false},{"name":"minecraft:golden_carrot","id":305,"version":0,"componentBased":false},{"name":"minecraft:golden_chestplate","id":377,"version":2,"componentBased":false},{"name":"minecraft:golden_helmet","id":376,"version":2,"componentBased":false},{"name":"minecraft:golden_hoe","id":358,"version":2,"componentBased":false},{"name":"minecraft:golden_horse_armor","id":565,"version":2,"componentBased":false},{"name":"minecraft:golden_leggings","id":378,"version":2,"componentBased":false},{"name":"minecraft:golden_pickaxe","id":349,"version":2,"componentBased":false},{"name":"minecraft:golden_rail","id":27,"version":2,"componentBased":false},{"name":"minecraft:golden_shovel","id":348,"version":2,"componentBased":false},{"name":"minecraft:golden_sword","id":347,"version":2,"componentBased":false},{"name":"minecraft:granite","id":-590,"version":2,"componentBased":false},{"name":"minecraft:granite_double_slab","id":-923,"version":2,"componentBased":false},{"name":"minecraft:granite_slab","id":-896,"version":2,"componentBased":false},{"name":"minecraft:granite_stairs","id":-169,"version":2,"componentBased":false},{"name":"minecraft:granite_wall","id":-972,"version":2,"componentBased":false},{"name":"minecraft:grass_block","id":2,"version":2,"componentBased":false},{"name":"minecraft:grass_path","id":198,"version":2,"componentBased":false},{"name":"minecraft:gravel","id":13,"version":2,"componentBased":false},{"name":"minecraft:gray_bundle","id":262,"version":1,"componentBased":true},{"name":"minecraft:gray_candle","id":-420,"version":2,"componentBased":false},{"name":"minecraft:gray_candle_cake","id":-437,"version":2,"componentBased":false},{"name":"minecraft:gray_carpet","id":-603,"version":2,"componentBased":false},{"name":"minecraft:gray_concrete","id":-634,"version":2,"componentBased":false},{"name":"minecraft:gray_concrete_powder","id":-715,"version":2,"componentBased":false},{"name":"minecraft:gray_dye","id":429,"version":2,"componentBased":false},{"name":"minecraft:gray_glazed_terracotta","id":227,"version":2,"componentBased":false},{"name":"minecraft:gray_shulker_box","id":-619,"version":2,"componentBased":false},{"name":"minecraft:gray_stained_glass","id":-679,"version":2,"componentBased":false},{"name":"minecraft:gray_stained_glass_pane","id":-649,"version":2,"componentBased":false},{"name":"minecraft:gray_terracotta","id":-730,"version":2,"componentBased":false},{"name":"minecraft:gray_wool","id":-553,"version":2,"componentBased":false},{"name":"minecraft:green_bundle","id":263,"version":1,"componentBased":true},{"name":"minecraft:green_candle","id":-426,"version":2,"componentBased":false},{"name":"minecraft:green_candle_cake","id":-443,"version":2,"componentBased":false},{"name":"minecraft:green_carpet","id":-609,"version":2,"componentBased":false},{"name":"minecraft:green_concrete","id":-640,"version":2,"componentBased":false},{"name":"minecraft:green_concrete_powder","id":-721,"version":2,"componentBased":false},{"name":"minecraft:green_dye","id":423,"version":2,"componentBased":false},{"name":"minecraft:green_glazed_terracotta","id":233,"version":2,"componentBased":false},{"name":"minecraft:green_shulker_box","id":-625,"version":2,"componentBased":false},{"name":"minecraft:green_stained_glass","id":-685,"version":2,"componentBased":false},{"name":"minecraft:green_stained_glass_pane","id":-655,"version":2,"componentBased":false},{"name":"minecraft:green_terracotta","id":-736,"version":2,"componentBased":false},{"name":"minecraft:green_wool","id":-560,"version":2,"componentBased":false},{"name":"minecraft:grindstone","id":-195,"version":2,"componentBased":false},{"name":"minecraft:guardian_spawn_egg","id":488,"version":2,"componentBased":false},{"name":"minecraft:gunpowder","id":353,"version":2,"componentBased":false},{"name":"minecraft:guster_banner_pattern","id":623,"version":2,"componentBased":false},{"name":"minecraft:guster_pottery_sherd","id":703,"version":2,"componentBased":false},{"name":"minecraft:hanging_roots","id":-319,"version":2,"componentBased":false},{"name":"minecraft:hard_black_stained_glass","id":-702,"version":2,"componentBased":false},{"name":"minecraft:hard_black_stained_glass_pane","id":-672,"version":2,"componentBased":false},{"name":"minecraft:hard_blue_stained_glass","id":-698,"version":2,"componentBased":false},{"name":"minecraft:hard_blue_stained_glass_pane","id":-668,"version":2,"componentBased":false},{"name":"minecraft:hard_brown_stained_glass","id":-699,"version":2,"componentBased":false},{"name":"minecraft:hard_brown_stained_glass_pane","id":-669,"version":2,"componentBased":false},{"name":"minecraft:hard_cyan_stained_glass","id":-696,"version":2,"componentBased":false},{"name":"minecraft:hard_cyan_stained_glass_pane","id":-666,"version":2,"componentBased":false},{"name":"minecraft:hard_glass","id":253,"version":2,"componentBased":false},{"name":"minecraft:hard_glass_pane","id":190,"version":2,"componentBased":false},{"name":"minecraft:hard_gray_stained_glass","id":-694,"version":2,"componentBased":false},{"name":"minecraft:hard_gray_stained_glass_pane","id":-664,"version":2,"componentBased":false},{"name":"minecraft:hard_green_stained_glass","id":-700,"version":2,"componentBased":false},{"name":"minecraft:hard_green_stained_glass_pane","id":-670,"version":2,"componentBased":false},{"name":"minecraft:hard_light_blue_stained_glass","id":-690,"version":2,"componentBased":false},{"name":"minecraft:hard_light_blue_stained_glass_pane","id":-660,"version":2,"componentBased":false},{"name":"minecraft:hard_light_gray_stained_glass","id":-695,"version":2,"componentBased":false},{"name":"minecraft:hard_light_gray_stained_glass_pane","id":-665,"version":2,"componentBased":false},{"name":"minecraft:hard_lime_stained_glass","id":-692,"version":2,"componentBased":false},{"name":"minecraft:hard_lime_stained_glass_pane","id":-662,"version":2,"componentBased":false},{"name":"minecraft:hard_magenta_stained_glass","id":-689,"version":2,"componentBased":false},{"name":"minecraft:hard_magenta_stained_glass_pane","id":-659,"version":2,"componentBased":false},{"name":"minecraft:hard_orange_stained_glass","id":-688,"version":2,"componentBased":false},{"name":"minecraft:hard_orange_stained_glass_pane","id":-658,"version":2,"componentBased":false},{"name":"minecraft:hard_pink_stained_glass","id":-693,"version":2,"componentBased":false},{"name":"minecraft:hard_pink_stained_glass_pane","id":-663,"version":2,"componentBased":false},{"name":"minecraft:hard_purple_stained_glass","id":-697,"version":2,"componentBased":false},{"name":"minecraft:hard_purple_stained_glass_pane","id":-667,"version":2,"componentBased":false},{"name":"minecraft:hard_red_stained_glass","id":-701,"version":2,"componentBased":false},{"name":"minecraft:hard_red_stained_glass_pane","id":-671,"version":2,"componentBased":false},{"name":"minecraft:hard_stained_glass","id":786,"version":2,"componentBased":false},{"name":"minecraft:hard_stained_glass_pane","id":787,"version":2,"componentBased":false},{"name":"minecraft:hard_white_stained_glass","id":254,"version":2,"componentBased":false},{"name":"minecraft:hard_white_stained_glass_pane","id":191,"version":2,"componentBased":false},{"name":"minecraft:hard_yellow_stained_glass","id":-691,"version":2,"componentBased":false},{"name":"minecraft:hard_yellow_stained_glass_pane","id":-661,"version":2,"componentBased":false},{"name":"minecraft:hardened_clay","id":172,"version":2,"componentBased":false},{"name":"minecraft:hay_block","id":170,"version":2,"componentBased":false},{"name":"minecraft:heart_of_the_sea","id":604,"version":2,"componentBased":false},{"name":"minecraft:heart_pottery_sherd","id":704,"version":2,"componentBased":false},{"name":"minecraft:heartbreak_pottery_sherd","id":705,"version":2,"componentBased":false},{"name":"minecraft:heavy_core","id":-316,"version":2,"componentBased":false},{"name":"minecraft:heavy_weighted_pressure_plate","id":148,"version":2,"componentBased":false},{"name":"minecraft:hoglin_spawn_egg","id":524,"version":2,"componentBased":false},{"name":"minecraft:honey_block","id":-220,"version":2,"componentBased":false},{"name":"minecraft:honey_bottle","id":627,"version":0,"componentBased":false},{"name":"minecraft:honeycomb","id":626,"version":0,"componentBased":false},{"name":"minecraft:honeycomb_block","id":-221,"version":2,"componentBased":false},{"name":"minecraft:hopper","id":560,"version":2,"componentBased":true},{"name":"minecraft:hopper_minecart","id":559,"version":2,"componentBased":false},{"name":"minecraft:horn_coral","id":-584,"version":2,"componentBased":false},{"name":"minecraft:horn_coral_block","id":-852,"version":2,"componentBased":false},{"name":"minecraft:horn_coral_fan","id":-843,"version":2,"componentBased":false},{"name":"minecraft:horn_coral_wall_fan","id":-137,"version":2,"componentBased":false},{"name":"minecraft:horse_spawn_egg","id":485,"version":2,"componentBased":false},{"name":"minecraft:host_armor_trim_smithing_template","id":733,"version":2,"componentBased":false},{"name":"minecraft:howl_pottery_sherd","id":706,"version":2,"componentBased":false},{"name":"minecraft:husk_spawn_egg","id":491,"version":2,"componentBased":false},{"name":"minecraft:ice","id":79,"version":2,"componentBased":false},{"name":"minecraft:ice_bomb","id":632,"version":2,"componentBased":false},{"name":"minecraft:infested_chiseled_stone_bricks","id":-862,"version":2,"componentBased":false},{"name":"minecraft:infested_cobblestone","id":-858,"version":2,"componentBased":false},{"name":"minecraft:infested_cracked_stone_bricks","id":-861,"version":2,"componentBased":false},{"name":"minecraft:infested_deepslate","id":-454,"version":2,"componentBased":false},{"name":"minecraft:infested_mossy_stone_bricks","id":-860,"version":2,"componentBased":false},{"name":"minecraft:infested_stone","id":97,"version":2,"componentBased":false},{"name":"minecraft:infested_stone_bricks","id":-859,"version":2,"componentBased":false},{"name":"minecraft:info_update","id":248,"version":2,"componentBased":false},{"name":"minecraft:info_update2","id":249,"version":2,"componentBased":false},{"name":"minecraft:ink_sac","id":439,"version":2,"componentBased":false},{"name":"minecraft:invisible_bedrock","id":95,"version":2,"componentBased":false},{"name":"minecraft:iron_axe","id":322,"version":2,"componentBased":false},{"name":"minecraft:iron_bars","id":101,"version":2,"componentBased":false},{"name":"minecraft:iron_block","id":42,"version":2,"componentBased":false},{"name":"minecraft:iron_boots","id":371,"version":2,"componentBased":false},{"name":"minecraft:iron_chestplate","id":369,"version":2,"componentBased":false},{"name":"minecraft:iron_door","id":397,"version":2,"componentBased":false},{"name":"minecraft:iron_golem_spawn_egg","id":533,"version":2,"componentBased":false},{"name":"minecraft:iron_helmet","id":368,"version":2,"componentBased":false},{"name":"minecraft:iron_hoe","id":356,"version":2,"componentBased":false},{"name":"minecraft:iron_horse_armor","id":564,"version":2,"componentBased":false},{"name":"minecraft:iron_ingot","id":329,"version":2,"componentBased":false},{"name":"minecraft:iron_leggings","id":370,"version":2,"componentBased":false},{"name":"minecraft:iron_nugget","id":602,"version":2,"componentBased":false},{"name":"minecraft:iron_ore","id":15,"version":2,"componentBased":false},{"name":"minecraft:iron_pickaxe","id":321,"version":2,"componentBased":false},{"name":"minecraft:iron_shovel","id":320,"version":2,"componentBased":false},{"name":"minecraft:iron_sword","id":331,"version":2,"componentBased":false},{"name":"minecraft:iron_trapdoor","id":167,"version":2,"componentBased":false},{"name":"minecraft:item.acacia_door","id":196,"version":2,"componentBased":false},{"name":"minecraft:item.bed","id":26,"version":2,"componentBased":false},{"name":"minecraft:item.beetroot","id":244,"version":2,"componentBased":false},{"name":"minecraft:item.birch_door","id":194,"version":2,"componentBased":false},{"name":"minecraft:item.brewing_stand","id":117,"version":2,"componentBased":false},{"name":"minecraft:item.cake","id":92,"version":2,"componentBased":false},{"name":"minecraft:item.camera","id":242,"version":2,"componentBased":false},{"name":"minecraft:item.campfire","id":-209,"version":2,"componentBased":false},{"name":"minecraft:item.cauldron","id":118,"version":2,"componentBased":false},{"name":"minecraft:item.chain","id":-286,"version":2,"componentBased":false},{"name":"minecraft:item.crimson_door","id":-244,"version":2,"componentBased":false},{"name":"minecraft:item.dark_oak_door","id":197,"version":2,"componentBased":false},{"name":"minecraft:item.flower_pot","id":140,"version":2,"componentBased":false},{"name":"minecraft:item.frame","id":199,"version":2,"componentBased":false},{"name":"minecraft:item.glow_frame","id":-339,"version":2,"componentBased":false},{"name":"minecraft:item.hopper","id":154,"version":2,"componentBased":false},{"name":"minecraft:item.iron_door","id":71,"version":2,"componentBased":false},{"name":"minecraft:item.jungle_door","id":195,"version":2,"componentBased":false},{"name":"minecraft:item.kelp","id":-138,"version":2,"componentBased":false},{"name":"minecraft:item.mangrove_door","id":-493,"version":2,"componentBased":false},{"name":"minecraft:item.nether_sprouts","id":-238,"version":2,"componentBased":false},{"name":"minecraft:item.nether_wart","id":115,"version":2,"componentBased":false},{"name":"minecraft:item.reeds","id":83,"version":2,"componentBased":false},{"name":"minecraft:item.soul_campfire","id":-290,"version":2,"componentBased":false},{"name":"minecraft:item.spruce_door","id":193,"version":2,"componentBased":false},{"name":"minecraft:item.warped_door","id":-245,"version":2,"componentBased":false},{"name":"minecraft:item.wheat","id":59,"version":2,"componentBased":false},{"name":"minecraft:item.wooden_door","id":64,"version":2,"componentBased":false},{"name":"minecraft:jigsaw","id":-211,"version":2,"componentBased":false},{"name":"minecraft:jukebox","id":84,"version":2,"componentBased":false},{"name":"minecraft:jungle_boat","id":403,"version":2,"componentBased":false},{"name":"minecraft:jungle_button","id":-143,"version":2,"componentBased":false},{"name":"minecraft:jungle_chest_boat","id":677,"version":2,"componentBased":false},{"name":"minecraft:jungle_door","id":588,"version":2,"componentBased":false},{"name":"minecraft:jungle_double_slab","id":-811,"version":2,"componentBased":false},{"name":"minecraft:jungle_fence","id":-578,"version":2,"componentBased":false},{"name":"minecraft:jungle_fence_gate","id":185,"version":2,"componentBased":false},{"name":"minecraft:jungle_hanging_sign","id":-503,"version":2,"componentBased":false},{"name":"minecraft:jungle_leaves","id":-802,"version":2,"componentBased":false},{"name":"minecraft:jungle_log","id":-571,"version":2,"componentBased":false},{"name":"minecraft:jungle_planks","id":-741,"version":2,"componentBased":false},{"name":"minecraft:jungle_pressure_plate","id":-153,"version":2,"componentBased":false},{"name":"minecraft:jungle_sapling","id":-827,"version":2,"componentBased":false},{"name":"minecraft:jungle_sign","id":611,"version":2,"componentBased":false},{"name":"minecraft:jungle_slab","id":-806,"version":2,"componentBased":false},{"name":"minecraft:jungle_stairs","id":136,"version":2,"componentBased":false},{"name":"minecraft:jungle_standing_sign","id":-188,"version":2,"componentBased":false},{"name":"minecraft:jungle_trapdoor","id":-148,"version":2,"componentBased":false},{"name":"minecraft:jungle_wall_sign","id":-189,"version":2,"componentBased":false},{"name":"minecraft:jungle_wood","id":-816,"version":2,"componentBased":false},{"name":"minecraft:kelp","id":408,"version":2,"componentBased":true},{"name":"minecraft:lab_table","id":-988,"version":2,"componentBased":false},{"name":"minecraft:ladder","id":65,"version":2,"componentBased":false},{"name":"minecraft:lantern","id":-208,"version":2,"componentBased":false},{"name":"minecraft:lapis_block","id":22,"version":2,"componentBased":false},{"name":"minecraft:lapis_lazuli","id":440,"version":2,"componentBased":false},{"name":"minecraft:lapis_ore","id":21,"version":2,"componentBased":false},{"name":"minecraft:large_amethyst_bud","id":-330,"version":2,"componentBased":false},{"name":"minecraft:large_fern","id":-865,"version":2,"componentBased":false},{"name":"minecraft:lava","id":11,"version":2,"componentBased":false},{"name":"minecraft:lava_bucket","id":388,"version":2,"componentBased":false},{"name":"minecraft:lead","id":580,"version":2,"componentBased":false},{"name":"minecraft:leather","id":407,"version":2,"componentBased":false},{"name":"minecraft:leather_boots","id":363,"version":2,"componentBased":false},{"name":"minecraft:leather_chestplate","id":361,"version":2,"componentBased":false},{"name":"minecraft:leather_helmet","id":360,"version":2,"componentBased":false},{"name":"minecraft:leather_horse_armor","id":563,"version":2,"componentBased":false},{"name":"minecraft:leather_leggings","id":362,"version":2,"componentBased":false},{"name":"minecraft:leaves","id":766,"version":2,"componentBased":false},{"name":"minecraft:leaves2","id":767,"version":2,"componentBased":false},{"name":"minecraft:lectern","id":-194,"version":2,"componentBased":false},{"name":"minecraft:lever","id":69,"version":2,"componentBased":false},{"name":"minecraft:light_block","id":790,"version":2,"componentBased":false},{"name":"minecraft:light_block_0","id":-215,"version":2,"componentBased":false},{"name":"minecraft:light_block_1","id":-929,"version":2,"componentBased":false},{"name":"minecraft:light_block_10","id":-938,"version":2,"componentBased":false},{"name":"minecraft:light_block_11","id":-939,"version":2,"componentBased":false},{"name":"minecraft:light_block_12","id":-940,"version":2,"componentBased":false},{"name":"minecraft:light_block_13","id":-941,"version":2,"componentBased":false},{"name":"minecraft:light_block_14","id":-942,"version":2,"componentBased":false},{"name":"minecraft:light_block_15","id":-943,"version":2,"componentBased":false},{"name":"minecraft:light_block_2","id":-930,"version":2,"componentBased":false},{"name":"minecraft:light_block_3","id":-931,"version":2,"componentBased":false},{"name":"minecraft:light_block_4","id":-932,"version":2,"componentBased":false},{"name":"minecraft:light_block_5","id":-933,"version":2,"componentBased":false},{"name":"minecraft:light_block_6","id":-934,"version":2,"componentBased":false},{"name":"minecraft:light_block_7","id":-935,"version":2,"componentBased":false},{"name":"minecraft:light_block_8","id":-936,"version":2,"componentBased":false},{"name":"minecraft:light_block_9","id":-937,"version":2,"componentBased":false},{"name":"minecraft:light_blue_bundle","id":264,"version":1,"componentBased":true},{"name":"minecraft:light_blue_candle","id":-416,"version":2,"componentBased":false},{"name":"minecraft:light_blue_candle_cake","id":-433,"version":2,"componentBased":false},{"name":"minecraft:light_blue_carpet","id":-599,"version":2,"componentBased":false},{"name":"minecraft:light_blue_concrete","id":-630,"version":2,"componentBased":false},{"name":"minecraft:light_blue_concrete_powder","id":-711,"version":2,"componentBased":false},{"name":"minecraft:light_blue_dye","id":433,"version":2,"componentBased":false},{"name":"minecraft:light_blue_glazed_terracotta","id":223,"version":2,"componentBased":false},{"name":"minecraft:light_blue_shulker_box","id":-615,"version":2,"componentBased":false},{"name":"minecraft:light_blue_stained_glass","id":-675,"version":2,"componentBased":false},{"name":"minecraft:light_blue_stained_glass_pane","id":-645,"version":2,"componentBased":false},{"name":"minecraft:light_blue_terracotta","id":-726,"version":2,"componentBased":false},{"name":"minecraft:light_blue_wool","id":-562,"version":2,"componentBased":false},{"name":"minecraft:light_gray_bundle","id":265,"version":1,"componentBased":true},{"name":"minecraft:light_gray_candle","id":-421,"version":2,"componentBased":false},{"name":"minecraft:light_gray_candle_cake","id":-438,"version":2,"componentBased":false},{"name":"minecraft:light_gray_carpet","id":-604,"version":2,"componentBased":false},{"name":"minecraft:light_gray_concrete","id":-635,"version":2,"componentBased":false},{"name":"minecraft:light_gray_concrete_powder","id":-716,"version":2,"componentBased":false},{"name":"minecraft:light_gray_dye","id":428,"version":2,"componentBased":false},{"name":"minecraft:light_gray_shulker_box","id":-620,"version":2,"componentBased":false},{"name":"minecraft:light_gray_stained_glass","id":-680,"version":2,"componentBased":false},{"name":"minecraft:light_gray_stained_glass_pane","id":-650,"version":2,"componentBased":false},{"name":"minecraft:light_gray_terracotta","id":-731,"version":2,"componentBased":false},{"name":"minecraft:light_gray_wool","id":-552,"version":2,"componentBased":false},{"name":"minecraft:light_weighted_pressure_plate","id":147,"version":2,"componentBased":false},{"name":"minecraft:lightning_rod","id":-312,"version":2,"componentBased":false},{"name":"minecraft:lilac","id":-863,"version":2,"componentBased":false},{"name":"minecraft:lily_of_the_valley","id":-839,"version":2,"componentBased":false},{"name":"minecraft:lime_bundle","id":266,"version":1,"componentBased":true},{"name":"minecraft:lime_candle","id":-418,"version":2,"componentBased":false},{"name":"minecraft:lime_candle_cake","id":-435,"version":2,"componentBased":false},{"name":"minecraft:lime_carpet","id":-601,"version":2,"componentBased":false},{"name":"minecraft:lime_concrete","id":-632,"version":2,"componentBased":false},{"name":"minecraft:lime_concrete_powder","id":-713,"version":2,"componentBased":false},{"name":"minecraft:lime_dye","id":431,"version":2,"componentBased":false},{"name":"minecraft:lime_glazed_terracotta","id":225,"version":2,"componentBased":false},{"name":"minecraft:lime_shulker_box","id":-617,"version":2,"componentBased":false},{"name":"minecraft:lime_stained_glass","id":-677,"version":2,"componentBased":false},{"name":"minecraft:lime_stained_glass_pane","id":-647,"version":2,"componentBased":false},{"name":"minecraft:lime_terracotta","id":-728,"version":2,"componentBased":false},{"name":"minecraft:lime_wool","id":-559,"version":2,"componentBased":false},{"name":"minecraft:lingering_potion","id":595,"version":2,"componentBased":false},{"name":"minecraft:lit_blast_furnace","id":-214,"version":2,"componentBased":false},{"name":"minecraft:lit_deepslate_redstone_ore","id":-404,"version":2,"componentBased":false},{"name":"minecraft:lit_furnace","id":62,"version":2,"componentBased":false},{"name":"minecraft:lit_pumpkin","id":91,"version":2,"componentBased":false},{"name":"minecraft:lit_redstone_lamp","id":124,"version":2,"componentBased":false},{"name":"minecraft:lit_redstone_ore","id":74,"version":2,"componentBased":false},{"name":"minecraft:lit_smoker","id":-199,"version":2,"componentBased":false},{"name":"minecraft:llama_spawn_egg","id":501,"version":2,"componentBased":false},{"name":"minecraft:lodestone","id":-222,"version":2,"componentBased":false},{"name":"minecraft:lodestone_compass","id":639,"version":2,"componentBased":false},{"name":"minecraft:log","id":751,"version":2,"componentBased":false},{"name":"minecraft:log2","id":774,"version":2,"componentBased":false},{"name":"minecraft:loom","id":-204,"version":2,"componentBased":false},{"name":"minecraft:mace","id":344,"version":2,"componentBased":false},{"name":"minecraft:magenta_bundle","id":267,"version":1,"componentBased":true},{"name":"minecraft:magenta_candle","id":-415,"version":2,"componentBased":false},{"name":"minecraft:magenta_candle_cake","id":-432,"version":2,"componentBased":false},{"name":"minecraft:magenta_carpet","id":-598,"version":2,"componentBased":false},{"name":"minecraft:magenta_concrete","id":-629,"version":2,"componentBased":false},{"name":"minecraft:magenta_concrete_powder","id":-710,"version":2,"componentBased":false},{"name":"minecraft:magenta_dye","id":434,"version":2,"componentBased":false},{"name":"minecraft:magenta_glazed_terracotta","id":222,"version":2,"componentBased":false},{"name":"minecraft:magenta_shulker_box","id":-614,"version":2,"componentBased":false},{"name":"minecraft:magenta_stained_glass","id":-674,"version":2,"componentBased":false},{"name":"minecraft:magenta_stained_glass_pane","id":-644,"version":2,"componentBased":false},{"name":"minecraft:magenta_terracotta","id":-725,"version":2,"componentBased":false},{"name":"minecraft:magenta_wool","id":-565,"version":2,"componentBased":false},{"name":"minecraft:magma","id":213,"version":2,"componentBased":false},{"name":"minecraft:magma_cream","id":457,"version":2,"componentBased":false},{"name":"minecraft:magma_cube_spawn_egg","id":482,"version":2,"componentBased":false},{"name":"minecraft:mangrove_boat","id":672,"version":2,"componentBased":false},{"name":"minecraft:mangrove_button","id":-487,"version":2,"componentBased":false},{"name":"minecraft:mangrove_chest_boat","id":681,"version":2,"componentBased":false},{"name":"minecraft:mangrove_door","id":670,"version":2,"componentBased":false},{"name":"minecraft:mangrove_double_slab","id":-499,"version":2,"componentBased":false},{"name":"minecraft:mangrove_fence","id":-491,"version":2,"componentBased":false},{"name":"minecraft:mangrove_fence_gate","id":-492,"version":2,"componentBased":false},{"name":"minecraft:mangrove_hanging_sign","id":-508,"version":2,"componentBased":false},{"name":"minecraft:mangrove_leaves","id":-472,"version":2,"componentBased":false},{"name":"minecraft:mangrove_log","id":-484,"version":2,"componentBased":false},{"name":"minecraft:mangrove_planks","id":-486,"version":2,"componentBased":false},{"name":"minecraft:mangrove_pressure_plate","id":-490,"version":2,"componentBased":false},{"name":"minecraft:mangrove_propagule","id":-474,"version":2,"componentBased":false},{"name":"minecraft:mangrove_roots","id":-482,"version":2,"componentBased":false},{"name":"minecraft:mangrove_sign","id":671,"version":2,"componentBased":false},{"name":"minecraft:mangrove_slab","id":-489,"version":2,"componentBased":false},{"name":"minecraft:mangrove_stairs","id":-488,"version":2,"componentBased":false},{"name":"minecraft:mangrove_standing_sign","id":-494,"version":2,"componentBased":false},{"name":"minecraft:mangrove_trapdoor","id":-496,"version":2,"componentBased":false},{"name":"minecraft:mangrove_wall_sign","id":-495,"version":2,"componentBased":false},{"name":"minecraft:mangrove_wood","id":-497,"version":2,"componentBased":false},{"name":"minecraft:material_reducer","id":-986,"version":2,"componentBased":false},{"name":"minecraft:medicine","id":636,"version":2,"componentBased":false},{"name":"minecraft:medium_amethyst_bud","id":-331,"version":2,"componentBased":false},{"name":"minecraft:melon_block","id":103,"version":2,"componentBased":false},{"name":"minecraft:melon_seeds","id":315,"version":0,"componentBased":false},{"name":"minecraft:melon_slice","id":294,"version":0,"componentBased":false},{"name":"minecraft:melon_stem","id":105,"version":2,"componentBased":false},{"name":"minecraft:milk_bucket","id":386,"version":2,"componentBased":false},{"name":"minecraft:minecart","id":395,"version":2,"componentBased":false},{"name":"minecraft:miner_pottery_sherd","id":707,"version":2,"componentBased":false},{"name":"minecraft:mob_spawner","id":52,"version":2,"componentBased":false},{"name":"minecraft:mojang_banner_pattern","id":617,"version":2,"componentBased":false},{"name":"minecraft:monster_egg","id":775,"version":2,"componentBased":false},{"name":"minecraft:mooshroom_spawn_egg","id":467,"version":2,"componentBased":false},{"name":"minecraft:moss_block","id":-320,"version":2,"componentBased":false},{"name":"minecraft:moss_carpet","id":-335,"version":2,"componentBased":false},{"name":"minecraft:mossy_cobblestone","id":48,"version":2,"componentBased":false},{"name":"minecraft:mossy_cobblestone_double_slab","id":-915,"version":2,"componentBased":false},{"name":"minecraft:mossy_cobblestone_slab","id":-888,"version":2,"componentBased":false},{"name":"minecraft:mossy_cobblestone_stairs","id":-179,"version":2,"componentBased":false},{"name":"minecraft:mossy_cobblestone_wall","id":-971,"version":2,"componentBased":false},{"name":"minecraft:mossy_stone_brick_double_slab","id":-168,"version":2,"componentBased":false},{"name":"minecraft:mossy_stone_brick_slab","id":-166,"version":2,"componentBased":false},{"name":"minecraft:mossy_stone_brick_stairs","id":-175,"version":2,"componentBased":false},{"name":"minecraft:mossy_stone_brick_wall","id":-978,"version":2,"componentBased":false},{"name":"minecraft:mossy_stone_bricks","id":-868,"version":2,"componentBased":false},{"name":"minecraft:mourner_pottery_sherd","id":708,"version":2,"componentBased":false},{"name":"minecraft:moving_block","id":250,"version":2,"componentBased":false},{"name":"minecraft:mud","id":-473,"version":2,"componentBased":false},{"name":"minecraft:mud_brick_double_slab","id":-479,"version":2,"componentBased":false},{"name":"minecraft:mud_brick_slab","id":-478,"version":2,"componentBased":false},{"name":"minecraft:mud_brick_stairs","id":-480,"version":2,"componentBased":false},{"name":"minecraft:mud_brick_wall","id":-481,"version":2,"componentBased":false},{"name":"minecraft:mud_bricks","id":-475,"version":2,"componentBased":false},{"name":"minecraft:muddy_mangrove_roots","id":-483,"version":2,"componentBased":false},{"name":"minecraft:mule_spawn_egg","id":494,"version":2,"componentBased":false},{"name":"minecraft:mushroom_stem","id":-1008,"version":2,"componentBased":false},{"name":"minecraft:mushroom_stew","id":282,"version":0,"componentBased":false},{"name":"minecraft:music_disc_11","id":577,"version":2,"componentBased":true},{"name":"minecraft:music_disc_13","id":567,"version":2,"componentBased":true},{"name":"minecraft:music_disc_5","id":673,"version":2,"componentBased":true},{"name":"minecraft:music_disc_blocks","id":569,"version":2,"componentBased":true},{"name":"minecraft:music_disc_cat","id":568,"version":2,"componentBased":true},{"name":"minecraft:music_disc_chirp","id":570,"version":2,"componentBased":true},{"name":"minecraft:music_disc_creator","id":782,"version":2,"componentBased":true},{"name":"minecraft:music_disc_creator_music_box","id":783,"version":2,"componentBased":true},{"name":"minecraft:music_disc_far","id":571,"version":2,"componentBased":true},{"name":"minecraft:music_disc_mall","id":572,"version":2,"componentBased":true},{"name":"minecraft:music_disc_mellohi","id":573,"version":2,"componentBased":true},{"name":"minecraft:music_disc_otherside","id":663,"version":2,"componentBased":true},{"name":"minecraft:music_disc_pigstep","id":657,"version":2,"componentBased":true},{"name":"minecraft:music_disc_precipice","id":784,"version":2,"componentBased":true},{"name":"minecraft:music_disc_relic","id":736,"version":2,"componentBased":true},{"name":"minecraft:music_disc_stal","id":574,"version":2,"componentBased":true},{"name":"minecraft:music_disc_strad","id":575,"version":2,"componentBased":true},{"name":"minecraft:music_disc_wait","id":578,"version":2,"componentBased":true},{"name":"minecraft:music_disc_ward","id":576,"version":2,"componentBased":true},{"name":"minecraft:mutton","id":583,"version":0,"componentBased":false},{"name":"minecraft:mycelium","id":110,"version":2,"componentBased":false},{"name":"minecraft:name_tag","id":581,"version":2,"componentBased":false},{"name":"minecraft:nautilus_shell","id":603,"version":2,"componentBased":false},{"name":"minecraft:nether_brick","id":112,"version":2,"componentBased":false},{"name":"minecraft:nether_brick_double_slab","id":-883,"version":2,"componentBased":false},{"name":"minecraft:nether_brick_fence","id":113,"version":2,"componentBased":false},{"name":"minecraft:nether_brick_slab","id":-877,"version":2,"componentBased":false},{"name":"minecraft:nether_brick_stairs","id":114,"version":2,"componentBased":false},{"name":"minecraft:nether_brick_wall","id":-979,"version":2,"componentBased":false},{"name":"minecraft:nether_gold_ore","id":-288,"version":2,"componentBased":false},{"name":"minecraft:nether_sprouts","id":658,"version":2,"componentBased":true},{"name":"minecraft:nether_star","id":551,"version":2,"componentBased":false},{"name":"minecraft:nether_wart","id":316,"version":0,"componentBased":false},{"name":"minecraft:nether_wart_block","id":214,"version":2,"componentBased":false},{"name":"minecraft:netherbrick","id":556,"version":2,"componentBased":false},{"name":"minecraft:netherite_axe","id":643,"version":2,"componentBased":false},{"name":"minecraft:netherite_block","id":-270,"version":2,"componentBased":false},{"name":"minecraft:netherite_boots","id":649,"version":2,"componentBased":false},{"name":"minecraft:netherite_chestplate","id":647,"version":2,"componentBased":false},{"name":"minecraft:netherite_helmet","id":646,"version":2,"componentBased":false},{"name":"minecraft:netherite_hoe","id":644,"version":2,"componentBased":false},{"name":"minecraft:netherite_ingot","id":645,"version":2,"componentBased":false},{"name":"minecraft:netherite_leggings","id":648,"version":2,"componentBased":false},{"name":"minecraft:netherite_pickaxe","id":642,"version":2,"componentBased":false},{"name":"minecraft:netherite_scrap","id":650,"version":2,"componentBased":false},{"name":"minecraft:netherite_shovel","id":641,"version":2,"componentBased":false},{"name":"minecraft:netherite_sword","id":640,"version":2,"componentBased":false},{"name":"minecraft:netherite_upgrade_smithing_template","id":717,"version":2,"componentBased":false},{"name":"minecraft:netherrack","id":87,"version":2,"componentBased":false},{"name":"minecraft:netherreactor","id":247,"version":2,"componentBased":false},{"name":"minecraft:normal_stone_double_slab","id":-926,"version":2,"componentBased":false},{"name":"minecraft:normal_stone_slab","id":-899,"version":2,"componentBased":false},{"name":"minecraft:normal_stone_stairs","id":-180,"version":2,"componentBased":false},{"name":"minecraft:noteblock","id":25,"version":2,"componentBased":false},{"name":"minecraft:npc_spawn_egg","id":498,"version":2,"componentBased":false},{"name":"minecraft:oak_boat","id":401,"version":2,"componentBased":false},{"name":"minecraft:oak_chest_boat","id":675,"version":2,"componentBased":false},{"name":"minecraft:oak_double_slab","id":157,"version":2,"componentBased":false},{"name":"minecraft:oak_fence","id":85,"version":2,"componentBased":false},{"name":"minecraft:oak_hanging_sign","id":-500,"version":2,"componentBased":false},{"name":"minecraft:oak_leaves","id":18,"version":2,"componentBased":false},{"name":"minecraft:oak_log","id":17,"version":2,"componentBased":false},{"name":"minecraft:oak_planks","id":5,"version":2,"componentBased":false},{"name":"minecraft:oak_sapling","id":6,"version":2,"componentBased":false},{"name":"minecraft:oak_sign","id":383,"version":2,"componentBased":false},{"name":"minecraft:oak_slab","id":158,"version":2,"componentBased":false},{"name":"minecraft:oak_stairs","id":53,"version":2,"componentBased":false},{"name":"minecraft:oak_wood","id":-212,"version":2,"componentBased":false},{"name":"minecraft:observer","id":251,"version":2,"componentBased":false},{"name":"minecraft:obsidian","id":49,"version":2,"componentBased":false},{"name":"minecraft:ocelot_spawn_egg","id":478,"version":2,"componentBased":false},{"name":"minecraft:ochre_froglight","id":-471,"version":2,"componentBased":false},{"name":"minecraft:ominous_bottle","id":628,"version":2,"componentBased":false},{"name":"minecraft:ominous_trial_key","id":275,"version":1,"componentBased":true},{"name":"minecraft:open_eyeblossom","id":-1018,"version":2,"componentBased":false},{"name":"minecraft:orange_bundle","id":268,"version":1,"componentBased":true},{"name":"minecraft:orange_candle","id":-414,"version":2,"componentBased":false},{"name":"minecraft:orange_candle_cake","id":-431,"version":2,"componentBased":false},{"name":"minecraft:orange_carpet","id":-597,"version":2,"componentBased":false},{"name":"minecraft:orange_concrete","id":-628,"version":2,"componentBased":false},{"name":"minecraft:orange_concrete_powder","id":-709,"version":2,"componentBased":false},{"name":"minecraft:orange_dye","id":435,"version":2,"componentBased":false},{"name":"minecraft:orange_glazed_terracotta","id":221,"version":2,"componentBased":false},{"name":"minecraft:orange_shulker_box","id":-613,"version":2,"componentBased":false},{"name":"minecraft:orange_stained_glass","id":-673,"version":2,"componentBased":false},{"name":"minecraft:orange_stained_glass_pane","id":-643,"version":2,"componentBased":false},{"name":"minecraft:orange_terracotta","id":-724,"version":2,"componentBased":false},{"name":"minecraft:orange_tulip","id":-834,"version":2,"componentBased":false},{"name":"minecraft:orange_wool","id":-557,"version":2,"componentBased":false},{"name":"minecraft:oxeye_daisy","id":-837,"version":2,"componentBased":false},{"name":"minecraft:oxidized_chiseled_copper","id":-763,"version":2,"componentBased":false},{"name":"minecraft:oxidized_copper","id":-343,"version":2,"componentBased":false},{"name":"minecraft:oxidized_copper_bulb","id":-779,"version":2,"componentBased":false},{"name":"minecraft:oxidized_copper_door","id":-787,"version":2,"componentBased":false},{"name":"minecraft:oxidized_copper_grate","id":-771,"version":2,"componentBased":false},{"name":"minecraft:oxidized_copper_trapdoor","id":-795,"version":2,"componentBased":false},{"name":"minecraft:oxidized_cut_copper","id":-350,"version":2,"componentBased":false},{"name":"minecraft:oxidized_cut_copper_slab","id":-364,"version":2,"componentBased":false},{"name":"minecraft:oxidized_cut_copper_stairs","id":-357,"version":2,"componentBased":false},{"name":"minecraft:oxidized_double_cut_copper_slab","id":-371,"version":2,"componentBased":false},{"name":"minecraft:packed_ice","id":174,"version":2,"componentBased":false},{"name":"minecraft:packed_mud","id":-477,"version":2,"componentBased":false},{"name":"minecraft:painting","id":382,"version":2,"componentBased":false},{"name":"minecraft:pale_hanging_moss","id":-1011,"version":2,"componentBased":false},{"name":"minecraft:pale_moss_block","id":-1009,"version":2,"componentBased":false},{"name":"minecraft:pale_moss_carpet","id":-1010,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_boat","id":744,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_button","id":-989,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_chest_boat","id":745,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_door","id":-990,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_double_slab","id":-999,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_fence","id":-991,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_fence_gate","id":-992,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_hanging_sign","id":-993,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_leaves","id":-1007,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_log","id":-995,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_planks","id":-996,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_pressure_plate","id":-997,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_sapling","id":-1006,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_sign","id":746,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_slab","id":-998,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_stairs","id":-1000,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_standing_sign","id":-1001,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_trapdoor","id":-1002,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_wall_sign","id":-1003,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_wood","id":-1005,"version":2,"componentBased":false},{"name":"minecraft:panda_spawn_egg","id":517,"version":2,"componentBased":false},{"name":"minecraft:paper","id":412,"version":2,"componentBased":false},{"name":"minecraft:parrot_spawn_egg","id":506,"version":2,"componentBased":false},{"name":"minecraft:pearlescent_froglight","id":-469,"version":2,"componentBased":false},{"name":"minecraft:peony","id":-867,"version":2,"componentBased":false},{"name":"minecraft:petrified_oak_double_slab","id":-903,"version":2,"componentBased":false},{"name":"minecraft:petrified_oak_slab","id":-902,"version":2,"componentBased":false},{"name":"minecraft:phantom_membrane","id":607,"version":2,"componentBased":false},{"name":"minecraft:phantom_spawn_egg","id":514,"version":2,"componentBased":false},{"name":"minecraft:pig_spawn_egg","id":464,"version":2,"componentBased":false},{"name":"minecraft:piglin_banner_pattern","id":620,"version":2,"componentBased":false},{"name":"minecraft:piglin_brute_spawn_egg","id":527,"version":2,"componentBased":false},{"name":"minecraft:piglin_head","id":-970,"version":2,"componentBased":false},{"name":"minecraft:piglin_spawn_egg","id":525,"version":2,"componentBased":false},{"name":"minecraft:pillager_spawn_egg","id":519,"version":2,"componentBased":false},{"name":"minecraft:pink_bundle","id":269,"version":1,"componentBased":true},{"name":"minecraft:pink_candle","id":-419,"version":2,"componentBased":false},{"name":"minecraft:pink_candle_cake","id":-436,"version":2,"componentBased":false},{"name":"minecraft:pink_carpet","id":-602,"version":2,"componentBased":false},{"name":"minecraft:pink_concrete","id":-633,"version":2,"componentBased":false},{"name":"minecraft:pink_concrete_powder","id":-714,"version":2,"componentBased":false},{"name":"minecraft:pink_dye","id":430,"version":2,"componentBased":false},{"name":"minecraft:pink_glazed_terracotta","id":226,"version":2,"componentBased":false},{"name":"minecraft:pink_petals","id":-549,"version":2,"componentBased":false},{"name":"minecraft:pink_shulker_box","id":-618,"version":2,"componentBased":false},{"name":"minecraft:pink_stained_glass","id":-678,"version":2,"componentBased":false},{"name":"minecraft:pink_stained_glass_pane","id":-648,"version":2,"componentBased":false},{"name":"minecraft:pink_terracotta","id":-729,"version":2,"componentBased":false},{"name":"minecraft:pink_tulip","id":-836,"version":2,"componentBased":false},{"name":"minecraft:pink_wool","id":-566,"version":2,"componentBased":false},{"name":"minecraft:piston","id":33,"version":2,"componentBased":false},{"name":"minecraft:piston_arm_collision","id":34,"version":2,"componentBased":false},{"name":"minecraft:pitcher_crop","id":-574,"version":2,"componentBased":false},{"name":"minecraft:pitcher_plant","id":-612,"version":2,"componentBased":false},{"name":"minecraft:pitcher_pod","id":319,"version":0,"componentBased":false},{"name":"minecraft:planks","id":771,"version":2,"componentBased":false},{"name":"minecraft:player_head","id":-967,"version":2,"componentBased":false},{"name":"minecraft:plenty_pottery_sherd","id":709,"version":2,"componentBased":false},{"name":"minecraft:podzol","id":243,"version":2,"componentBased":false},{"name":"minecraft:pointed_dripstone","id":-308,"version":2,"componentBased":false},{"name":"minecraft:poisonous_potato","id":304,"version":0,"componentBased":false},{"name":"minecraft:polar_bear_spawn_egg","id":500,"version":2,"componentBased":false},{"name":"minecraft:polished_andesite","id":-595,"version":2,"componentBased":false},{"name":"minecraft:polished_andesite_double_slab","id":-919,"version":2,"componentBased":false},{"name":"minecraft:polished_andesite_slab","id":-892,"version":2,"componentBased":false},{"name":"minecraft:polished_andesite_stairs","id":-174,"version":2,"componentBased":false},{"name":"minecraft:polished_basalt","id":-235,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone","id":-291,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_brick_double_slab","id":-285,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_brick_slab","id":-284,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_brick_stairs","id":-275,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_brick_wall","id":-278,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_bricks","id":-274,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_button","id":-296,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_double_slab","id":-294,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_pressure_plate","id":-295,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_slab","id":-293,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_stairs","id":-292,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_wall","id":-297,"version":2,"componentBased":false},{"name":"minecraft:polished_deepslate","id":-383,"version":2,"componentBased":false},{"name":"minecraft:polished_deepslate_double_slab","id":-397,"version":2,"componentBased":false},{"name":"minecraft:polished_deepslate_slab","id":-384,"version":2,"componentBased":false},{"name":"minecraft:polished_deepslate_stairs","id":-385,"version":2,"componentBased":false},{"name":"minecraft:polished_deepslate_wall","id":-386,"version":2,"componentBased":false},{"name":"minecraft:polished_diorite","id":-593,"version":2,"componentBased":false},{"name":"minecraft:polished_diorite_double_slab","id":-922,"version":2,"componentBased":false},{"name":"minecraft:polished_diorite_slab","id":-895,"version":2,"componentBased":false},{"name":"minecraft:polished_diorite_stairs","id":-173,"version":2,"componentBased":false},{"name":"minecraft:polished_granite","id":-591,"version":2,"componentBased":false},{"name":"minecraft:polished_granite_double_slab","id":-924,"version":2,"componentBased":false},{"name":"minecraft:polished_granite_slab","id":-897,"version":2,"componentBased":false},{"name":"minecraft:polished_granite_stairs","id":-172,"version":2,"componentBased":false},{"name":"minecraft:polished_tuff","id":-748,"version":2,"componentBased":false},{"name":"minecraft:polished_tuff_double_slab","id":-750,"version":2,"componentBased":false},{"name":"minecraft:polished_tuff_slab","id":-749,"version":2,"componentBased":false},{"name":"minecraft:polished_tuff_stairs","id":-751,"version":2,"componentBased":false},{"name":"minecraft:polished_tuff_wall","id":-752,"version":2,"componentBased":false},{"name":"minecraft:popped_chorus_fruit","id":592,"version":2,"componentBased":false},{"name":"minecraft:poppy","id":38,"version":2,"componentBased":false},{"name":"minecraft:porkchop","id":284,"version":0,"componentBased":false},{"name":"minecraft:portal","id":90,"version":2,"componentBased":false},{"name":"minecraft:potato","id":302,"version":0,"componentBased":false},{"name":"minecraft:potatoes","id":142,"version":2,"componentBased":false},{"name":"minecraft:potion","id":453,"version":2,"componentBased":false},{"name":"minecraft:powder_snow","id":-306,"version":2,"componentBased":false},{"name":"minecraft:powder_snow_bucket","id":393,"version":2,"componentBased":false},{"name":"minecraft:powered_comparator","id":150,"version":2,"componentBased":false},{"name":"minecraft:powered_repeater","id":94,"version":2,"componentBased":false},{"name":"minecraft:prismarine","id":168,"version":2,"componentBased":false},{"name":"minecraft:prismarine_brick_double_slab","id":-914,"version":2,"componentBased":false},{"name":"minecraft:prismarine_brick_slab","id":-887,"version":2,"componentBased":false},{"name":"minecraft:prismarine_bricks","id":-948,"version":2,"componentBased":false},{"name":"minecraft:prismarine_bricks_stairs","id":-4,"version":2,"componentBased":false},{"name":"minecraft:prismarine_crystals","id":582,"version":2,"componentBased":false},{"name":"minecraft:prismarine_double_slab","id":-912,"version":2,"componentBased":false},{"name":"minecraft:prismarine_shard","id":598,"version":2,"componentBased":false},{"name":"minecraft:prismarine_slab","id":-885,"version":2,"componentBased":false},{"name":"minecraft:prismarine_stairs","id":-2,"version":2,"componentBased":false},{"name":"minecraft:prismarine_wall","id":-981,"version":2,"componentBased":false},{"name":"minecraft:prize_pottery_sherd","id":710,"version":2,"componentBased":false},{"name":"minecraft:pufferfish","id":289,"version":0,"componentBased":false},{"name":"minecraft:pufferfish_bucket","id":392,"version":2,"componentBased":false},{"name":"minecraft:pufferfish_spawn_egg","id":509,"version":2,"componentBased":false},{"name":"minecraft:pumpkin","id":86,"version":2,"componentBased":false},{"name":"minecraft:pumpkin_pie","id":306,"version":0,"componentBased":false},{"name":"minecraft:pumpkin_seeds","id":314,"version":0,"componentBased":false},{"name":"minecraft:pumpkin_stem","id":104,"version":2,"componentBased":false},{"name":"minecraft:purple_bundle","id":270,"version":1,"componentBased":true},{"name":"minecraft:purple_candle","id":-423,"version":2,"componentBased":false},{"name":"minecraft:purple_candle_cake","id":-440,"version":2,"componentBased":false},{"name":"minecraft:purple_carpet","id":-606,"version":2,"componentBased":false},{"name":"minecraft:purple_concrete","id":-637,"version":2,"componentBased":false},{"name":"minecraft:purple_concrete_powder","id":-718,"version":2,"componentBased":false},{"name":"minecraft:purple_dye","id":426,"version":2,"componentBased":false},{"name":"minecraft:purple_glazed_terracotta","id":219,"version":2,"componentBased":false},{"name":"minecraft:purple_shulker_box","id":-622,"version":2,"componentBased":false},{"name":"minecraft:purple_stained_glass","id":-682,"version":2,"componentBased":false},{"name":"minecraft:purple_stained_glass_pane","id":-652,"version":2,"componentBased":false},{"name":"minecraft:purple_terracotta","id":-733,"version":2,"componentBased":false},{"name":"minecraft:purple_wool","id":-564,"version":2,"componentBased":false},{"name":"minecraft:purpur_block","id":201,"version":2,"componentBased":false},{"name":"minecraft:purpur_double_slab","id":-911,"version":2,"componentBased":false},{"name":"minecraft:purpur_pillar","id":-951,"version":2,"componentBased":false},{"name":"minecraft:purpur_slab","id":-884,"version":2,"componentBased":false},{"name":"minecraft:purpur_stairs","id":203,"version":2,"componentBased":false},{"name":"minecraft:quartz","id":557,"version":2,"componentBased":false},{"name":"minecraft:quartz_block","id":155,"version":2,"componentBased":false},{"name":"minecraft:quartz_bricks","id":-304,"version":2,"componentBased":false},{"name":"minecraft:quartz_double_slab","id":-882,"version":2,"componentBased":false},{"name":"minecraft:quartz_ore","id":153,"version":2,"componentBased":false},{"name":"minecraft:quartz_pillar","id":-954,"version":2,"componentBased":false},{"name":"minecraft:quartz_slab","id":-876,"version":2,"componentBased":false},{"name":"minecraft:quartz_stairs","id":156,"version":2,"componentBased":false},{"name":"minecraft:rabbit","id":310,"version":0,"componentBased":false},{"name":"minecraft:rabbit_foot","id":561,"version":2,"componentBased":false},{"name":"minecraft:rabbit_hide","id":562,"version":2,"componentBased":false},{"name":"minecraft:rabbit_spawn_egg","id":486,"version":2,"componentBased":false},{"name":"minecraft:rabbit_stew","id":312,"version":0,"componentBased":false},{"name":"minecraft:rail","id":66,"version":2,"componentBased":false},{"name":"minecraft:raiser_armor_trim_smithing_template","id":731,"version":2,"componentBased":false},{"name":"minecraft:rapid_fertilizer","id":634,"version":2,"componentBased":false},{"name":"minecraft:ravager_spawn_egg","id":521,"version":2,"componentBased":false},{"name":"minecraft:raw_copper","id":541,"version":2,"componentBased":false},{"name":"minecraft:raw_copper_block","id":-452,"version":2,"componentBased":false},{"name":"minecraft:raw_gold","id":540,"version":2,"componentBased":false},{"name":"minecraft:raw_gold_block","id":-453,"version":2,"componentBased":false},{"name":"minecraft:raw_iron","id":539,"version":2,"componentBased":false},{"name":"minecraft:raw_iron_block","id":-451,"version":2,"componentBased":false},{"name":"minecraft:recovery_compass","id":683,"version":2,"componentBased":false},{"name":"minecraft:red_bundle","id":271,"version":1,"componentBased":true},{"name":"minecraft:red_candle","id":-427,"version":2,"componentBased":false},{"name":"minecraft:red_candle_cake","id":-444,"version":2,"componentBased":false},{"name":"minecraft:red_carpet","id":-610,"version":2,"componentBased":false},{"name":"minecraft:red_concrete","id":-641,"version":2,"componentBased":false},{"name":"minecraft:red_concrete_powder","id":-722,"version":2,"componentBased":false},{"name":"minecraft:red_dye","id":422,"version":2,"componentBased":false},{"name":"minecraft:red_flower","id":769,"version":2,"componentBased":false},{"name":"minecraft:red_glazed_terracotta","id":234,"version":2,"componentBased":false},{"name":"minecraft:red_mushroom","id":40,"version":2,"componentBased":false},{"name":"minecraft:red_mushroom_block","id":100,"version":2,"componentBased":false},{"name":"minecraft:red_nether_brick","id":215,"version":2,"componentBased":false},{"name":"minecraft:red_nether_brick_double_slab","id":-917,"version":2,"componentBased":false},{"name":"minecraft:red_nether_brick_slab","id":-890,"version":2,"componentBased":false},{"name":"minecraft:red_nether_brick_stairs","id":-184,"version":2,"componentBased":false},{"name":"minecraft:red_nether_brick_wall","id":-983,"version":2,"componentBased":false},{"name":"minecraft:red_sand","id":-949,"version":2,"componentBased":false},{"name":"minecraft:red_sandstone","id":179,"version":2,"componentBased":false},{"name":"minecraft:red_sandstone_double_slab","id":181,"version":2,"componentBased":false},{"name":"minecraft:red_sandstone_slab","id":182,"version":2,"componentBased":false},{"name":"minecraft:red_sandstone_stairs","id":180,"version":2,"componentBased":false},{"name":"minecraft:red_sandstone_wall","id":-982,"version":2,"componentBased":false},{"name":"minecraft:red_shulker_box","id":-626,"version":2,"componentBased":false},{"name":"minecraft:red_stained_glass","id":-686,"version":2,"componentBased":false},{"name":"minecraft:red_stained_glass_pane","id":-656,"version":2,"componentBased":false},{"name":"minecraft:red_terracotta","id":-737,"version":2,"componentBased":false},{"name":"minecraft:red_tulip","id":-833,"version":2,"componentBased":false},{"name":"minecraft:red_wool","id":-556,"version":2,"componentBased":false},{"name":"minecraft:redstone","id":398,"version":2,"componentBased":false},{"name":"minecraft:redstone_block","id":152,"version":2,"componentBased":false},{"name":"minecraft:redstone_lamp","id":123,"version":2,"componentBased":false},{"name":"minecraft:redstone_ore","id":73,"version":2,"componentBased":false},{"name":"minecraft:redstone_torch","id":76,"version":2,"componentBased":false},{"name":"minecraft:redstone_wire","id":55,"version":2,"componentBased":false},{"name":"minecraft:reinforced_deepslate","id":-466,"version":2,"componentBased":false},{"name":"minecraft:repeater","id":445,"version":2,"componentBased":true},{"name":"minecraft:repeating_command_block","id":188,"version":2,"componentBased":false},{"name":"minecraft:reserved6","id":255,"version":2,"componentBased":false},{"name":"minecraft:resin_block","id":-1021,"version":2,"componentBased":false},{"name":"minecraft:resin_brick","id":748,"version":2,"componentBased":false},{"name":"minecraft:resin_brick_double_slab","id":-1015,"version":2,"componentBased":false},{"name":"minecraft:resin_brick_slab","id":-1014,"version":2,"componentBased":false},{"name":"minecraft:resin_brick_stairs","id":-1016,"version":2,"componentBased":false},{"name":"minecraft:resin_brick_wall","id":-1017,"version":2,"componentBased":false},{"name":"minecraft:resin_bricks","id":-1013,"version":2,"componentBased":false},{"name":"minecraft:resin_clump","id":-1022,"version":2,"componentBased":false},{"name":"minecraft:respawn_anchor","id":-272,"version":2,"componentBased":false},{"name":"minecraft:rib_armor_trim_smithing_template","id":727,"version":2,"componentBased":false},{"name":"minecraft:rose_bush","id":-866,"version":2,"componentBased":false},{"name":"minecraft:rotten_flesh","id":299,"version":0,"componentBased":false},{"name":"minecraft:saddle","id":396,"version":2,"componentBased":false},{"name":"minecraft:salmon","id":287,"version":0,"componentBased":false},{"name":"minecraft:salmon_bucket","id":390,"version":2,"componentBased":false},{"name":"minecraft:salmon_spawn_egg","id":510,"version":2,"componentBased":false},{"name":"minecraft:sand","id":12,"version":2,"componentBased":false},{"name":"minecraft:sandstone","id":24,"version":2,"componentBased":false},{"name":"minecraft:sandstone_double_slab","id":-878,"version":2,"componentBased":false},{"name":"minecraft:sandstone_slab","id":-872,"version":2,"componentBased":false},{"name":"minecraft:sandstone_stairs","id":128,"version":2,"componentBased":false},{"name":"minecraft:sandstone_wall","id":-975,"version":2,"componentBased":false},{"name":"minecraft:sapling","id":765,"version":2,"componentBased":false},{"name":"minecraft:scaffolding","id":-165,"version":2,"componentBased":false},{"name":"minecraft:scrape_pottery_sherd","id":711,"version":2,"componentBased":false},{"name":"minecraft:sculk","id":-458,"version":2,"componentBased":false},{"name":"minecraft:sculk_catalyst","id":-460,"version":2,"componentBased":false},{"name":"minecraft:sculk_sensor","id":-307,"version":2,"componentBased":false},{"name":"minecraft:sculk_shrieker","id":-461,"version":2,"componentBased":false},{"name":"minecraft:sculk_vein","id":-459,"version":2,"componentBased":false},{"name":"minecraft:sea_lantern","id":169,"version":2,"componentBased":false},{"name":"minecraft:sea_pickle","id":-156,"version":2,"componentBased":false},{"name":"minecraft:seagrass","id":-130,"version":2,"componentBased":false},{"name":"minecraft:sentry_armor_trim_smithing_template","id":718,"version":2,"componentBased":false},{"name":"minecraft:shaper_armor_trim_smithing_template","id":732,"version":2,"componentBased":false},{"name":"minecraft:sheaf_pottery_sherd","id":712,"version":2,"componentBased":false},{"name":"minecraft:shears","id":447,"version":2,"componentBased":false},{"name":"minecraft:sheep_spawn_egg","id":465,"version":2,"componentBased":false},{"name":"minecraft:shelter_pottery_sherd","id":713,"version":2,"componentBased":false},{"name":"minecraft:shield","id":380,"version":2,"componentBased":false},{"name":"minecraft:short_grass","id":31,"version":2,"componentBased":false},{"name":"minecraft:shroomlight","id":-230,"version":2,"componentBased":false},{"name":"minecraft:shulker_box","id":780,"version":2,"componentBased":false},{"name":"minecraft:shulker_shell","id":599,"version":2,"componentBased":false},{"name":"minecraft:shulker_spawn_egg","id":497,"version":2,"componentBased":false},{"name":"minecraft:silence_armor_trim_smithing_template","id":729,"version":2,"componentBased":false},{"name":"minecraft:silver_glazed_terracotta","id":228,"version":2,"componentBased":false},{"name":"minecraft:silverfish_spawn_egg","id":470,"version":2,"componentBased":false},{"name":"minecraft:skeleton_horse_spawn_egg","id":495,"version":2,"componentBased":false},{"name":"minecraft:skeleton_skull","id":144,"version":2,"componentBased":false},{"name":"minecraft:skeleton_spawn_egg","id":471,"version":2,"componentBased":false},{"name":"minecraft:skull","id":737,"version":2,"componentBased":false},{"name":"minecraft:skull_banner_pattern","id":616,"version":2,"componentBased":false},{"name":"minecraft:skull_pottery_sherd","id":714,"version":2,"componentBased":false},{"name":"minecraft:slime","id":165,"version":2,"componentBased":false},{"name":"minecraft:slime_ball","id":414,"version":2,"componentBased":false},{"name":"minecraft:slime_spawn_egg","id":472,"version":2,"componentBased":false},{"name":"minecraft:small_amethyst_bud","id":-332,"version":2,"componentBased":false},{"name":"minecraft:small_dripleaf_block","id":-336,"version":2,"componentBased":false},{"name":"minecraft:smithing_table","id":-202,"version":2,"componentBased":false},{"name":"minecraft:smoker","id":-198,"version":2,"componentBased":false},{"name":"minecraft:smooth_basalt","id":-377,"version":2,"componentBased":false},{"name":"minecraft:smooth_quartz","id":-955,"version":2,"componentBased":false},{"name":"minecraft:smooth_quartz_double_slab","id":-925,"version":2,"componentBased":false},{"name":"minecraft:smooth_quartz_slab","id":-898,"version":2,"componentBased":false},{"name":"minecraft:smooth_quartz_stairs","id":-185,"version":2,"componentBased":false},{"name":"minecraft:smooth_red_sandstone","id":-958,"version":2,"componentBased":false},{"name":"minecraft:smooth_red_sandstone_double_slab","id":-918,"version":2,"componentBased":false},{"name":"minecraft:smooth_red_sandstone_slab","id":-891,"version":2,"componentBased":false},{"name":"minecraft:smooth_red_sandstone_stairs","id":-176,"version":2,"componentBased":false},{"name":"minecraft:smooth_sandstone","id":-946,"version":2,"componentBased":false},{"name":"minecraft:smooth_sandstone_double_slab","id":-916,"version":2,"componentBased":false},{"name":"minecraft:smooth_sandstone_slab","id":-889,"version":2,"componentBased":false},{"name":"minecraft:smooth_sandstone_stairs","id":-177,"version":2,"componentBased":false},{"name":"minecraft:smooth_stone","id":-183,"version":2,"componentBased":false},{"name":"minecraft:smooth_stone_double_slab","id":43,"version":2,"componentBased":false},{"name":"minecraft:smooth_stone_slab","id":44,"version":2,"componentBased":false},{"name":"minecraft:sniffer_egg","id":-596,"version":2,"componentBased":false},{"name":"minecraft:sniffer_spawn_egg","id":528,"version":2,"componentBased":false},{"name":"minecraft:snort_pottery_sherd","id":715,"version":2,"componentBased":false},{"name":"minecraft:snout_armor_trim_smithing_template","id":726,"version":2,"componentBased":false},{"name":"minecraft:snow","id":80,"version":2,"componentBased":false},{"name":"minecraft:snow_golem_spawn_egg","id":534,"version":2,"componentBased":false},{"name":"minecraft:snow_layer","id":78,"version":2,"componentBased":false},{"name":"minecraft:snowball","id":399,"version":2,"componentBased":true},{"name":"minecraft:soul_campfire","id":659,"version":2,"componentBased":true},{"name":"minecraft:soul_fire","id":-237,"version":2,"componentBased":false},{"name":"minecraft:soul_lantern","id":-269,"version":2,"componentBased":false},{"name":"minecraft:soul_sand","id":88,"version":2,"componentBased":false},{"name":"minecraft:soul_soil","id":-236,"version":2,"componentBased":false},{"name":"minecraft:soul_torch","id":-268,"version":2,"componentBased":false},{"name":"minecraft:sparkler","id":637,"version":2,"componentBased":false},{"name":"minecraft:spawn_egg","id":794,"version":2,"componentBased":false},{"name":"minecraft:spider_eye","id":300,"version":0,"componentBased":false},{"name":"minecraft:spider_spawn_egg","id":473,"version":2,"componentBased":false},{"name":"minecraft:spire_armor_trim_smithing_template","id":728,"version":2,"componentBased":false},{"name":"minecraft:splash_potion","id":594,"version":2,"componentBased":false},{"name":"minecraft:sponge","id":19,"version":2,"componentBased":false},{"name":"minecraft:spore_blossom","id":-321,"version":2,"componentBased":false},{"name":"minecraft:spruce_boat","id":404,"version":2,"componentBased":false},{"name":"minecraft:spruce_button","id":-144,"version":2,"componentBased":false},{"name":"minecraft:spruce_chest_boat","id":678,"version":2,"componentBased":false},{"name":"minecraft:spruce_door","id":586,"version":2,"componentBased":false},{"name":"minecraft:spruce_double_slab","id":-809,"version":2,"componentBased":false},{"name":"minecraft:spruce_fence","id":-579,"version":2,"componentBased":false},{"name":"minecraft:spruce_fence_gate","id":183,"version":2,"componentBased":false},{"name":"minecraft:spruce_hanging_sign","id":-501,"version":2,"componentBased":false},{"name":"minecraft:spruce_leaves","id":-800,"version":2,"componentBased":false},{"name":"minecraft:spruce_log","id":-569,"version":2,"componentBased":false},{"name":"minecraft:spruce_planks","id":-739,"version":2,"componentBased":false},{"name":"minecraft:spruce_pressure_plate","id":-154,"version":2,"componentBased":false},{"name":"minecraft:spruce_sapling","id":-825,"version":2,"componentBased":false},{"name":"minecraft:spruce_sign","id":609,"version":2,"componentBased":false},{"name":"minecraft:spruce_slab","id":-804,"version":2,"componentBased":false},{"name":"minecraft:spruce_stairs","id":134,"version":2,"componentBased":false},{"name":"minecraft:spruce_standing_sign","id":-181,"version":2,"componentBased":false},{"name":"minecraft:spruce_trapdoor","id":-149,"version":2,"componentBased":false},{"name":"minecraft:spruce_wall_sign","id":-182,"version":2,"componentBased":false},{"name":"minecraft:spruce_wood","id":-814,"version":2,"componentBased":false},{"name":"minecraft:spyglass","id":662,"version":2,"componentBased":false},{"name":"minecraft:squid_spawn_egg","id":477,"version":2,"componentBased":false},{"name":"minecraft:stained_glass","id":778,"version":2,"componentBased":false},{"name":"minecraft:stained_glass_pane","id":779,"version":2,"componentBased":false},{"name":"minecraft:stained_hardened_clay","id":738,"version":2,"componentBased":false},{"name":"minecraft:standing_banner","id":176,"version":2,"componentBased":false},{"name":"minecraft:standing_sign","id":63,"version":2,"componentBased":false},{"name":"minecraft:stick","id":345,"version":2,"componentBased":false},{"name":"minecraft:sticky_piston","id":29,"version":2,"componentBased":false},{"name":"minecraft:sticky_piston_arm_collision","id":-217,"version":2,"componentBased":false},{"name":"minecraft:stone","id":1,"version":2,"componentBased":false},{"name":"minecraft:stone_axe","id":339,"version":2,"componentBased":false},{"name":"minecraft:stone_block_slab","id":755,"version":2,"componentBased":false},{"name":"minecraft:stone_block_slab2","id":756,"version":2,"componentBased":false},{"name":"minecraft:stone_block_slab3","id":757,"version":2,"componentBased":false},{"name":"minecraft:stone_block_slab4","id":758,"version":2,"componentBased":false},{"name":"minecraft:stone_brick_double_slab","id":-881,"version":2,"componentBased":false},{"name":"minecraft:stone_brick_slab","id":-875,"version":2,"componentBased":false},{"name":"minecraft:stone_brick_stairs","id":109,"version":2,"componentBased":false},{"name":"minecraft:stone_brick_wall","id":-977,"version":2,"componentBased":false},{"name":"minecraft:stone_bricks","id":98,"version":2,"componentBased":false},{"name":"minecraft:stone_button","id":77,"version":2,"componentBased":false},{"name":"minecraft:stone_hoe","id":355,"version":2,"componentBased":false},{"name":"minecraft:stone_pickaxe","id":338,"version":2,"componentBased":false},{"name":"minecraft:stone_pressure_plate","id":70,"version":2,"componentBased":false},{"name":"minecraft:stone_shovel","id":337,"version":2,"componentBased":false},{"name":"minecraft:stone_stairs","id":67,"version":2,"componentBased":false},{"name":"minecraft:stone_sword","id":336,"version":2,"componentBased":false},{"name":"minecraft:stonebrick","id":753,"version":2,"componentBased":false},{"name":"minecraft:stonecutter","id":245,"version":2,"componentBased":false},{"name":"minecraft:stonecutter_block","id":-197,"version":2,"componentBased":false},{"name":"minecraft:stray_spawn_egg","id":489,"version":2,"componentBased":false},{"name":"minecraft:strider_spawn_egg","id":523,"version":2,"componentBased":false},{"name":"minecraft:string","id":351,"version":2,"componentBased":true},{"name":"minecraft:stripped_acacia_log","id":-8,"version":2,"componentBased":false},{"name":"minecraft:stripped_acacia_wood","id":-823,"version":2,"componentBased":false},{"name":"minecraft:stripped_bamboo_block","id":-528,"version":2,"componentBased":false},{"name":"minecraft:stripped_birch_log","id":-6,"version":2,"componentBased":false},{"name":"minecraft:stripped_birch_wood","id":-821,"version":2,"componentBased":false},{"name":"minecraft:stripped_cherry_log","id":-535,"version":2,"componentBased":false},{"name":"minecraft:stripped_cherry_wood","id":-545,"version":2,"componentBased":false},{"name":"minecraft:stripped_crimson_hyphae","id":-300,"version":2,"componentBased":false},{"name":"minecraft:stripped_crimson_stem","id":-240,"version":2,"componentBased":false},{"name":"minecraft:stripped_dark_oak_log","id":-9,"version":2,"componentBased":false},{"name":"minecraft:stripped_dark_oak_wood","id":-824,"version":2,"componentBased":false},{"name":"minecraft:stripped_jungle_log","id":-7,"version":2,"componentBased":false},{"name":"minecraft:stripped_jungle_wood","id":-822,"version":2,"componentBased":false},{"name":"minecraft:stripped_mangrove_log","id":-485,"version":2,"componentBased":false},{"name":"minecraft:stripped_mangrove_wood","id":-498,"version":2,"componentBased":false},{"name":"minecraft:stripped_oak_log","id":-10,"version":2,"componentBased":false},{"name":"minecraft:stripped_oak_wood","id":-819,"version":2,"componentBased":false},{"name":"minecraft:stripped_pale_oak_log","id":-994,"version":2,"componentBased":false},{"name":"minecraft:stripped_pale_oak_wood","id":-1004,"version":2,"componentBased":false},{"name":"minecraft:stripped_spruce_log","id":-5,"version":2,"componentBased":false},{"name":"minecraft:stripped_spruce_wood","id":-820,"version":2,"componentBased":false},{"name":"minecraft:stripped_warped_hyphae","id":-301,"version":2,"componentBased":false},{"name":"minecraft:stripped_warped_stem","id":-241,"version":2,"componentBased":false},{"name":"minecraft:structure_block","id":252,"version":2,"componentBased":false},{"name":"minecraft:structure_void","id":217,"version":2,"componentBased":false},{"name":"minecraft:sugar","id":442,"version":2,"componentBased":false},{"name":"minecraft:sugar_cane","id":411,"version":2,"componentBased":true},{"name":"minecraft:sunflower","id":175,"version":2,"componentBased":false},{"name":"minecraft:suspicious_gravel","id":-573,"version":2,"componentBased":false},{"name":"minecraft:suspicious_sand","id":-529,"version":2,"componentBased":false},{"name":"minecraft:suspicious_stew","id":625,"version":0,"componentBased":false},{"name":"minecraft:sweet_berries","id":309,"version":0,"componentBased":false},{"name":"minecraft:sweet_berry_bush","id":-207,"version":2,"componentBased":false},{"name":"minecraft:tadpole_bucket","id":667,"version":2,"componentBased":false},{"name":"minecraft:tadpole_spawn_egg","id":666,"version":2,"componentBased":false},{"name":"minecraft:tall_grass","id":-864,"version":2,"componentBased":false},{"name":"minecraft:tallgrass","id":773,"version":2,"componentBased":false},{"name":"minecraft:target","id":-239,"version":2,"componentBased":false},{"name":"minecraft:tide_armor_trim_smithing_template","id":725,"version":2,"componentBased":false},{"name":"minecraft:tinted_glass","id":-334,"version":2,"componentBased":false},{"name":"minecraft:tnt","id":46,"version":2,"componentBased":false},{"name":"minecraft:tnt_minecart","id":558,"version":2,"componentBased":false},{"name":"minecraft:torch","id":50,"version":2,"componentBased":false},{"name":"minecraft:torchflower","id":-568,"version":2,"componentBased":false},{"name":"minecraft:torchflower_crop","id":-567,"version":2,"componentBased":false},{"name":"minecraft:torchflower_seeds","id":318,"version":0,"componentBased":false},{"name":"minecraft:totem_of_undying","id":601,"version":2,"componentBased":false},{"name":"minecraft:trader_llama_spawn_egg","id":685,"version":2,"componentBased":false},{"name":"minecraft:trapdoor","id":96,"version":2,"componentBased":false},{"name":"minecraft:trapped_chest","id":146,"version":2,"componentBased":false},{"name":"minecraft:trial_key","id":276,"version":1,"componentBased":true},{"name":"minecraft:trial_spawner","id":-315,"version":2,"componentBased":false},{"name":"minecraft:trident","id":579,"version":2,"componentBased":false},{"name":"minecraft:trip_wire","id":132,"version":2,"componentBased":false},{"name":"minecraft:tripwire_hook","id":131,"version":2,"componentBased":false},{"name":"minecraft:tropical_fish","id":288,"version":0,"componentBased":false},{"name":"minecraft:tropical_fish_bucket","id":391,"version":2,"componentBased":false},{"name":"minecraft:tropical_fish_spawn_egg","id":507,"version":2,"componentBased":false},{"name":"minecraft:tube_coral","id":-131,"version":2,"componentBased":false},{"name":"minecraft:tube_coral_block","id":-132,"version":2,"componentBased":false},{"name":"minecraft:tube_coral_fan","id":-133,"version":2,"componentBased":false},{"name":"minecraft:tube_coral_wall_fan","id":-135,"version":2,"componentBased":false},{"name":"minecraft:tuff","id":-333,"version":2,"componentBased":false},{"name":"minecraft:tuff_brick_double_slab","id":-756,"version":2,"componentBased":false},{"name":"minecraft:tuff_brick_slab","id":-755,"version":2,"componentBased":false},{"name":"minecraft:tuff_brick_stairs","id":-757,"version":2,"componentBased":false},{"name":"minecraft:tuff_brick_wall","id":-758,"version":2,"componentBased":false},{"name":"minecraft:tuff_bricks","id":-754,"version":2,"componentBased":false},{"name":"minecraft:tuff_double_slab","id":-745,"version":2,"componentBased":false},{"name":"minecraft:tuff_slab","id":-744,"version":2,"componentBased":false},{"name":"minecraft:tuff_stairs","id":-746,"version":2,"componentBased":false},{"name":"minecraft:tuff_wall","id":-747,"version":2,"componentBased":false},{"name":"minecraft:turtle_egg","id":-159,"version":2,"componentBased":false},{"name":"minecraft:turtle_helmet","id":606,"version":2,"componentBased":false},{"name":"minecraft:turtle_scute","id":605,"version":2,"componentBased":false},{"name":"minecraft:turtle_spawn_egg","id":513,"version":2,"componentBased":false},{"name":"minecraft:twisting_vines","id":-287,"version":2,"componentBased":false},{"name":"minecraft:underwater_tnt","id":-985,"version":2,"componentBased":false},{"name":"minecraft:underwater_torch","id":239,"version":2,"componentBased":false},{"name":"minecraft:undyed_shulker_box","id":205,"version":2,"componentBased":false},{"name":"minecraft:unknown","id":-305,"version":2,"componentBased":false},{"name":"minecraft:unlit_redstone_torch","id":75,"version":2,"componentBased":false},{"name":"minecraft:unpowered_comparator","id":149,"version":2,"componentBased":false},{"name":"minecraft:unpowered_repeater","id":93,"version":2,"componentBased":false},{"name":"minecraft:vault","id":-314,"version":2,"componentBased":false},{"name":"minecraft:verdant_froglight","id":-470,"version":2,"componentBased":false},{"name":"minecraft:vex_armor_trim_smithing_template","id":724,"version":2,"componentBased":false},{"name":"minecraft:vex_spawn_egg","id":504,"version":2,"componentBased":false},{"name":"minecraft:villager_spawn_egg","id":476,"version":2,"componentBased":false},{"name":"minecraft:vindicator_spawn_egg","id":502,"version":2,"componentBased":false},{"name":"minecraft:vine","id":106,"version":2,"componentBased":false},{"name":"minecraft:wall_banner","id":177,"version":2,"componentBased":false},{"name":"minecraft:wall_sign","id":68,"version":2,"componentBased":false},{"name":"minecraft:wandering_trader_spawn_egg","id":520,"version":2,"componentBased":false},{"name":"minecraft:ward_armor_trim_smithing_template","id":722,"version":2,"componentBased":false},{"name":"minecraft:warden_spawn_egg","id":669,"version":2,"componentBased":false},{"name":"minecraft:warped_button","id":-261,"version":2,"componentBased":false},{"name":"minecraft:warped_door","id":654,"version":2,"componentBased":false},{"name":"minecraft:warped_double_slab","id":-267,"version":2,"componentBased":false},{"name":"minecraft:warped_fence","id":-257,"version":2,"componentBased":false},{"name":"minecraft:warped_fence_gate","id":-259,"version":2,"componentBased":false},{"name":"minecraft:warped_fungus","id":-229,"version":2,"componentBased":false},{"name":"minecraft:warped_fungus_on_a_stick","id":655,"version":2,"componentBased":true},{"name":"minecraft:warped_hanging_sign","id":-507,"version":2,"componentBased":false},{"name":"minecraft:warped_hyphae","id":-298,"version":2,"componentBased":false},{"name":"minecraft:warped_nylium","id":-233,"version":2,"componentBased":false},{"name":"minecraft:warped_planks","id":-243,"version":2,"componentBased":false},{"name":"minecraft:warped_pressure_plate","id":-263,"version":2,"componentBased":false},{"name":"minecraft:warped_roots","id":-224,"version":2,"componentBased":false},{"name":"minecraft:warped_sign","id":652,"version":2,"componentBased":false},{"name":"minecraft:warped_slab","id":-265,"version":2,"componentBased":false},{"name":"minecraft:warped_stairs","id":-255,"version":2,"componentBased":false},{"name":"minecraft:warped_standing_sign","id":-251,"version":2,"componentBased":false},{"name":"minecraft:warped_stem","id":-226,"version":2,"componentBased":false},{"name":"minecraft:warped_trapdoor","id":-247,"version":2,"componentBased":false},{"name":"minecraft:warped_wall_sign","id":-253,"version":2,"componentBased":false},{"name":"minecraft:warped_wart_block","id":-227,"version":2,"componentBased":false},{"name":"minecraft:water","id":9,"version":2,"componentBased":false},{"name":"minecraft:water_bucket","id":387,"version":2,"componentBased":false},{"name":"minecraft:waterlily","id":111,"version":2,"componentBased":false},{"name":"minecraft:waxed_chiseled_copper","id":-764,"version":2,"componentBased":false},{"name":"minecraft:waxed_copper","id":-344,"version":2,"componentBased":false},{"name":"minecraft:waxed_copper_bulb","id":-780,"version":2,"componentBased":false},{"name":"minecraft:waxed_copper_door","id":-788,"version":2,"componentBased":false},{"name":"minecraft:waxed_copper_grate","id":-772,"version":2,"componentBased":false},{"name":"minecraft:waxed_copper_trapdoor","id":-796,"version":2,"componentBased":false},{"name":"minecraft:waxed_cut_copper","id":-351,"version":2,"componentBased":false},{"name":"minecraft:waxed_cut_copper_slab","id":-365,"version":2,"componentBased":false},{"name":"minecraft:waxed_cut_copper_stairs","id":-358,"version":2,"componentBased":false},{"name":"minecraft:waxed_double_cut_copper_slab","id":-372,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_chiseled_copper","id":-765,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_copper","id":-345,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_copper_bulb","id":-781,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_copper_door","id":-789,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_copper_grate","id":-773,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_copper_trapdoor","id":-797,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_cut_copper","id":-352,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_cut_copper_slab","id":-366,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_cut_copper_stairs","id":-359,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_double_cut_copper_slab","id":-373,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_chiseled_copper","id":-766,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_copper","id":-446,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_copper_bulb","id":-783,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_copper_door","id":-791,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_copper_grate","id":-775,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_copper_trapdoor","id":-799,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_cut_copper","id":-447,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_cut_copper_slab","id":-449,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_cut_copper_stairs","id":-448,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_double_cut_copper_slab","id":-450,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_chiseled_copper","id":-767,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_copper","id":-346,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_copper_bulb","id":-782,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_copper_door","id":-790,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_copper_grate","id":-774,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_copper_trapdoor","id":-798,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_cut_copper","id":-353,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_cut_copper_slab","id":-367,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_cut_copper_stairs","id":-360,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_double_cut_copper_slab","id":-374,"version":2,"componentBased":false},{"name":"minecraft:wayfinder_armor_trim_smithing_template","id":730,"version":2,"componentBased":false},{"name":"minecraft:weathered_chiseled_copper","id":-762,"version":2,"componentBased":false},{"name":"minecraft:weathered_copper","id":-342,"version":2,"componentBased":false},{"name":"minecraft:weathered_copper_bulb","id":-778,"version":2,"componentBased":false},{"name":"minecraft:weathered_copper_door","id":-786,"version":2,"componentBased":false},{"name":"minecraft:weathered_copper_grate","id":-770,"version":2,"componentBased":false},{"name":"minecraft:weathered_copper_trapdoor","id":-794,"version":2,"componentBased":false},{"name":"minecraft:weathered_cut_copper","id":-349,"version":2,"componentBased":false},{"name":"minecraft:weathered_cut_copper_slab","id":-363,"version":2,"componentBased":false},{"name":"minecraft:weathered_cut_copper_stairs","id":-356,"version":2,"componentBased":false},{"name":"minecraft:weathered_double_cut_copper_slab","id":-370,"version":2,"componentBased":false},{"name":"minecraft:web","id":30,"version":2,"componentBased":false},{"name":"minecraft:weeping_vines","id":-231,"version":2,"componentBased":false},{"name":"minecraft:wet_sponge","id":-984,"version":2,"componentBased":false},{"name":"minecraft:wheat","id":359,"version":2,"componentBased":false},{"name":"minecraft:wheat_seeds","id":313,"version":0,"componentBased":false},{"name":"minecraft:white_bundle","id":272,"version":1,"componentBased":true},{"name":"minecraft:white_candle","id":-413,"version":2,"componentBased":false},{"name":"minecraft:white_candle_cake","id":-430,"version":2,"componentBased":false},{"name":"minecraft:white_carpet","id":171,"version":2,"componentBased":false},{"name":"minecraft:white_concrete","id":236,"version":2,"componentBased":false},{"name":"minecraft:white_concrete_powder","id":237,"version":2,"componentBased":false},{"name":"minecraft:white_dye","id":436,"version":2,"componentBased":false},{"name":"minecraft:white_glazed_terracotta","id":220,"version":2,"componentBased":false},{"name":"minecraft:white_shulker_box","id":218,"version":2,"componentBased":false},{"name":"minecraft:white_stained_glass","id":241,"version":2,"componentBased":false},{"name":"minecraft:white_stained_glass_pane","id":160,"version":2,"componentBased":false},{"name":"minecraft:white_terracotta","id":159,"version":2,"componentBased":false},{"name":"minecraft:white_tulip","id":-835,"version":2,"componentBased":false},{"name":"minecraft:white_wool","id":35,"version":2,"componentBased":false},{"name":"minecraft:wild_armor_trim_smithing_template","id":721,"version":2,"componentBased":false},{"name":"minecraft:wind_charge","id":277,"version":1,"componentBased":true},{"name":"minecraft:witch_spawn_egg","id":479,"version":2,"componentBased":false},{"name":"minecraft:wither_rose","id":-216,"version":2,"componentBased":false},{"name":"minecraft:wither_skeleton_skull","id":-965,"version":2,"componentBased":false},{"name":"minecraft:wither_skeleton_spawn_egg","id":492,"version":2,"componentBased":false},{"name":"minecraft:wither_spawn_egg","id":536,"version":2,"componentBased":false},{"name":"minecraft:wolf_armor","id":741,"version":2,"componentBased":true},{"name":"minecraft:wolf_spawn_egg","id":466,"version":2,"componentBased":false},{"name":"minecraft:wood","id":781,"version":2,"componentBased":false},{"name":"minecraft:wooden_axe","id":335,"version":2,"componentBased":false},{"name":"minecraft:wooden_button","id":143,"version":2,"componentBased":false},{"name":"minecraft:wooden_door","id":384,"version":2,"componentBased":false},{"name":"minecraft:wooden_hoe","id":354,"version":2,"componentBased":false},{"name":"minecraft:wooden_pickaxe","id":334,"version":2,"componentBased":false},{"name":"minecraft:wooden_pressure_plate","id":72,"version":2,"componentBased":false},{"name":"minecraft:wooden_shovel","id":333,"version":2,"componentBased":false},{"name":"minecraft:wooden_slab","id":768,"version":2,"componentBased":false},{"name":"minecraft:wooden_sword","id":332,"version":2,"componentBased":false},{"name":"minecraft:wool","id":749,"version":2,"componentBased":false},{"name":"minecraft:writable_book","id":544,"version":2,"componentBased":false},{"name":"minecraft:written_book","id":545,"version":2,"componentBased":false},{"name":"minecraft:yellow_bundle","id":273,"version":1,"componentBased":true},{"name":"minecraft:yellow_candle","id":-417,"version":2,"componentBased":false},{"name":"minecraft:yellow_candle_cake","id":-434,"version":2,"componentBased":false},{"name":"minecraft:yellow_carpet","id":-600,"version":2,"componentBased":false},{"name":"minecraft:yellow_concrete","id":-631,"version":2,"componentBased":false},{"name":"minecraft:yellow_concrete_powder","id":-712,"version":2,"componentBased":false},{"name":"minecraft:yellow_dye","id":432,"version":2,"componentBased":false},{"name":"minecraft:yellow_glazed_terracotta","id":224,"version":2,"componentBased":false},{"name":"minecraft:yellow_shulker_box","id":-616,"version":2,"componentBased":false},{"name":"minecraft:yellow_stained_glass","id":-676,"version":2,"componentBased":false},{"name":"minecraft:yellow_stained_glass_pane","id":-646,"version":2,"componentBased":false},{"name":"minecraft:yellow_terracotta","id":-727,"version":2,"componentBased":false},{"name":"minecraft:yellow_wool","id":-558,"version":2,"componentBased":false},{"name":"minecraft:zoglin_spawn_egg","id":526,"version":2,"componentBased":false},{"name":"minecraft:zombie_head","id":-966,"version":2,"componentBased":false},{"name":"minecraft:zombie_horse_spawn_egg","id":496,"version":2,"componentBased":false},{"name":"minecraft:zombie_pigman_spawn_egg","id":475,"version":2,"componentBased":false},{"name":"minecraft:zombie_spawn_egg","id":474,"version":2,"componentBased":false},{"name":"minecraft:zombie_villager_spawn_egg","id":505,"version":2,"componentBased":false}] \ No newline at end of file +[{"name":"minecraft:acacia_boat","id":405,"version":2,"componentBased":false},{"name":"minecraft:acacia_button","id":-140,"version":2,"componentBased":false},{"name":"minecraft:acacia_chest_boat","id":679,"version":2,"componentBased":false},{"name":"minecraft:acacia_door","id":589,"version":2,"componentBased":false},{"name":"minecraft:acacia_double_slab","id":-812,"version":2,"componentBased":false},{"name":"minecraft:acacia_fence","id":-575,"version":2,"componentBased":false},{"name":"minecraft:acacia_fence_gate","id":187,"version":2,"componentBased":false},{"name":"minecraft:acacia_hanging_sign","id":-504,"version":2,"componentBased":false},{"name":"minecraft:acacia_leaves","id":161,"version":2,"componentBased":false},{"name":"minecraft:acacia_log","id":162,"version":2,"componentBased":false},{"name":"minecraft:acacia_planks","id":-742,"version":2,"componentBased":false},{"name":"minecraft:acacia_pressure_plate","id":-150,"version":2,"componentBased":false},{"name":"minecraft:acacia_sapling","id":-828,"version":2,"componentBased":false},{"name":"minecraft:acacia_sign","id":612,"version":2,"componentBased":false},{"name":"minecraft:acacia_slab","id":-807,"version":2,"componentBased":false},{"name":"minecraft:acacia_stairs","id":163,"version":2,"componentBased":false},{"name":"minecraft:acacia_standing_sign","id":-190,"version":2,"componentBased":false},{"name":"minecraft:acacia_trapdoor","id":-145,"version":2,"componentBased":false},{"name":"minecraft:acacia_wall_sign","id":-191,"version":2,"componentBased":false},{"name":"minecraft:acacia_wood","id":-817,"version":2,"componentBased":false},{"name":"minecraft:activator_rail","id":126,"version":2,"componentBased":false},{"name":"minecraft:agent_spawn_egg","id":515,"version":2,"componentBased":false},{"name":"minecraft:air","id":-158,"version":2,"componentBased":false},{"name":"minecraft:allay_spawn_egg","id":668,"version":2,"componentBased":false},{"name":"minecraft:allium","id":-831,"version":2,"componentBased":false},{"name":"minecraft:allow","id":210,"version":2,"componentBased":false},{"name":"minecraft:amethyst_block","id":-327,"version":2,"componentBased":false},{"name":"minecraft:amethyst_cluster","id":-329,"version":2,"componentBased":false},{"name":"minecraft:amethyst_shard","id":661,"version":2,"componentBased":false},{"name":"minecraft:ancient_debris","id":-271,"version":2,"componentBased":false},{"name":"minecraft:andesite","id":-594,"version":2,"componentBased":false},{"name":"minecraft:andesite_double_slab","id":-920,"version":2,"componentBased":false},{"name":"minecraft:andesite_slab","id":-893,"version":2,"componentBased":false},{"name":"minecraft:andesite_stairs","id":-171,"version":2,"componentBased":false},{"name":"minecraft:andesite_wall","id":-974,"version":2,"componentBased":false},{"name":"minecraft:angler_pottery_sherd","id":693,"version":2,"componentBased":false},{"name":"minecraft:anvil","id":145,"version":2,"componentBased":false},{"name":"minecraft:apple","id":278,"version":1,"componentBased":true},{"name":"minecraft:archer_pottery_sherd","id":694,"version":2,"componentBased":false},{"name":"minecraft:armadillo_scute","id":740,"version":2,"componentBased":false},{"name":"minecraft:armadillo_spawn_egg","id":739,"version":2,"componentBased":false},{"name":"minecraft:armor_stand","id":585,"version":2,"componentBased":false},{"name":"minecraft:arms_up_pottery_sherd","id":695,"version":2,"componentBased":false},{"name":"minecraft:arrow","id":325,"version":2,"componentBased":true},{"name":"minecraft:axolotl_bucket","id":394,"version":2,"componentBased":false},{"name":"minecraft:axolotl_spawn_egg","id":530,"version":2,"componentBased":false},{"name":"minecraft:azalea","id":-337,"version":2,"componentBased":false},{"name":"minecraft:azalea_leaves","id":-324,"version":2,"componentBased":false},{"name":"minecraft:azalea_leaves_flowered","id":-325,"version":2,"componentBased":false},{"name":"minecraft:azure_bluet","id":-832,"version":2,"componentBased":false},{"name":"minecraft:baked_potato","id":303,"version":0,"componentBased":false},{"name":"minecraft:balloon","id":635,"version":2,"componentBased":false},{"name":"minecraft:bamboo","id":-163,"version":2,"componentBased":false},{"name":"minecraft:bamboo_block","id":-527,"version":2,"componentBased":false},{"name":"minecraft:bamboo_button","id":-511,"version":2,"componentBased":false},{"name":"minecraft:bamboo_chest_raft","id":691,"version":2,"componentBased":false},{"name":"minecraft:bamboo_door","id":-517,"version":2,"componentBased":false},{"name":"minecraft:bamboo_double_slab","id":-521,"version":2,"componentBased":false},{"name":"minecraft:bamboo_fence","id":-515,"version":2,"componentBased":false},{"name":"minecraft:bamboo_fence_gate","id":-516,"version":2,"componentBased":false},{"name":"minecraft:bamboo_hanging_sign","id":-522,"version":2,"componentBased":false},{"name":"minecraft:bamboo_mosaic","id":-509,"version":2,"componentBased":false},{"name":"minecraft:bamboo_mosaic_double_slab","id":-525,"version":2,"componentBased":false},{"name":"minecraft:bamboo_mosaic_slab","id":-524,"version":2,"componentBased":false},{"name":"minecraft:bamboo_mosaic_stairs","id":-523,"version":2,"componentBased":false},{"name":"minecraft:bamboo_planks","id":-510,"version":2,"componentBased":false},{"name":"minecraft:bamboo_pressure_plate","id":-514,"version":2,"componentBased":false},{"name":"minecraft:bamboo_raft","id":690,"version":2,"componentBased":false},{"name":"minecraft:bamboo_sapling","id":-164,"version":2,"componentBased":false},{"name":"minecraft:bamboo_sign","id":689,"version":2,"componentBased":false},{"name":"minecraft:bamboo_slab","id":-513,"version":2,"componentBased":false},{"name":"minecraft:bamboo_stairs","id":-512,"version":2,"componentBased":false},{"name":"minecraft:bamboo_standing_sign","id":-518,"version":2,"componentBased":false},{"name":"minecraft:bamboo_trapdoor","id":-520,"version":2,"componentBased":false},{"name":"minecraft:bamboo_wall_sign","id":-519,"version":2,"componentBased":false},{"name":"minecraft:banner","id":600,"version":2,"componentBased":false},{"name":"minecraft:banner_pattern","id":795,"version":2,"componentBased":false},{"name":"minecraft:barrel","id":-203,"version":2,"componentBased":false},{"name":"minecraft:barrier","id":-161,"version":2,"componentBased":false},{"name":"minecraft:basalt","id":-234,"version":2,"componentBased":false},{"name":"minecraft:bat_spawn_egg","id":480,"version":2,"componentBased":false},{"name":"minecraft:beacon","id":138,"version":2,"componentBased":false},{"name":"minecraft:bed","id":444,"version":2,"componentBased":false},{"name":"minecraft:bedrock","id":7,"version":2,"componentBased":false},{"name":"minecraft:bee_nest","id":-218,"version":2,"componentBased":false},{"name":"minecraft:bee_spawn_egg","id":522,"version":2,"componentBased":false},{"name":"minecraft:beef","id":295,"version":0,"componentBased":false},{"name":"minecraft:beehive","id":-219,"version":2,"componentBased":false},{"name":"minecraft:beetroot","id":307,"version":0,"componentBased":false},{"name":"minecraft:beetroot_seeds","id":317,"version":0,"componentBased":false},{"name":"minecraft:beetroot_soup","id":308,"version":0,"componentBased":false},{"name":"minecraft:bell","id":-206,"version":2,"componentBased":false},{"name":"minecraft:big_dripleaf","id":-323,"version":2,"componentBased":false},{"name":"minecraft:birch_boat","id":402,"version":2,"componentBased":false},{"name":"minecraft:birch_button","id":-141,"version":2,"componentBased":false},{"name":"minecraft:birch_chest_boat","id":676,"version":2,"componentBased":false},{"name":"minecraft:birch_door","id":587,"version":2,"componentBased":false},{"name":"minecraft:birch_double_slab","id":-810,"version":2,"componentBased":false},{"name":"minecraft:birch_fence","id":-576,"version":2,"componentBased":false},{"name":"minecraft:birch_fence_gate","id":184,"version":2,"componentBased":false},{"name":"minecraft:birch_hanging_sign","id":-502,"version":2,"componentBased":false},{"name":"minecraft:birch_leaves","id":-801,"version":2,"componentBased":false},{"name":"minecraft:birch_log","id":-570,"version":2,"componentBased":false},{"name":"minecraft:birch_planks","id":-740,"version":2,"componentBased":false},{"name":"minecraft:birch_pressure_plate","id":-151,"version":2,"componentBased":false},{"name":"minecraft:birch_sapling","id":-826,"version":2,"componentBased":false},{"name":"minecraft:birch_sign","id":610,"version":2,"componentBased":false},{"name":"minecraft:birch_slab","id":-805,"version":2,"componentBased":false},{"name":"minecraft:birch_stairs","id":135,"version":2,"componentBased":false},{"name":"minecraft:birch_standing_sign","id":-186,"version":2,"componentBased":false},{"name":"minecraft:birch_trapdoor","id":-146,"version":2,"componentBased":false},{"name":"minecraft:birch_wall_sign","id":-187,"version":2,"componentBased":false},{"name":"minecraft:birch_wood","id":-815,"version":2,"componentBased":false},{"name":"minecraft:black_bundle","id":257,"version":1,"componentBased":true},{"name":"minecraft:black_candle","id":-428,"version":2,"componentBased":false},{"name":"minecraft:black_candle_cake","id":-445,"version":2,"componentBased":false},{"name":"minecraft:black_carpet","id":-611,"version":2,"componentBased":false},{"name":"minecraft:black_concrete","id":-642,"version":2,"componentBased":false},{"name":"minecraft:black_concrete_powder","id":-723,"version":2,"componentBased":false},{"name":"minecraft:black_dye","id":421,"version":2,"componentBased":false},{"name":"minecraft:black_glazed_terracotta","id":235,"version":2,"componentBased":false},{"name":"minecraft:black_shulker_box","id":-627,"version":2,"componentBased":false},{"name":"minecraft:black_stained_glass","id":-687,"version":2,"componentBased":false},{"name":"minecraft:black_stained_glass_pane","id":-657,"version":2,"componentBased":false},{"name":"minecraft:black_terracotta","id":-738,"version":2,"componentBased":false},{"name":"minecraft:black_wool","id":-554,"version":2,"componentBased":false},{"name":"minecraft:blackstone","id":-273,"version":2,"componentBased":false},{"name":"minecraft:blackstone_double_slab","id":-283,"version":2,"componentBased":false},{"name":"minecraft:blackstone_slab","id":-282,"version":2,"componentBased":false},{"name":"minecraft:blackstone_stairs","id":-276,"version":2,"componentBased":false},{"name":"minecraft:blackstone_wall","id":-277,"version":2,"componentBased":false},{"name":"minecraft:blade_pottery_sherd","id":696,"version":2,"componentBased":false},{"name":"minecraft:blast_furnace","id":-196,"version":2,"componentBased":false},{"name":"minecraft:blaze_powder","id":456,"version":2,"componentBased":false},{"name":"minecraft:blaze_rod","id":449,"version":2,"componentBased":false},{"name":"minecraft:blaze_spawn_egg","id":483,"version":2,"componentBased":false},{"name":"minecraft:bleach","id":633,"version":2,"componentBased":false},{"name":"minecraft:blue_bundle","id":258,"version":1,"componentBased":true},{"name":"minecraft:blue_candle","id":-424,"version":2,"componentBased":false},{"name":"minecraft:blue_candle_cake","id":-441,"version":2,"componentBased":false},{"name":"minecraft:blue_carpet","id":-607,"version":2,"componentBased":false},{"name":"minecraft:blue_concrete","id":-638,"version":2,"componentBased":false},{"name":"minecraft:blue_concrete_powder","id":-719,"version":2,"componentBased":false},{"name":"minecraft:blue_dye","id":425,"version":2,"componentBased":false},{"name":"minecraft:blue_egg","id":749,"version":2,"componentBased":false},{"name":"minecraft:blue_glazed_terracotta","id":231,"version":2,"componentBased":false},{"name":"minecraft:blue_ice","id":-11,"version":2,"componentBased":false},{"name":"minecraft:blue_orchid","id":-830,"version":2,"componentBased":false},{"name":"minecraft:blue_shulker_box","id":-623,"version":2,"componentBased":false},{"name":"minecraft:blue_stained_glass","id":-683,"version":2,"componentBased":false},{"name":"minecraft:blue_stained_glass_pane","id":-653,"version":2,"componentBased":false},{"name":"minecraft:blue_terracotta","id":-734,"version":2,"componentBased":false},{"name":"minecraft:blue_wool","id":-563,"version":2,"componentBased":false},{"name":"minecraft:board","id":629,"version":2,"componentBased":false},{"name":"minecraft:boat","id":793,"version":2,"componentBased":false},{"name":"minecraft:bogged_spawn_egg","id":490,"version":2,"componentBased":false},{"name":"minecraft:bolt_armor_trim_smithing_template","id":735,"version":2,"componentBased":false},{"name":"minecraft:bone","id":441,"version":2,"componentBased":false},{"name":"minecraft:bone_block","id":216,"version":2,"componentBased":false},{"name":"minecraft:bone_meal","id":437,"version":2,"componentBased":false},{"name":"minecraft:book","id":413,"version":2,"componentBased":false},{"name":"minecraft:bookshelf","id":47,"version":2,"componentBased":false},{"name":"minecraft:border_block","id":212,"version":2,"componentBased":false},{"name":"minecraft:bordure_indented_banner_pattern","id":619,"version":2,"componentBased":false},{"name":"minecraft:bow","id":324,"version":2,"componentBased":false},{"name":"minecraft:bowl","id":346,"version":2,"componentBased":false},{"name":"minecraft:brain_coral","id":-581,"version":2,"componentBased":false},{"name":"minecraft:brain_coral_block","id":-849,"version":2,"componentBased":false},{"name":"minecraft:brain_coral_fan","id":-840,"version":2,"componentBased":false},{"name":"minecraft:brain_coral_wall_fan","id":-904,"version":2,"componentBased":false},{"name":"minecraft:bread","id":283,"version":0,"componentBased":false},{"name":"minecraft:breeze_rod","id":274,"version":1,"componentBased":true},{"name":"minecraft:breeze_spawn_egg","id":529,"version":2,"componentBased":false},{"name":"minecraft:brewer_pottery_sherd","id":697,"version":2,"componentBased":false},{"name":"minecraft:brewing_stand","id":458,"version":2,"componentBased":true},{"name":"minecraft:brick","id":409,"version":2,"componentBased":false},{"name":"minecraft:brick_block","id":45,"version":2,"componentBased":false},{"name":"minecraft:brick_double_slab","id":-880,"version":2,"componentBased":false},{"name":"minecraft:brick_slab","id":-874,"version":2,"componentBased":false},{"name":"minecraft:brick_stairs","id":108,"version":2,"componentBased":false},{"name":"minecraft:brick_wall","id":-976,"version":2,"componentBased":false},{"name":"minecraft:brown_bundle","id":259,"version":1,"componentBased":true},{"name":"minecraft:brown_candle","id":-425,"version":2,"componentBased":false},{"name":"minecraft:brown_candle_cake","id":-442,"version":2,"componentBased":false},{"name":"minecraft:brown_carpet","id":-608,"version":2,"componentBased":false},{"name":"minecraft:brown_concrete","id":-639,"version":2,"componentBased":false},{"name":"minecraft:brown_concrete_powder","id":-720,"version":2,"componentBased":false},{"name":"minecraft:brown_dye","id":424,"version":2,"componentBased":false},{"name":"minecraft:brown_egg","id":750,"version":2,"componentBased":false},{"name":"minecraft:brown_glazed_terracotta","id":232,"version":2,"componentBased":false},{"name":"minecraft:brown_mushroom","id":39,"version":2,"componentBased":false},{"name":"minecraft:brown_mushroom_block","id":99,"version":2,"componentBased":false},{"name":"minecraft:brown_shulker_box","id":-624,"version":2,"componentBased":false},{"name":"minecraft:brown_stained_glass","id":-684,"version":2,"componentBased":false},{"name":"minecraft:brown_stained_glass_pane","id":-654,"version":2,"componentBased":false},{"name":"minecraft:brown_terracotta","id":-735,"version":2,"componentBased":false},{"name":"minecraft:brown_wool","id":-555,"version":2,"componentBased":false},{"name":"minecraft:brush","id":716,"version":2,"componentBased":false},{"name":"minecraft:bubble_column","id":-160,"version":2,"componentBased":false},{"name":"minecraft:bubble_coral","id":-582,"version":2,"componentBased":false},{"name":"minecraft:bubble_coral_block","id":-850,"version":2,"componentBased":false},{"name":"minecraft:bubble_coral_fan","id":-841,"version":2,"componentBased":false},{"name":"minecraft:bubble_coral_wall_fan","id":-136,"version":2,"componentBased":false},{"name":"minecraft:bucket","id":385,"version":2,"componentBased":false},{"name":"minecraft:budding_amethyst","id":-328,"version":2,"componentBased":false},{"name":"minecraft:bundle","id":260,"version":1,"componentBased":true},{"name":"minecraft:burn_pottery_sherd","id":698,"version":2,"componentBased":false},{"name":"minecraft:bush","id":-1023,"version":2,"componentBased":false},{"name":"minecraft:cactus","id":81,"version":2,"componentBased":false},{"name":"minecraft:cactus_flower","id":-1030,"version":2,"componentBased":false},{"name":"minecraft:cake","id":443,"version":2,"componentBased":true},{"name":"minecraft:calcite","id":-326,"version":2,"componentBased":false},{"name":"minecraft:calibrated_sculk_sensor","id":-580,"version":2,"componentBased":false},{"name":"minecraft:camel_spawn_egg","id":692,"version":2,"componentBased":false},{"name":"minecraft:camera","id":630,"version":0,"componentBased":false},{"name":"minecraft:campfire","id":624,"version":2,"componentBased":true},{"name":"minecraft:candle","id":-412,"version":2,"componentBased":false},{"name":"minecraft:candle_cake","id":-429,"version":2,"componentBased":false},{"name":"minecraft:carpet","id":752,"version":2,"componentBased":false},{"name":"minecraft:carrot","id":301,"version":0,"componentBased":false},{"name":"minecraft:carrot_on_a_stick","id":550,"version":2,"componentBased":false},{"name":"minecraft:carrots","id":141,"version":2,"componentBased":false},{"name":"minecraft:cartography_table","id":-200,"version":2,"componentBased":false},{"name":"minecraft:carved_pumpkin","id":-155,"version":2,"componentBased":false},{"name":"minecraft:cat_spawn_egg","id":516,"version":2,"componentBased":false},{"name":"minecraft:cauldron","id":459,"version":2,"componentBased":true},{"name":"minecraft:cave_spider_spawn_egg","id":484,"version":2,"componentBased":false},{"name":"minecraft:cave_vines","id":-322,"version":2,"componentBased":false},{"name":"minecraft:cave_vines_body_with_berries","id":-375,"version":2,"componentBased":false},{"name":"minecraft:cave_vines_head_with_berries","id":-376,"version":2,"componentBased":false},{"name":"minecraft:chain","id":656,"version":2,"componentBased":true},{"name":"minecraft:chain_command_block","id":189,"version":2,"componentBased":false},{"name":"minecraft:chainmail_boots","id":367,"version":2,"componentBased":false},{"name":"minecraft:chainmail_chestplate","id":365,"version":2,"componentBased":false},{"name":"minecraft:chainmail_helmet","id":364,"version":2,"componentBased":false},{"name":"minecraft:chainmail_leggings","id":366,"version":2,"componentBased":false},{"name":"minecraft:chalkboard","id":230,"version":2,"componentBased":false},{"name":"minecraft:charcoal","id":327,"version":2,"componentBased":true},{"name":"minecraft:chemical_heat","id":192,"version":2,"componentBased":false},{"name":"minecraft:chemistry_table","id":787,"version":2,"componentBased":false},{"name":"minecraft:cherry_boat","id":686,"version":2,"componentBased":false},{"name":"minecraft:cherry_button","id":-530,"version":2,"componentBased":false},{"name":"minecraft:cherry_chest_boat","id":687,"version":2,"componentBased":false},{"name":"minecraft:cherry_door","id":-531,"version":2,"componentBased":false},{"name":"minecraft:cherry_double_slab","id":-540,"version":2,"componentBased":false},{"name":"minecraft:cherry_fence","id":-532,"version":2,"componentBased":false},{"name":"minecraft:cherry_fence_gate","id":-533,"version":2,"componentBased":false},{"name":"minecraft:cherry_hanging_sign","id":-534,"version":2,"componentBased":false},{"name":"minecraft:cherry_leaves","id":-548,"version":2,"componentBased":false},{"name":"minecraft:cherry_log","id":-536,"version":2,"componentBased":false},{"name":"minecraft:cherry_planks","id":-537,"version":2,"componentBased":false},{"name":"minecraft:cherry_pressure_plate","id":-538,"version":2,"componentBased":false},{"name":"minecraft:cherry_sapling","id":-547,"version":2,"componentBased":false},{"name":"minecraft:cherry_sign","id":688,"version":2,"componentBased":false},{"name":"minecraft:cherry_slab","id":-539,"version":2,"componentBased":false},{"name":"minecraft:cherry_stairs","id":-541,"version":2,"componentBased":false},{"name":"minecraft:cherry_standing_sign","id":-542,"version":2,"componentBased":false},{"name":"minecraft:cherry_trapdoor","id":-543,"version":2,"componentBased":false},{"name":"minecraft:cherry_wall_sign","id":-544,"version":2,"componentBased":false},{"name":"minecraft:cherry_wood","id":-546,"version":2,"componentBased":false},{"name":"minecraft:chest","id":54,"version":2,"componentBased":false},{"name":"minecraft:chest_boat","id":682,"version":2,"componentBased":false},{"name":"minecraft:chest_minecart","id":415,"version":2,"componentBased":false},{"name":"minecraft:chicken","id":297,"version":0,"componentBased":false},{"name":"minecraft:chicken_spawn_egg","id":462,"version":2,"componentBased":false},{"name":"minecraft:chipped_anvil","id":-959,"version":2,"componentBased":false},{"name":"minecraft:chiseled_bookshelf","id":-526,"version":2,"componentBased":false},{"name":"minecraft:chiseled_copper","id":-760,"version":2,"componentBased":false},{"name":"minecraft:chiseled_deepslate","id":-395,"version":2,"componentBased":false},{"name":"minecraft:chiseled_nether_bricks","id":-302,"version":2,"componentBased":false},{"name":"minecraft:chiseled_polished_blackstone","id":-279,"version":2,"componentBased":false},{"name":"minecraft:chiseled_quartz_block","id":-953,"version":2,"componentBased":false},{"name":"minecraft:chiseled_red_sandstone","id":-956,"version":2,"componentBased":false},{"name":"minecraft:chiseled_resin_bricks","id":-1020,"version":2,"componentBased":false},{"name":"minecraft:chiseled_sandstone","id":-944,"version":2,"componentBased":false},{"name":"minecraft:chiseled_stone_bricks","id":-870,"version":2,"componentBased":false},{"name":"minecraft:chiseled_tuff","id":-753,"version":2,"componentBased":false},{"name":"minecraft:chiseled_tuff_bricks","id":-759,"version":2,"componentBased":false},{"name":"minecraft:chorus_flower","id":200,"version":2,"componentBased":false},{"name":"minecraft:chorus_fruit","id":591,"version":0,"componentBased":false},{"name":"minecraft:chorus_plant","id":240,"version":2,"componentBased":false},{"name":"minecraft:clay","id":82,"version":2,"componentBased":false},{"name":"minecraft:clay_ball","id":410,"version":2,"componentBased":false},{"name":"minecraft:client_request_placeholder_block","id":-465,"version":2,"componentBased":false},{"name":"minecraft:clock","id":419,"version":2,"componentBased":false},{"name":"minecraft:closed_eyeblossom","id":-1019,"version":2,"componentBased":false},{"name":"minecraft:coal","id":326,"version":2,"componentBased":true},{"name":"minecraft:coal_block","id":173,"version":2,"componentBased":false},{"name":"minecraft:coal_ore","id":16,"version":2,"componentBased":false},{"name":"minecraft:coarse_dirt","id":-962,"version":2,"componentBased":false},{"name":"minecraft:coast_armor_trim_smithing_template","id":720,"version":2,"componentBased":false},{"name":"minecraft:cobbled_deepslate","id":-379,"version":2,"componentBased":false},{"name":"minecraft:cobbled_deepslate_double_slab","id":-396,"version":2,"componentBased":false},{"name":"minecraft:cobbled_deepslate_slab","id":-380,"version":2,"componentBased":false},{"name":"minecraft:cobbled_deepslate_stairs","id":-381,"version":2,"componentBased":false},{"name":"minecraft:cobbled_deepslate_wall","id":-382,"version":2,"componentBased":false},{"name":"minecraft:cobblestone","id":4,"version":2,"componentBased":false},{"name":"minecraft:cobblestone_double_slab","id":-879,"version":2,"componentBased":false},{"name":"minecraft:cobblestone_slab","id":-873,"version":2,"componentBased":false},{"name":"minecraft:cobblestone_wall","id":139,"version":2,"componentBased":false},{"name":"minecraft:cocoa","id":127,"version":2,"componentBased":false},{"name":"minecraft:cocoa_beans","id":438,"version":2,"componentBased":false},{"name":"minecraft:cod","id":286,"version":0,"componentBased":false},{"name":"minecraft:cod_bucket","id":389,"version":2,"componentBased":false},{"name":"minecraft:cod_spawn_egg","id":508,"version":2,"componentBased":false},{"name":"minecraft:colored_torch_blue","id":204,"version":2,"componentBased":false},{"name":"minecraft:colored_torch_bp","id":791,"version":2,"componentBased":false},{"name":"minecraft:colored_torch_green","id":-963,"version":2,"componentBased":false},{"name":"minecraft:colored_torch_purple","id":-964,"version":2,"componentBased":false},{"name":"minecraft:colored_torch_red","id":202,"version":2,"componentBased":false},{"name":"minecraft:colored_torch_rg","id":790,"version":2,"componentBased":false},{"name":"minecraft:command_block","id":137,"version":2,"componentBased":false},{"name":"minecraft:command_block_minecart","id":596,"version":2,"componentBased":false},{"name":"minecraft:comparator","id":555,"version":2,"componentBased":true},{"name":"minecraft:compass","id":417,"version":2,"componentBased":false},{"name":"minecraft:composter","id":-213,"version":2,"componentBased":false},{"name":"minecraft:compound","id":631,"version":2,"componentBased":false},{"name":"minecraft:compound_creator","id":238,"version":2,"componentBased":false},{"name":"minecraft:concrete","id":778,"version":2,"componentBased":false},{"name":"minecraft:concrete_powder","id":779,"version":2,"componentBased":false},{"name":"minecraft:conduit","id":-157,"version":2,"componentBased":false},{"name":"minecraft:cooked_beef","id":296,"version":0,"componentBased":false},{"name":"minecraft:cooked_chicken","id":298,"version":0,"componentBased":false},{"name":"minecraft:cooked_cod","id":290,"version":0,"componentBased":false},{"name":"minecraft:cooked_mutton","id":584,"version":0,"componentBased":false},{"name":"minecraft:cooked_porkchop","id":285,"version":0,"componentBased":false},{"name":"minecraft:cooked_rabbit","id":311,"version":0,"componentBased":false},{"name":"minecraft:cooked_salmon","id":291,"version":0,"componentBased":false},{"name":"minecraft:cookie","id":293,"version":0,"componentBased":false},{"name":"minecraft:copper_block","id":-340,"version":2,"componentBased":false},{"name":"minecraft:copper_bulb","id":-776,"version":2,"componentBased":false},{"name":"minecraft:copper_door","id":-784,"version":2,"componentBased":false},{"name":"minecraft:copper_grate","id":-768,"version":2,"componentBased":false},{"name":"minecraft:copper_ingot","id":538,"version":2,"componentBased":false},{"name":"minecraft:copper_ore","id":-311,"version":2,"componentBased":false},{"name":"minecraft:copper_trapdoor","id":-792,"version":2,"componentBased":false},{"name":"minecraft:coral","id":774,"version":2,"componentBased":false},{"name":"minecraft:coral_block","id":756,"version":2,"componentBased":false},{"name":"minecraft:coral_fan","id":765,"version":2,"componentBased":false},{"name":"minecraft:coral_fan_dead","id":766,"version":2,"componentBased":false},{"name":"minecraft:cornflower","id":-838,"version":2,"componentBased":false},{"name":"minecraft:cow_spawn_egg","id":463,"version":2,"componentBased":false},{"name":"minecraft:cracked_deepslate_bricks","id":-410,"version":2,"componentBased":false},{"name":"minecraft:cracked_deepslate_tiles","id":-409,"version":2,"componentBased":false},{"name":"minecraft:cracked_nether_bricks","id":-303,"version":2,"componentBased":false},{"name":"minecraft:cracked_polished_blackstone_bricks","id":-280,"version":2,"componentBased":false},{"name":"minecraft:cracked_stone_bricks","id":-869,"version":2,"componentBased":false},{"name":"minecraft:crafter","id":-313,"version":2,"componentBased":false},{"name":"minecraft:crafting_table","id":58,"version":2,"componentBased":false},{"name":"minecraft:creaking_heart","id":-1012,"version":2,"componentBased":false},{"name":"minecraft:creaking_spawn_egg","id":747,"version":2,"componentBased":false},{"name":"minecraft:creeper_banner_pattern","id":615,"version":2,"componentBased":false},{"name":"minecraft:creeper_head","id":-968,"version":2,"componentBased":false},{"name":"minecraft:creeper_spawn_egg","id":468,"version":2,"componentBased":false},{"name":"minecraft:crimson_button","id":-260,"version":2,"componentBased":false},{"name":"minecraft:crimson_door","id":653,"version":2,"componentBased":false},{"name":"minecraft:crimson_double_slab","id":-266,"version":2,"componentBased":false},{"name":"minecraft:crimson_fence","id":-256,"version":2,"componentBased":false},{"name":"minecraft:crimson_fence_gate","id":-258,"version":2,"componentBased":false},{"name":"minecraft:crimson_fungus","id":-228,"version":2,"componentBased":false},{"name":"minecraft:crimson_hanging_sign","id":-506,"version":2,"componentBased":false},{"name":"minecraft:crimson_hyphae","id":-299,"version":2,"componentBased":false},{"name":"minecraft:crimson_nylium","id":-232,"version":2,"componentBased":false},{"name":"minecraft:crimson_planks","id":-242,"version":2,"componentBased":false},{"name":"minecraft:crimson_pressure_plate","id":-262,"version":2,"componentBased":false},{"name":"minecraft:crimson_roots","id":-223,"version":2,"componentBased":false},{"name":"minecraft:crimson_sign","id":651,"version":2,"componentBased":false},{"name":"minecraft:crimson_slab","id":-264,"version":2,"componentBased":false},{"name":"minecraft:crimson_stairs","id":-254,"version":2,"componentBased":false},{"name":"minecraft:crimson_standing_sign","id":-250,"version":2,"componentBased":false},{"name":"minecraft:crimson_stem","id":-225,"version":2,"componentBased":false},{"name":"minecraft:crimson_trapdoor","id":-246,"version":2,"componentBased":false},{"name":"minecraft:crimson_wall_sign","id":-252,"version":2,"componentBased":false},{"name":"minecraft:crossbow","id":608,"version":2,"componentBased":false},{"name":"minecraft:crying_obsidian","id":-289,"version":2,"componentBased":false},{"name":"minecraft:cut_copper","id":-347,"version":2,"componentBased":false},{"name":"minecraft:cut_copper_slab","id":-361,"version":2,"componentBased":false},{"name":"minecraft:cut_copper_stairs","id":-354,"version":2,"componentBased":false},{"name":"minecraft:cut_red_sandstone","id":-957,"version":2,"componentBased":false},{"name":"minecraft:cut_red_sandstone_double_slab","id":-928,"version":2,"componentBased":false},{"name":"minecraft:cut_red_sandstone_slab","id":-901,"version":2,"componentBased":false},{"name":"minecraft:cut_sandstone","id":-945,"version":2,"componentBased":false},{"name":"minecraft:cut_sandstone_double_slab","id":-927,"version":2,"componentBased":false},{"name":"minecraft:cut_sandstone_slab","id":-900,"version":2,"componentBased":false},{"name":"minecraft:cyan_bundle","id":261,"version":1,"componentBased":true},{"name":"minecraft:cyan_candle","id":-422,"version":2,"componentBased":false},{"name":"minecraft:cyan_candle_cake","id":-439,"version":2,"componentBased":false},{"name":"minecraft:cyan_carpet","id":-605,"version":2,"componentBased":false},{"name":"minecraft:cyan_concrete","id":-636,"version":2,"componentBased":false},{"name":"minecraft:cyan_concrete_powder","id":-717,"version":2,"componentBased":false},{"name":"minecraft:cyan_dye","id":427,"version":2,"componentBased":false},{"name":"minecraft:cyan_glazed_terracotta","id":229,"version":2,"componentBased":false},{"name":"minecraft:cyan_shulker_box","id":-621,"version":2,"componentBased":false},{"name":"minecraft:cyan_stained_glass","id":-681,"version":2,"componentBased":false},{"name":"minecraft:cyan_stained_glass_pane","id":-651,"version":2,"componentBased":false},{"name":"minecraft:cyan_terracotta","id":-732,"version":2,"componentBased":false},{"name":"minecraft:cyan_wool","id":-561,"version":2,"componentBased":false},{"name":"minecraft:damaged_anvil","id":-960,"version":2,"componentBased":false},{"name":"minecraft:dandelion","id":37,"version":2,"componentBased":false},{"name":"minecraft:danger_pottery_sherd","id":699,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_boat","id":406,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_button","id":-142,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_chest_boat","id":680,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_door","id":590,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_double_slab","id":-813,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_fence","id":-577,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_fence_gate","id":186,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_hanging_sign","id":-505,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_leaves","id":-803,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_log","id":-572,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_planks","id":-743,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_pressure_plate","id":-152,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_sapling","id":-829,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_sign","id":613,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_slab","id":-808,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_stairs","id":164,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_trapdoor","id":-147,"version":2,"componentBased":false},{"name":"minecraft:dark_oak_wood","id":-818,"version":2,"componentBased":false},{"name":"minecraft:dark_prismarine","id":-947,"version":2,"componentBased":false},{"name":"minecraft:dark_prismarine_double_slab","id":-913,"version":2,"componentBased":false},{"name":"minecraft:dark_prismarine_slab","id":-886,"version":2,"componentBased":false},{"name":"minecraft:dark_prismarine_stairs","id":-3,"version":2,"componentBased":false},{"name":"minecraft:darkoak_standing_sign","id":-192,"version":2,"componentBased":false},{"name":"minecraft:darkoak_wall_sign","id":-193,"version":2,"componentBased":false},{"name":"minecraft:daylight_detector","id":151,"version":2,"componentBased":false},{"name":"minecraft:daylight_detector_inverted","id":178,"version":2,"componentBased":false},{"name":"minecraft:dead_brain_coral","id":-586,"version":2,"componentBased":false},{"name":"minecraft:dead_brain_coral_block","id":-854,"version":2,"componentBased":false},{"name":"minecraft:dead_brain_coral_fan","id":-844,"version":2,"componentBased":false},{"name":"minecraft:dead_brain_coral_wall_fan","id":-906,"version":2,"componentBased":false},{"name":"minecraft:dead_bubble_coral","id":-587,"version":2,"componentBased":false},{"name":"minecraft:dead_bubble_coral_block","id":-855,"version":2,"componentBased":false},{"name":"minecraft:dead_bubble_coral_fan","id":-845,"version":2,"componentBased":false},{"name":"minecraft:dead_bubble_coral_wall_fan","id":-908,"version":2,"componentBased":false},{"name":"minecraft:dead_fire_coral","id":-588,"version":2,"componentBased":false},{"name":"minecraft:dead_fire_coral_block","id":-856,"version":2,"componentBased":false},{"name":"minecraft:dead_fire_coral_fan","id":-846,"version":2,"componentBased":false},{"name":"minecraft:dead_fire_coral_wall_fan","id":-909,"version":2,"componentBased":false},{"name":"minecraft:dead_horn_coral","id":-589,"version":2,"componentBased":false},{"name":"minecraft:dead_horn_coral_block","id":-857,"version":2,"componentBased":false},{"name":"minecraft:dead_horn_coral_fan","id":-847,"version":2,"componentBased":false},{"name":"minecraft:dead_horn_coral_wall_fan","id":-910,"version":2,"componentBased":false},{"name":"minecraft:dead_tube_coral","id":-585,"version":2,"componentBased":false},{"name":"minecraft:dead_tube_coral_block","id":-853,"version":2,"componentBased":false},{"name":"minecraft:dead_tube_coral_fan","id":-134,"version":2,"componentBased":false},{"name":"minecraft:dead_tube_coral_wall_fan","id":-905,"version":2,"componentBased":false},{"name":"minecraft:deadbush","id":32,"version":2,"componentBased":false},{"name":"minecraft:decorated_pot","id":-551,"version":2,"componentBased":false},{"name":"minecraft:deepslate","id":-378,"version":2,"componentBased":false},{"name":"minecraft:deepslate_brick_double_slab","id":-399,"version":2,"componentBased":false},{"name":"minecraft:deepslate_brick_slab","id":-392,"version":2,"componentBased":false},{"name":"minecraft:deepslate_brick_stairs","id":-393,"version":2,"componentBased":false},{"name":"minecraft:deepslate_brick_wall","id":-394,"version":2,"componentBased":false},{"name":"minecraft:deepslate_bricks","id":-391,"version":2,"componentBased":false},{"name":"minecraft:deepslate_coal_ore","id":-406,"version":2,"componentBased":false},{"name":"minecraft:deepslate_copper_ore","id":-408,"version":2,"componentBased":false},{"name":"minecraft:deepslate_diamond_ore","id":-405,"version":2,"componentBased":false},{"name":"minecraft:deepslate_emerald_ore","id":-407,"version":2,"componentBased":false},{"name":"minecraft:deepslate_gold_ore","id":-402,"version":2,"componentBased":false},{"name":"minecraft:deepslate_iron_ore","id":-401,"version":2,"componentBased":false},{"name":"minecraft:deepslate_lapis_ore","id":-400,"version":2,"componentBased":false},{"name":"minecraft:deepslate_redstone_ore","id":-403,"version":2,"componentBased":false},{"name":"minecraft:deepslate_tile_double_slab","id":-398,"version":2,"componentBased":false},{"name":"minecraft:deepslate_tile_slab","id":-388,"version":2,"componentBased":false},{"name":"minecraft:deepslate_tile_stairs","id":-389,"version":2,"componentBased":false},{"name":"minecraft:deepslate_tile_wall","id":-390,"version":2,"componentBased":false},{"name":"minecraft:deepslate_tiles","id":-387,"version":2,"componentBased":false},{"name":"minecraft:deny","id":211,"version":2,"componentBased":false},{"name":"minecraft:deprecated_anvil","id":-961,"version":2,"componentBased":false},{"name":"minecraft:deprecated_purpur_block_1","id":-950,"version":2,"componentBased":false},{"name":"minecraft:deprecated_purpur_block_2","id":-952,"version":2,"componentBased":false},{"name":"minecraft:detector_rail","id":28,"version":2,"componentBased":false},{"name":"minecraft:diamond","id":328,"version":2,"componentBased":false},{"name":"minecraft:diamond_axe","id":343,"version":2,"componentBased":false},{"name":"minecraft:diamond_block","id":57,"version":2,"componentBased":false},{"name":"minecraft:diamond_boots","id":375,"version":2,"componentBased":false},{"name":"minecraft:diamond_chestplate","id":373,"version":2,"componentBased":false},{"name":"minecraft:diamond_helmet","id":372,"version":2,"componentBased":false},{"name":"minecraft:diamond_hoe","id":357,"version":2,"componentBased":false},{"name":"minecraft:diamond_horse_armor","id":566,"version":2,"componentBased":false},{"name":"minecraft:diamond_leggings","id":374,"version":2,"componentBased":false},{"name":"minecraft:diamond_ore","id":56,"version":2,"componentBased":false},{"name":"minecraft:diamond_pickaxe","id":342,"version":2,"componentBased":false},{"name":"minecraft:diamond_shovel","id":341,"version":2,"componentBased":false},{"name":"minecraft:diamond_sword","id":340,"version":2,"componentBased":false},{"name":"minecraft:diorite","id":-592,"version":2,"componentBased":false},{"name":"minecraft:diorite_double_slab","id":-921,"version":2,"componentBased":false},{"name":"minecraft:diorite_slab","id":-894,"version":2,"componentBased":false},{"name":"minecraft:diorite_stairs","id":-170,"version":2,"componentBased":false},{"name":"minecraft:diorite_wall","id":-973,"version":2,"componentBased":false},{"name":"minecraft:dirt","id":3,"version":2,"componentBased":false},{"name":"minecraft:dirt_with_roots","id":-318,"version":2,"componentBased":false},{"name":"minecraft:disc_fragment_5","id":674,"version":2,"componentBased":false},{"name":"minecraft:dispenser","id":23,"version":2,"componentBased":false},{"name":"minecraft:dolphin_spawn_egg","id":512,"version":2,"componentBased":false},{"name":"minecraft:donkey_spawn_egg","id":493,"version":2,"componentBased":false},{"name":"minecraft:double_cut_copper_slab","id":-368,"version":2,"componentBased":false},{"name":"minecraft:double_plant","id":772,"version":2,"componentBased":false},{"name":"minecraft:double_stone_block_slab","id":761,"version":2,"componentBased":false},{"name":"minecraft:double_stone_block_slab2","id":762,"version":2,"componentBased":false},{"name":"minecraft:double_stone_block_slab3","id":763,"version":2,"componentBased":false},{"name":"minecraft:double_stone_block_slab4","id":764,"version":2,"componentBased":false},{"name":"minecraft:dragon_breath","id":593,"version":2,"componentBased":false},{"name":"minecraft:dragon_egg","id":122,"version":2,"componentBased":false},{"name":"minecraft:dragon_head","id":-969,"version":2,"componentBased":false},{"name":"minecraft:dried_kelp","id":292,"version":0,"componentBased":false},{"name":"minecraft:dried_kelp_block","id":-139,"version":2,"componentBased":false},{"name":"minecraft:dripstone_block","id":-317,"version":2,"componentBased":false},{"name":"minecraft:dropper","id":125,"version":2,"componentBased":false},{"name":"minecraft:drowned_spawn_egg","id":511,"version":2,"componentBased":false},{"name":"minecraft:dune_armor_trim_smithing_template","id":719,"version":2,"componentBased":false},{"name":"minecraft:dye","id":794,"version":2,"componentBased":false},{"name":"minecraft:echo_shard","id":684,"version":2,"componentBased":false},{"name":"minecraft:egg","id":416,"version":2,"componentBased":false},{"name":"minecraft:elder_guardian_spawn_egg","id":499,"version":2,"componentBased":false},{"name":"minecraft:element_0","id":36,"version":2,"componentBased":false},{"name":"minecraft:element_1","id":-12,"version":2,"componentBased":false},{"name":"minecraft:element_10","id":-21,"version":2,"componentBased":false},{"name":"minecraft:element_100","id":-111,"version":2,"componentBased":false},{"name":"minecraft:element_101","id":-112,"version":2,"componentBased":false},{"name":"minecraft:element_102","id":-113,"version":2,"componentBased":false},{"name":"minecraft:element_103","id":-114,"version":2,"componentBased":false},{"name":"minecraft:element_104","id":-115,"version":2,"componentBased":false},{"name":"minecraft:element_105","id":-116,"version":2,"componentBased":false},{"name":"minecraft:element_106","id":-117,"version":2,"componentBased":false},{"name":"minecraft:element_107","id":-118,"version":2,"componentBased":false},{"name":"minecraft:element_108","id":-119,"version":2,"componentBased":false},{"name":"minecraft:element_109","id":-120,"version":2,"componentBased":false},{"name":"minecraft:element_11","id":-22,"version":2,"componentBased":false},{"name":"minecraft:element_110","id":-121,"version":2,"componentBased":false},{"name":"minecraft:element_111","id":-122,"version":2,"componentBased":false},{"name":"minecraft:element_112","id":-123,"version":2,"componentBased":false},{"name":"minecraft:element_113","id":-124,"version":2,"componentBased":false},{"name":"minecraft:element_114","id":-125,"version":2,"componentBased":false},{"name":"minecraft:element_115","id":-126,"version":2,"componentBased":false},{"name":"minecraft:element_116","id":-127,"version":2,"componentBased":false},{"name":"minecraft:element_117","id":-128,"version":2,"componentBased":false},{"name":"minecraft:element_118","id":-129,"version":2,"componentBased":false},{"name":"minecraft:element_12","id":-23,"version":2,"componentBased":false},{"name":"minecraft:element_13","id":-24,"version":2,"componentBased":false},{"name":"minecraft:element_14","id":-25,"version":2,"componentBased":false},{"name":"minecraft:element_15","id":-26,"version":2,"componentBased":false},{"name":"minecraft:element_16","id":-27,"version":2,"componentBased":false},{"name":"minecraft:element_17","id":-28,"version":2,"componentBased":false},{"name":"minecraft:element_18","id":-29,"version":2,"componentBased":false},{"name":"minecraft:element_19","id":-30,"version":2,"componentBased":false},{"name":"minecraft:element_2","id":-13,"version":2,"componentBased":false},{"name":"minecraft:element_20","id":-31,"version":2,"componentBased":false},{"name":"minecraft:element_21","id":-32,"version":2,"componentBased":false},{"name":"minecraft:element_22","id":-33,"version":2,"componentBased":false},{"name":"minecraft:element_23","id":-34,"version":2,"componentBased":false},{"name":"minecraft:element_24","id":-35,"version":2,"componentBased":false},{"name":"minecraft:element_25","id":-36,"version":2,"componentBased":false},{"name":"minecraft:element_26","id":-37,"version":2,"componentBased":false},{"name":"minecraft:element_27","id":-38,"version":2,"componentBased":false},{"name":"minecraft:element_28","id":-39,"version":2,"componentBased":false},{"name":"minecraft:element_29","id":-40,"version":2,"componentBased":false},{"name":"minecraft:element_3","id":-14,"version":2,"componentBased":false},{"name":"minecraft:element_30","id":-41,"version":2,"componentBased":false},{"name":"minecraft:element_31","id":-42,"version":2,"componentBased":false},{"name":"minecraft:element_32","id":-43,"version":2,"componentBased":false},{"name":"minecraft:element_33","id":-44,"version":2,"componentBased":false},{"name":"minecraft:element_34","id":-45,"version":2,"componentBased":false},{"name":"minecraft:element_35","id":-46,"version":2,"componentBased":false},{"name":"minecraft:element_36","id":-47,"version":2,"componentBased":false},{"name":"minecraft:element_37","id":-48,"version":2,"componentBased":false},{"name":"minecraft:element_38","id":-49,"version":2,"componentBased":false},{"name":"minecraft:element_39","id":-50,"version":2,"componentBased":false},{"name":"minecraft:element_4","id":-15,"version":2,"componentBased":false},{"name":"minecraft:element_40","id":-51,"version":2,"componentBased":false},{"name":"minecraft:element_41","id":-52,"version":2,"componentBased":false},{"name":"minecraft:element_42","id":-53,"version":2,"componentBased":false},{"name":"minecraft:element_43","id":-54,"version":2,"componentBased":false},{"name":"minecraft:element_44","id":-55,"version":2,"componentBased":false},{"name":"minecraft:element_45","id":-56,"version":2,"componentBased":false},{"name":"minecraft:element_46","id":-57,"version":2,"componentBased":false},{"name":"minecraft:element_47","id":-58,"version":2,"componentBased":false},{"name":"minecraft:element_48","id":-59,"version":2,"componentBased":false},{"name":"minecraft:element_49","id":-60,"version":2,"componentBased":false},{"name":"minecraft:element_5","id":-16,"version":2,"componentBased":false},{"name":"minecraft:element_50","id":-61,"version":2,"componentBased":false},{"name":"minecraft:element_51","id":-62,"version":2,"componentBased":false},{"name":"minecraft:element_52","id":-63,"version":2,"componentBased":false},{"name":"minecraft:element_53","id":-64,"version":2,"componentBased":false},{"name":"minecraft:element_54","id":-65,"version":2,"componentBased":false},{"name":"minecraft:element_55","id":-66,"version":2,"componentBased":false},{"name":"minecraft:element_56","id":-67,"version":2,"componentBased":false},{"name":"minecraft:element_57","id":-68,"version":2,"componentBased":false},{"name":"minecraft:element_58","id":-69,"version":2,"componentBased":false},{"name":"minecraft:element_59","id":-70,"version":2,"componentBased":false},{"name":"minecraft:element_6","id":-17,"version":2,"componentBased":false},{"name":"minecraft:element_60","id":-71,"version":2,"componentBased":false},{"name":"minecraft:element_61","id":-72,"version":2,"componentBased":false},{"name":"minecraft:element_62","id":-73,"version":2,"componentBased":false},{"name":"minecraft:element_63","id":-74,"version":2,"componentBased":false},{"name":"minecraft:element_64","id":-75,"version":2,"componentBased":false},{"name":"minecraft:element_65","id":-76,"version":2,"componentBased":false},{"name":"minecraft:element_66","id":-77,"version":2,"componentBased":false},{"name":"minecraft:element_67","id":-78,"version":2,"componentBased":false},{"name":"minecraft:element_68","id":-79,"version":2,"componentBased":false},{"name":"minecraft:element_69","id":-80,"version":2,"componentBased":false},{"name":"minecraft:element_7","id":-18,"version":2,"componentBased":false},{"name":"minecraft:element_70","id":-81,"version":2,"componentBased":false},{"name":"minecraft:element_71","id":-82,"version":2,"componentBased":false},{"name":"minecraft:element_72","id":-83,"version":2,"componentBased":false},{"name":"minecraft:element_73","id":-84,"version":2,"componentBased":false},{"name":"minecraft:element_74","id":-85,"version":2,"componentBased":false},{"name":"minecraft:element_75","id":-86,"version":2,"componentBased":false},{"name":"minecraft:element_76","id":-87,"version":2,"componentBased":false},{"name":"minecraft:element_77","id":-88,"version":2,"componentBased":false},{"name":"minecraft:element_78","id":-89,"version":2,"componentBased":false},{"name":"minecraft:element_79","id":-90,"version":2,"componentBased":false},{"name":"minecraft:element_8","id":-19,"version":2,"componentBased":false},{"name":"minecraft:element_80","id":-91,"version":2,"componentBased":false},{"name":"minecraft:element_81","id":-92,"version":2,"componentBased":false},{"name":"minecraft:element_82","id":-93,"version":2,"componentBased":false},{"name":"minecraft:element_83","id":-94,"version":2,"componentBased":false},{"name":"minecraft:element_84","id":-95,"version":2,"componentBased":false},{"name":"minecraft:element_85","id":-96,"version":2,"componentBased":false},{"name":"minecraft:element_86","id":-97,"version":2,"componentBased":false},{"name":"minecraft:element_87","id":-98,"version":2,"componentBased":false},{"name":"minecraft:element_88","id":-99,"version":2,"componentBased":false},{"name":"minecraft:element_89","id":-100,"version":2,"componentBased":false},{"name":"minecraft:element_9","id":-20,"version":2,"componentBased":false},{"name":"minecraft:element_90","id":-101,"version":2,"componentBased":false},{"name":"minecraft:element_91","id":-102,"version":2,"componentBased":false},{"name":"minecraft:element_92","id":-103,"version":2,"componentBased":false},{"name":"minecraft:element_93","id":-104,"version":2,"componentBased":false},{"name":"minecraft:element_94","id":-105,"version":2,"componentBased":false},{"name":"minecraft:element_95","id":-106,"version":2,"componentBased":false},{"name":"minecraft:element_96","id":-107,"version":2,"componentBased":false},{"name":"minecraft:element_97","id":-108,"version":2,"componentBased":false},{"name":"minecraft:element_98","id":-109,"version":2,"componentBased":false},{"name":"minecraft:element_99","id":-110,"version":2,"componentBased":false},{"name":"minecraft:element_constructor","id":-987,"version":2,"componentBased":false},{"name":"minecraft:elytra","id":597,"version":2,"componentBased":false},{"name":"minecraft:emerald","id":546,"version":2,"componentBased":false},{"name":"minecraft:emerald_block","id":133,"version":2,"componentBased":false},{"name":"minecraft:emerald_ore","id":129,"version":2,"componentBased":false},{"name":"minecraft:empty_map","id":549,"version":2,"componentBased":false},{"name":"minecraft:enchanted_book","id":554,"version":2,"componentBased":false},{"name":"minecraft:enchanted_golden_apple","id":281,"version":0,"componentBased":false},{"name":"minecraft:enchanting_table","id":116,"version":2,"componentBased":false},{"name":"minecraft:end_brick_stairs","id":-178,"version":2,"componentBased":false},{"name":"minecraft:end_bricks","id":206,"version":2,"componentBased":false},{"name":"minecraft:end_crystal","id":797,"version":2,"componentBased":false},{"name":"minecraft:end_gateway","id":209,"version":2,"componentBased":false},{"name":"minecraft:end_portal","id":119,"version":2,"componentBased":false},{"name":"minecraft:end_portal_frame","id":120,"version":2,"componentBased":false},{"name":"minecraft:end_rod","id":208,"version":2,"componentBased":false},{"name":"minecraft:end_stone","id":121,"version":2,"componentBased":false},{"name":"minecraft:end_stone_brick_double_slab","id":-167,"version":2,"componentBased":false},{"name":"minecraft:end_stone_brick_slab","id":-162,"version":2,"componentBased":false},{"name":"minecraft:end_stone_brick_wall","id":-980,"version":2,"componentBased":false},{"name":"minecraft:ender_chest","id":130,"version":2,"componentBased":false},{"name":"minecraft:ender_dragon_spawn_egg","id":535,"version":2,"componentBased":false},{"name":"minecraft:ender_eye","id":460,"version":2,"componentBased":false},{"name":"minecraft:ender_pearl","id":448,"version":2,"componentBased":false},{"name":"minecraft:enderman_spawn_egg","id":469,"version":2,"componentBased":false},{"name":"minecraft:endermite_spawn_egg","id":487,"version":2,"componentBased":false},{"name":"minecraft:evoker_spawn_egg","id":503,"version":2,"componentBased":false},{"name":"minecraft:experience_bottle","id":542,"version":2,"componentBased":false},{"name":"minecraft:explorer_pottery_sherd","id":700,"version":2,"componentBased":false},{"name":"minecraft:exposed_chiseled_copper","id":-761,"version":2,"componentBased":false},{"name":"minecraft:exposed_copper","id":-341,"version":2,"componentBased":false},{"name":"minecraft:exposed_copper_bulb","id":-777,"version":2,"componentBased":false},{"name":"minecraft:exposed_copper_door","id":-785,"version":2,"componentBased":false},{"name":"minecraft:exposed_copper_grate","id":-769,"version":2,"componentBased":false},{"name":"minecraft:exposed_copper_trapdoor","id":-793,"version":2,"componentBased":false},{"name":"minecraft:exposed_cut_copper","id":-348,"version":2,"componentBased":false},{"name":"minecraft:exposed_cut_copper_slab","id":-362,"version":2,"componentBased":false},{"name":"minecraft:exposed_cut_copper_stairs","id":-355,"version":2,"componentBased":false},{"name":"minecraft:exposed_double_cut_copper_slab","id":-369,"version":2,"componentBased":false},{"name":"minecraft:eye_armor_trim_smithing_template","id":723,"version":2,"componentBased":false},{"name":"minecraft:farmland","id":60,"version":2,"componentBased":false},{"name":"minecraft:feather","id":352,"version":2,"componentBased":false},{"name":"minecraft:fence","id":754,"version":2,"componentBased":false},{"name":"minecraft:fence_gate","id":107,"version":2,"componentBased":false},{"name":"minecraft:fermented_spider_eye","id":455,"version":2,"componentBased":false},{"name":"minecraft:fern","id":-848,"version":2,"componentBased":false},{"name":"minecraft:field_masoned_banner_pattern","id":618,"version":2,"componentBased":false},{"name":"minecraft:filled_map","id":446,"version":2,"componentBased":false},{"name":"minecraft:fire","id":51,"version":2,"componentBased":false},{"name":"minecraft:fire_charge","id":543,"version":2,"componentBased":false},{"name":"minecraft:fire_coral","id":-583,"version":2,"componentBased":false},{"name":"minecraft:fire_coral_block","id":-851,"version":2,"componentBased":false},{"name":"minecraft:fire_coral_fan","id":-842,"version":2,"componentBased":false},{"name":"minecraft:fire_coral_wall_fan","id":-907,"version":2,"componentBased":false},{"name":"minecraft:firefly_bush","id":-1025,"version":2,"componentBased":false},{"name":"minecraft:firework_rocket","id":552,"version":2,"componentBased":false},{"name":"minecraft:firework_star","id":553,"version":2,"componentBased":false},{"name":"minecraft:fishing_rod","id":418,"version":2,"componentBased":true},{"name":"minecraft:fletching_table","id":-201,"version":2,"componentBased":false},{"name":"minecraft:flint","id":381,"version":2,"componentBased":false},{"name":"minecraft:flint_and_steel","id":323,"version":2,"componentBased":false},{"name":"minecraft:flow_armor_trim_smithing_template","id":734,"version":2,"componentBased":false},{"name":"minecraft:flow_banner_pattern","id":622,"version":2,"componentBased":false},{"name":"minecraft:flow_pottery_sherd","id":701,"version":2,"componentBased":false},{"name":"minecraft:flower_banner_pattern","id":614,"version":2,"componentBased":false},{"name":"minecraft:flower_pot","id":548,"version":2,"componentBased":true},{"name":"minecraft:flowering_azalea","id":-338,"version":2,"componentBased":false},{"name":"minecraft:flowing_lava","id":10,"version":2,"componentBased":false},{"name":"minecraft:flowing_water","id":8,"version":2,"componentBased":false},{"name":"minecraft:fox_spawn_egg","id":518,"version":2,"componentBased":false},{"name":"minecraft:frame","id":547,"version":2,"componentBased":true},{"name":"minecraft:friend_pottery_sherd","id":702,"version":2,"componentBased":false},{"name":"minecraft:frog_spawn","id":-468,"version":2,"componentBased":false},{"name":"minecraft:frog_spawn_egg","id":665,"version":2,"componentBased":false},{"name":"minecraft:frosted_ice","id":207,"version":2,"componentBased":false},{"name":"minecraft:furnace","id":61,"version":2,"componentBased":false},{"name":"minecraft:ghast_spawn_egg","id":481,"version":2,"componentBased":false},{"name":"minecraft:ghast_tear","id":451,"version":2,"componentBased":false},{"name":"minecraft:gilded_blackstone","id":-281,"version":2,"componentBased":false},{"name":"minecraft:glass","id":20,"version":2,"componentBased":false},{"name":"minecraft:glass_bottle","id":454,"version":2,"componentBased":false},{"name":"minecraft:glass_pane","id":102,"version":2,"componentBased":false},{"name":"minecraft:glistering_melon_slice","id":461,"version":2,"componentBased":false},{"name":"minecraft:globe_banner_pattern","id":621,"version":2,"componentBased":false},{"name":"minecraft:glow_berries","id":798,"version":0,"componentBased":false},{"name":"minecraft:glow_frame","id":660,"version":2,"componentBased":true},{"name":"minecraft:glow_ink_sac","id":537,"version":2,"componentBased":false},{"name":"minecraft:glow_lichen","id":-411,"version":2,"componentBased":false},{"name":"minecraft:glow_squid_spawn_egg","id":532,"version":2,"componentBased":false},{"name":"minecraft:glow_stick","id":638,"version":2,"componentBased":false},{"name":"minecraft:glowingobsidian","id":246,"version":2,"componentBased":false},{"name":"minecraft:glowstone","id":89,"version":2,"componentBased":false},{"name":"minecraft:glowstone_dust","id":420,"version":2,"componentBased":false},{"name":"minecraft:goat_horn","id":664,"version":2,"componentBased":false},{"name":"minecraft:goat_spawn_egg","id":531,"version":2,"componentBased":false},{"name":"minecraft:gold_block","id":41,"version":2,"componentBased":false},{"name":"minecraft:gold_ingot","id":330,"version":2,"componentBased":false},{"name":"minecraft:gold_nugget","id":452,"version":2,"componentBased":false},{"name":"minecraft:gold_ore","id":14,"version":2,"componentBased":false},{"name":"minecraft:golden_apple","id":280,"version":0,"componentBased":false},{"name":"minecraft:golden_axe","id":350,"version":2,"componentBased":false},{"name":"minecraft:golden_boots","id":379,"version":2,"componentBased":false},{"name":"minecraft:golden_carrot","id":305,"version":0,"componentBased":false},{"name":"minecraft:golden_chestplate","id":377,"version":2,"componentBased":false},{"name":"minecraft:golden_helmet","id":376,"version":2,"componentBased":false},{"name":"minecraft:golden_hoe","id":358,"version":2,"componentBased":false},{"name":"minecraft:golden_horse_armor","id":565,"version":2,"componentBased":false},{"name":"minecraft:golden_leggings","id":378,"version":2,"componentBased":false},{"name":"minecraft:golden_pickaxe","id":349,"version":2,"componentBased":false},{"name":"minecraft:golden_rail","id":27,"version":2,"componentBased":false},{"name":"minecraft:golden_shovel","id":348,"version":2,"componentBased":false},{"name":"minecraft:golden_sword","id":347,"version":2,"componentBased":false},{"name":"minecraft:granite","id":-590,"version":2,"componentBased":false},{"name":"minecraft:granite_double_slab","id":-923,"version":2,"componentBased":false},{"name":"minecraft:granite_slab","id":-896,"version":2,"componentBased":false},{"name":"minecraft:granite_stairs","id":-169,"version":2,"componentBased":false},{"name":"minecraft:granite_wall","id":-972,"version":2,"componentBased":false},{"name":"minecraft:grass_block","id":2,"version":2,"componentBased":false},{"name":"minecraft:grass_path","id":198,"version":2,"componentBased":false},{"name":"minecraft:gravel","id":13,"version":2,"componentBased":false},{"name":"minecraft:gray_bundle","id":262,"version":1,"componentBased":true},{"name":"minecraft:gray_candle","id":-420,"version":2,"componentBased":false},{"name":"minecraft:gray_candle_cake","id":-437,"version":2,"componentBased":false},{"name":"minecraft:gray_carpet","id":-603,"version":2,"componentBased":false},{"name":"minecraft:gray_concrete","id":-634,"version":2,"componentBased":false},{"name":"minecraft:gray_concrete_powder","id":-715,"version":2,"componentBased":false},{"name":"minecraft:gray_dye","id":429,"version":2,"componentBased":false},{"name":"minecraft:gray_glazed_terracotta","id":227,"version":2,"componentBased":false},{"name":"minecraft:gray_shulker_box","id":-619,"version":2,"componentBased":false},{"name":"minecraft:gray_stained_glass","id":-679,"version":2,"componentBased":false},{"name":"minecraft:gray_stained_glass_pane","id":-649,"version":2,"componentBased":false},{"name":"minecraft:gray_terracotta","id":-730,"version":2,"componentBased":false},{"name":"minecraft:gray_wool","id":-553,"version":2,"componentBased":false},{"name":"minecraft:green_bundle","id":263,"version":1,"componentBased":true},{"name":"minecraft:green_candle","id":-426,"version":2,"componentBased":false},{"name":"minecraft:green_candle_cake","id":-443,"version":2,"componentBased":false},{"name":"minecraft:green_carpet","id":-609,"version":2,"componentBased":false},{"name":"minecraft:green_concrete","id":-640,"version":2,"componentBased":false},{"name":"minecraft:green_concrete_powder","id":-721,"version":2,"componentBased":false},{"name":"minecraft:green_dye","id":423,"version":2,"componentBased":false},{"name":"minecraft:green_glazed_terracotta","id":233,"version":2,"componentBased":false},{"name":"minecraft:green_shulker_box","id":-625,"version":2,"componentBased":false},{"name":"minecraft:green_stained_glass","id":-685,"version":2,"componentBased":false},{"name":"minecraft:green_stained_glass_pane","id":-655,"version":2,"componentBased":false},{"name":"minecraft:green_terracotta","id":-736,"version":2,"componentBased":false},{"name":"minecraft:green_wool","id":-560,"version":2,"componentBased":false},{"name":"minecraft:grindstone","id":-195,"version":2,"componentBased":false},{"name":"minecraft:guardian_spawn_egg","id":488,"version":2,"componentBased":false},{"name":"minecraft:gunpowder","id":353,"version":2,"componentBased":false},{"name":"minecraft:guster_banner_pattern","id":623,"version":2,"componentBased":false},{"name":"minecraft:guster_pottery_sherd","id":703,"version":2,"componentBased":false},{"name":"minecraft:hanging_roots","id":-319,"version":2,"componentBased":false},{"name":"minecraft:hard_black_stained_glass","id":-702,"version":2,"componentBased":false},{"name":"minecraft:hard_black_stained_glass_pane","id":-672,"version":2,"componentBased":false},{"name":"minecraft:hard_blue_stained_glass","id":-698,"version":2,"componentBased":false},{"name":"minecraft:hard_blue_stained_glass_pane","id":-668,"version":2,"componentBased":false},{"name":"minecraft:hard_brown_stained_glass","id":-699,"version":2,"componentBased":false},{"name":"minecraft:hard_brown_stained_glass_pane","id":-669,"version":2,"componentBased":false},{"name":"minecraft:hard_cyan_stained_glass","id":-696,"version":2,"componentBased":false},{"name":"minecraft:hard_cyan_stained_glass_pane","id":-666,"version":2,"componentBased":false},{"name":"minecraft:hard_glass","id":253,"version":2,"componentBased":false},{"name":"minecraft:hard_glass_pane","id":190,"version":2,"componentBased":false},{"name":"minecraft:hard_gray_stained_glass","id":-694,"version":2,"componentBased":false},{"name":"minecraft:hard_gray_stained_glass_pane","id":-664,"version":2,"componentBased":false},{"name":"minecraft:hard_green_stained_glass","id":-700,"version":2,"componentBased":false},{"name":"minecraft:hard_green_stained_glass_pane","id":-670,"version":2,"componentBased":false},{"name":"minecraft:hard_light_blue_stained_glass","id":-690,"version":2,"componentBased":false},{"name":"minecraft:hard_light_blue_stained_glass_pane","id":-660,"version":2,"componentBased":false},{"name":"minecraft:hard_light_gray_stained_glass","id":-695,"version":2,"componentBased":false},{"name":"minecraft:hard_light_gray_stained_glass_pane","id":-665,"version":2,"componentBased":false},{"name":"minecraft:hard_lime_stained_glass","id":-692,"version":2,"componentBased":false},{"name":"minecraft:hard_lime_stained_glass_pane","id":-662,"version":2,"componentBased":false},{"name":"minecraft:hard_magenta_stained_glass","id":-689,"version":2,"componentBased":false},{"name":"minecraft:hard_magenta_stained_glass_pane","id":-659,"version":2,"componentBased":false},{"name":"minecraft:hard_orange_stained_glass","id":-688,"version":2,"componentBased":false},{"name":"minecraft:hard_orange_stained_glass_pane","id":-658,"version":2,"componentBased":false},{"name":"minecraft:hard_pink_stained_glass","id":-693,"version":2,"componentBased":false},{"name":"minecraft:hard_pink_stained_glass_pane","id":-663,"version":2,"componentBased":false},{"name":"minecraft:hard_purple_stained_glass","id":-697,"version":2,"componentBased":false},{"name":"minecraft:hard_purple_stained_glass_pane","id":-667,"version":2,"componentBased":false},{"name":"minecraft:hard_red_stained_glass","id":-701,"version":2,"componentBased":false},{"name":"minecraft:hard_red_stained_glass_pane","id":-671,"version":2,"componentBased":false},{"name":"minecraft:hard_stained_glass","id":788,"version":2,"componentBased":false},{"name":"minecraft:hard_stained_glass_pane","id":789,"version":2,"componentBased":false},{"name":"minecraft:hard_white_stained_glass","id":254,"version":2,"componentBased":false},{"name":"minecraft:hard_white_stained_glass_pane","id":191,"version":2,"componentBased":false},{"name":"minecraft:hard_yellow_stained_glass","id":-691,"version":2,"componentBased":false},{"name":"minecraft:hard_yellow_stained_glass_pane","id":-661,"version":2,"componentBased":false},{"name":"minecraft:hardened_clay","id":172,"version":2,"componentBased":false},{"name":"minecraft:hay_block","id":170,"version":2,"componentBased":false},{"name":"minecraft:heart_of_the_sea","id":604,"version":2,"componentBased":false},{"name":"minecraft:heart_pottery_sherd","id":704,"version":2,"componentBased":false},{"name":"minecraft:heartbreak_pottery_sherd","id":705,"version":2,"componentBased":false},{"name":"minecraft:heavy_core","id":-316,"version":2,"componentBased":false},{"name":"minecraft:heavy_weighted_pressure_plate","id":148,"version":2,"componentBased":false},{"name":"minecraft:hoglin_spawn_egg","id":524,"version":2,"componentBased":false},{"name":"minecraft:honey_block","id":-220,"version":2,"componentBased":false},{"name":"minecraft:honey_bottle","id":627,"version":0,"componentBased":false},{"name":"minecraft:honeycomb","id":626,"version":0,"componentBased":false},{"name":"minecraft:honeycomb_block","id":-221,"version":2,"componentBased":false},{"name":"minecraft:hopper","id":560,"version":2,"componentBased":true},{"name":"minecraft:hopper_minecart","id":559,"version":2,"componentBased":false},{"name":"minecraft:horn_coral","id":-584,"version":2,"componentBased":false},{"name":"minecraft:horn_coral_block","id":-852,"version":2,"componentBased":false},{"name":"minecraft:horn_coral_fan","id":-843,"version":2,"componentBased":false},{"name":"minecraft:horn_coral_wall_fan","id":-137,"version":2,"componentBased":false},{"name":"minecraft:horse_spawn_egg","id":485,"version":2,"componentBased":false},{"name":"minecraft:host_armor_trim_smithing_template","id":733,"version":2,"componentBased":false},{"name":"minecraft:howl_pottery_sherd","id":706,"version":2,"componentBased":false},{"name":"minecraft:husk_spawn_egg","id":491,"version":2,"componentBased":false},{"name":"minecraft:ice","id":79,"version":2,"componentBased":false},{"name":"minecraft:ice_bomb","id":632,"version":2,"componentBased":false},{"name":"minecraft:infested_chiseled_stone_bricks","id":-862,"version":2,"componentBased":false},{"name":"minecraft:infested_cobblestone","id":-858,"version":2,"componentBased":false},{"name":"minecraft:infested_cracked_stone_bricks","id":-861,"version":2,"componentBased":false},{"name":"minecraft:infested_deepslate","id":-454,"version":2,"componentBased":false},{"name":"minecraft:infested_mossy_stone_bricks","id":-860,"version":2,"componentBased":false},{"name":"minecraft:infested_stone","id":97,"version":2,"componentBased":false},{"name":"minecraft:infested_stone_bricks","id":-859,"version":2,"componentBased":false},{"name":"minecraft:info_update","id":248,"version":2,"componentBased":false},{"name":"minecraft:info_update2","id":249,"version":2,"componentBased":false},{"name":"minecraft:ink_sac","id":439,"version":2,"componentBased":false},{"name":"minecraft:invisible_bedrock","id":95,"version":2,"componentBased":false},{"name":"minecraft:iron_axe","id":322,"version":2,"componentBased":false},{"name":"minecraft:iron_bars","id":101,"version":2,"componentBased":false},{"name":"minecraft:iron_block","id":42,"version":2,"componentBased":false},{"name":"minecraft:iron_boots","id":371,"version":2,"componentBased":false},{"name":"minecraft:iron_chestplate","id":369,"version":2,"componentBased":false},{"name":"minecraft:iron_door","id":397,"version":2,"componentBased":false},{"name":"minecraft:iron_golem_spawn_egg","id":533,"version":2,"componentBased":false},{"name":"minecraft:iron_helmet","id":368,"version":2,"componentBased":false},{"name":"minecraft:iron_hoe","id":356,"version":2,"componentBased":false},{"name":"minecraft:iron_horse_armor","id":564,"version":2,"componentBased":false},{"name":"minecraft:iron_ingot","id":329,"version":2,"componentBased":false},{"name":"minecraft:iron_leggings","id":370,"version":2,"componentBased":false},{"name":"minecraft:iron_nugget","id":602,"version":2,"componentBased":false},{"name":"minecraft:iron_ore","id":15,"version":2,"componentBased":false},{"name":"minecraft:iron_pickaxe","id":321,"version":2,"componentBased":false},{"name":"minecraft:iron_shovel","id":320,"version":2,"componentBased":false},{"name":"minecraft:iron_sword","id":331,"version":2,"componentBased":false},{"name":"minecraft:iron_trapdoor","id":167,"version":2,"componentBased":false},{"name":"minecraft:item.acacia_door","id":196,"version":2,"componentBased":false},{"name":"minecraft:item.bed","id":26,"version":2,"componentBased":false},{"name":"minecraft:item.beetroot","id":244,"version":2,"componentBased":false},{"name":"minecraft:item.birch_door","id":194,"version":2,"componentBased":false},{"name":"minecraft:item.brewing_stand","id":117,"version":2,"componentBased":false},{"name":"minecraft:item.cake","id":92,"version":2,"componentBased":false},{"name":"minecraft:item.camera","id":242,"version":2,"componentBased":false},{"name":"minecraft:item.campfire","id":-209,"version":2,"componentBased":false},{"name":"minecraft:item.cauldron","id":118,"version":2,"componentBased":false},{"name":"minecraft:item.chain","id":-286,"version":2,"componentBased":false},{"name":"minecraft:item.crimson_door","id":-244,"version":2,"componentBased":false},{"name":"minecraft:item.dark_oak_door","id":197,"version":2,"componentBased":false},{"name":"minecraft:item.flower_pot","id":140,"version":2,"componentBased":false},{"name":"minecraft:item.frame","id":199,"version":2,"componentBased":false},{"name":"minecraft:item.glow_frame","id":-339,"version":2,"componentBased":false},{"name":"minecraft:item.hopper","id":154,"version":2,"componentBased":false},{"name":"minecraft:item.iron_door","id":71,"version":2,"componentBased":false},{"name":"minecraft:item.jungle_door","id":195,"version":2,"componentBased":false},{"name":"minecraft:item.kelp","id":-138,"version":2,"componentBased":false},{"name":"minecraft:item.mangrove_door","id":-493,"version":2,"componentBased":false},{"name":"minecraft:item.nether_sprouts","id":-238,"version":2,"componentBased":false},{"name":"minecraft:item.nether_wart","id":115,"version":2,"componentBased":false},{"name":"minecraft:item.reeds","id":83,"version":2,"componentBased":false},{"name":"minecraft:item.soul_campfire","id":-290,"version":2,"componentBased":false},{"name":"minecraft:item.spruce_door","id":193,"version":2,"componentBased":false},{"name":"minecraft:item.warped_door","id":-245,"version":2,"componentBased":false},{"name":"minecraft:item.wheat","id":59,"version":2,"componentBased":false},{"name":"minecraft:item.wooden_door","id":64,"version":2,"componentBased":false},{"name":"minecraft:jigsaw","id":-211,"version":2,"componentBased":false},{"name":"minecraft:jukebox","id":84,"version":2,"componentBased":false},{"name":"minecraft:jungle_boat","id":403,"version":2,"componentBased":false},{"name":"minecraft:jungle_button","id":-143,"version":2,"componentBased":false},{"name":"minecraft:jungle_chest_boat","id":677,"version":2,"componentBased":false},{"name":"minecraft:jungle_door","id":588,"version":2,"componentBased":false},{"name":"minecraft:jungle_double_slab","id":-811,"version":2,"componentBased":false},{"name":"minecraft:jungle_fence","id":-578,"version":2,"componentBased":false},{"name":"minecraft:jungle_fence_gate","id":185,"version":2,"componentBased":false},{"name":"minecraft:jungle_hanging_sign","id":-503,"version":2,"componentBased":false},{"name":"minecraft:jungle_leaves","id":-802,"version":2,"componentBased":false},{"name":"minecraft:jungle_log","id":-571,"version":2,"componentBased":false},{"name":"minecraft:jungle_planks","id":-741,"version":2,"componentBased":false},{"name":"minecraft:jungle_pressure_plate","id":-153,"version":2,"componentBased":false},{"name":"minecraft:jungle_sapling","id":-827,"version":2,"componentBased":false},{"name":"minecraft:jungle_sign","id":611,"version":2,"componentBased":false},{"name":"minecraft:jungle_slab","id":-806,"version":2,"componentBased":false},{"name":"minecraft:jungle_stairs","id":136,"version":2,"componentBased":false},{"name":"minecraft:jungle_standing_sign","id":-188,"version":2,"componentBased":false},{"name":"minecraft:jungle_trapdoor","id":-148,"version":2,"componentBased":false},{"name":"minecraft:jungle_wall_sign","id":-189,"version":2,"componentBased":false},{"name":"minecraft:jungle_wood","id":-816,"version":2,"componentBased":false},{"name":"minecraft:kelp","id":408,"version":2,"componentBased":true},{"name":"minecraft:lab_table","id":-988,"version":2,"componentBased":false},{"name":"minecraft:ladder","id":65,"version":2,"componentBased":false},{"name":"minecraft:lantern","id":-208,"version":2,"componentBased":false},{"name":"minecraft:lapis_block","id":22,"version":2,"componentBased":false},{"name":"minecraft:lapis_lazuli","id":440,"version":2,"componentBased":false},{"name":"minecraft:lapis_ore","id":21,"version":2,"componentBased":false},{"name":"minecraft:large_amethyst_bud","id":-330,"version":2,"componentBased":false},{"name":"minecraft:large_fern","id":-865,"version":2,"componentBased":false},{"name":"minecraft:lava","id":11,"version":2,"componentBased":false},{"name":"minecraft:lava_bucket","id":388,"version":2,"componentBased":false},{"name":"minecraft:lead","id":580,"version":2,"componentBased":false},{"name":"minecraft:leaf_litter","id":-1026,"version":2,"componentBased":false},{"name":"minecraft:leather","id":407,"version":2,"componentBased":false},{"name":"minecraft:leather_boots","id":363,"version":2,"componentBased":false},{"name":"minecraft:leather_chestplate","id":361,"version":2,"componentBased":false},{"name":"minecraft:leather_helmet","id":360,"version":2,"componentBased":false},{"name":"minecraft:leather_horse_armor","id":563,"version":2,"componentBased":false},{"name":"minecraft:leather_leggings","id":362,"version":2,"componentBased":false},{"name":"minecraft:leaves","id":768,"version":2,"componentBased":false},{"name":"minecraft:leaves2","id":769,"version":2,"componentBased":false},{"name":"minecraft:lectern","id":-194,"version":2,"componentBased":false},{"name":"minecraft:lever","id":69,"version":2,"componentBased":false},{"name":"minecraft:light_block","id":792,"version":2,"componentBased":false},{"name":"minecraft:light_block_0","id":-215,"version":2,"componentBased":false},{"name":"minecraft:light_block_1","id":-929,"version":2,"componentBased":false},{"name":"minecraft:light_block_10","id":-938,"version":2,"componentBased":false},{"name":"minecraft:light_block_11","id":-939,"version":2,"componentBased":false},{"name":"minecraft:light_block_12","id":-940,"version":2,"componentBased":false},{"name":"minecraft:light_block_13","id":-941,"version":2,"componentBased":false},{"name":"minecraft:light_block_14","id":-942,"version":2,"componentBased":false},{"name":"minecraft:light_block_15","id":-943,"version":2,"componentBased":false},{"name":"minecraft:light_block_2","id":-930,"version":2,"componentBased":false},{"name":"minecraft:light_block_3","id":-931,"version":2,"componentBased":false},{"name":"minecraft:light_block_4","id":-932,"version":2,"componentBased":false},{"name":"minecraft:light_block_5","id":-933,"version":2,"componentBased":false},{"name":"minecraft:light_block_6","id":-934,"version":2,"componentBased":false},{"name":"minecraft:light_block_7","id":-935,"version":2,"componentBased":false},{"name":"minecraft:light_block_8","id":-936,"version":2,"componentBased":false},{"name":"minecraft:light_block_9","id":-937,"version":2,"componentBased":false},{"name":"minecraft:light_blue_bundle","id":264,"version":1,"componentBased":true},{"name":"minecraft:light_blue_candle","id":-416,"version":2,"componentBased":false},{"name":"minecraft:light_blue_candle_cake","id":-433,"version":2,"componentBased":false},{"name":"minecraft:light_blue_carpet","id":-599,"version":2,"componentBased":false},{"name":"minecraft:light_blue_concrete","id":-630,"version":2,"componentBased":false},{"name":"minecraft:light_blue_concrete_powder","id":-711,"version":2,"componentBased":false},{"name":"minecraft:light_blue_dye","id":433,"version":2,"componentBased":false},{"name":"minecraft:light_blue_glazed_terracotta","id":223,"version":2,"componentBased":false},{"name":"minecraft:light_blue_shulker_box","id":-615,"version":2,"componentBased":false},{"name":"minecraft:light_blue_stained_glass","id":-675,"version":2,"componentBased":false},{"name":"minecraft:light_blue_stained_glass_pane","id":-645,"version":2,"componentBased":false},{"name":"minecraft:light_blue_terracotta","id":-726,"version":2,"componentBased":false},{"name":"minecraft:light_blue_wool","id":-562,"version":2,"componentBased":false},{"name":"minecraft:light_gray_bundle","id":265,"version":1,"componentBased":true},{"name":"minecraft:light_gray_candle","id":-421,"version":2,"componentBased":false},{"name":"minecraft:light_gray_candle_cake","id":-438,"version":2,"componentBased":false},{"name":"minecraft:light_gray_carpet","id":-604,"version":2,"componentBased":false},{"name":"minecraft:light_gray_concrete","id":-635,"version":2,"componentBased":false},{"name":"minecraft:light_gray_concrete_powder","id":-716,"version":2,"componentBased":false},{"name":"minecraft:light_gray_dye","id":428,"version":2,"componentBased":false},{"name":"minecraft:light_gray_shulker_box","id":-620,"version":2,"componentBased":false},{"name":"minecraft:light_gray_stained_glass","id":-680,"version":2,"componentBased":false},{"name":"minecraft:light_gray_stained_glass_pane","id":-650,"version":2,"componentBased":false},{"name":"minecraft:light_gray_terracotta","id":-731,"version":2,"componentBased":false},{"name":"minecraft:light_gray_wool","id":-552,"version":2,"componentBased":false},{"name":"minecraft:light_weighted_pressure_plate","id":147,"version":2,"componentBased":false},{"name":"minecraft:lightning_rod","id":-312,"version":2,"componentBased":false},{"name":"minecraft:lilac","id":-863,"version":2,"componentBased":false},{"name":"minecraft:lily_of_the_valley","id":-839,"version":2,"componentBased":false},{"name":"minecraft:lime_bundle","id":266,"version":1,"componentBased":true},{"name":"minecraft:lime_candle","id":-418,"version":2,"componentBased":false},{"name":"minecraft:lime_candle_cake","id":-435,"version":2,"componentBased":false},{"name":"minecraft:lime_carpet","id":-601,"version":2,"componentBased":false},{"name":"minecraft:lime_concrete","id":-632,"version":2,"componentBased":false},{"name":"minecraft:lime_concrete_powder","id":-713,"version":2,"componentBased":false},{"name":"minecraft:lime_dye","id":431,"version":2,"componentBased":false},{"name":"minecraft:lime_glazed_terracotta","id":225,"version":2,"componentBased":false},{"name":"minecraft:lime_shulker_box","id":-617,"version":2,"componentBased":false},{"name":"minecraft:lime_stained_glass","id":-677,"version":2,"componentBased":false},{"name":"minecraft:lime_stained_glass_pane","id":-647,"version":2,"componentBased":false},{"name":"minecraft:lime_terracotta","id":-728,"version":2,"componentBased":false},{"name":"minecraft:lime_wool","id":-559,"version":2,"componentBased":false},{"name":"minecraft:lingering_potion","id":595,"version":2,"componentBased":false},{"name":"minecraft:lit_blast_furnace","id":-214,"version":2,"componentBased":false},{"name":"minecraft:lit_deepslate_redstone_ore","id":-404,"version":2,"componentBased":false},{"name":"minecraft:lit_furnace","id":62,"version":2,"componentBased":false},{"name":"minecraft:lit_pumpkin","id":91,"version":2,"componentBased":false},{"name":"minecraft:lit_redstone_lamp","id":124,"version":2,"componentBased":false},{"name":"minecraft:lit_redstone_ore","id":74,"version":2,"componentBased":false},{"name":"minecraft:lit_smoker","id":-199,"version":2,"componentBased":false},{"name":"minecraft:llama_spawn_egg","id":501,"version":2,"componentBased":false},{"name":"minecraft:lodestone","id":-222,"version":2,"componentBased":false},{"name":"minecraft:lodestone_compass","id":639,"version":2,"componentBased":false},{"name":"minecraft:log","id":753,"version":2,"componentBased":false},{"name":"minecraft:log2","id":776,"version":2,"componentBased":false},{"name":"minecraft:loom","id":-204,"version":2,"componentBased":false},{"name":"minecraft:mace","id":344,"version":2,"componentBased":false},{"name":"minecraft:magenta_bundle","id":267,"version":1,"componentBased":true},{"name":"minecraft:magenta_candle","id":-415,"version":2,"componentBased":false},{"name":"minecraft:magenta_candle_cake","id":-432,"version":2,"componentBased":false},{"name":"minecraft:magenta_carpet","id":-598,"version":2,"componentBased":false},{"name":"minecraft:magenta_concrete","id":-629,"version":2,"componentBased":false},{"name":"minecraft:magenta_concrete_powder","id":-710,"version":2,"componentBased":false},{"name":"minecraft:magenta_dye","id":434,"version":2,"componentBased":false},{"name":"minecraft:magenta_glazed_terracotta","id":222,"version":2,"componentBased":false},{"name":"minecraft:magenta_shulker_box","id":-614,"version":2,"componentBased":false},{"name":"minecraft:magenta_stained_glass","id":-674,"version":2,"componentBased":false},{"name":"minecraft:magenta_stained_glass_pane","id":-644,"version":2,"componentBased":false},{"name":"minecraft:magenta_terracotta","id":-725,"version":2,"componentBased":false},{"name":"minecraft:magenta_wool","id":-565,"version":2,"componentBased":false},{"name":"minecraft:magma","id":213,"version":2,"componentBased":false},{"name":"minecraft:magma_cream","id":457,"version":2,"componentBased":false},{"name":"minecraft:magma_cube_spawn_egg","id":482,"version":2,"componentBased":false},{"name":"minecraft:mangrove_boat","id":672,"version":2,"componentBased":false},{"name":"minecraft:mangrove_button","id":-487,"version":2,"componentBased":false},{"name":"minecraft:mangrove_chest_boat","id":681,"version":2,"componentBased":false},{"name":"minecraft:mangrove_door","id":670,"version":2,"componentBased":false},{"name":"minecraft:mangrove_double_slab","id":-499,"version":2,"componentBased":false},{"name":"minecraft:mangrove_fence","id":-491,"version":2,"componentBased":false},{"name":"minecraft:mangrove_fence_gate","id":-492,"version":2,"componentBased":false},{"name":"minecraft:mangrove_hanging_sign","id":-508,"version":2,"componentBased":false},{"name":"minecraft:mangrove_leaves","id":-472,"version":2,"componentBased":false},{"name":"minecraft:mangrove_log","id":-484,"version":2,"componentBased":false},{"name":"minecraft:mangrove_planks","id":-486,"version":2,"componentBased":false},{"name":"minecraft:mangrove_pressure_plate","id":-490,"version":2,"componentBased":false},{"name":"minecraft:mangrove_propagule","id":-474,"version":2,"componentBased":false},{"name":"minecraft:mangrove_roots","id":-482,"version":2,"componentBased":false},{"name":"minecraft:mangrove_sign","id":671,"version":2,"componentBased":false},{"name":"minecraft:mangrove_slab","id":-489,"version":2,"componentBased":false},{"name":"minecraft:mangrove_stairs","id":-488,"version":2,"componentBased":false},{"name":"minecraft:mangrove_standing_sign","id":-494,"version":2,"componentBased":false},{"name":"minecraft:mangrove_trapdoor","id":-496,"version":2,"componentBased":false},{"name":"minecraft:mangrove_wall_sign","id":-495,"version":2,"componentBased":false},{"name":"minecraft:mangrove_wood","id":-497,"version":2,"componentBased":false},{"name":"minecraft:material_reducer","id":-986,"version":2,"componentBased":false},{"name":"minecraft:medicine","id":636,"version":2,"componentBased":false},{"name":"minecraft:medium_amethyst_bud","id":-331,"version":2,"componentBased":false},{"name":"minecraft:melon_block","id":103,"version":2,"componentBased":false},{"name":"minecraft:melon_seeds","id":315,"version":0,"componentBased":false},{"name":"minecraft:melon_slice","id":294,"version":0,"componentBased":false},{"name":"minecraft:melon_stem","id":105,"version":2,"componentBased":false},{"name":"minecraft:milk_bucket","id":386,"version":2,"componentBased":false},{"name":"minecraft:minecart","id":395,"version":2,"componentBased":false},{"name":"minecraft:miner_pottery_sherd","id":707,"version":2,"componentBased":false},{"name":"minecraft:mob_spawner","id":52,"version":2,"componentBased":false},{"name":"minecraft:mojang_banner_pattern","id":617,"version":2,"componentBased":false},{"name":"minecraft:monster_egg","id":777,"version":2,"componentBased":false},{"name":"minecraft:mooshroom_spawn_egg","id":467,"version":2,"componentBased":false},{"name":"minecraft:moss_block","id":-320,"version":2,"componentBased":false},{"name":"minecraft:moss_carpet","id":-335,"version":2,"componentBased":false},{"name":"minecraft:mossy_cobblestone","id":48,"version":2,"componentBased":false},{"name":"minecraft:mossy_cobblestone_double_slab","id":-915,"version":2,"componentBased":false},{"name":"minecraft:mossy_cobblestone_slab","id":-888,"version":2,"componentBased":false},{"name":"minecraft:mossy_cobblestone_stairs","id":-179,"version":2,"componentBased":false},{"name":"minecraft:mossy_cobblestone_wall","id":-971,"version":2,"componentBased":false},{"name":"minecraft:mossy_stone_brick_double_slab","id":-168,"version":2,"componentBased":false},{"name":"minecraft:mossy_stone_brick_slab","id":-166,"version":2,"componentBased":false},{"name":"minecraft:mossy_stone_brick_stairs","id":-175,"version":2,"componentBased":false},{"name":"minecraft:mossy_stone_brick_wall","id":-978,"version":2,"componentBased":false},{"name":"minecraft:mossy_stone_bricks","id":-868,"version":2,"componentBased":false},{"name":"minecraft:mourner_pottery_sherd","id":708,"version":2,"componentBased":false},{"name":"minecraft:moving_block","id":250,"version":2,"componentBased":false},{"name":"minecraft:mud","id":-473,"version":2,"componentBased":false},{"name":"minecraft:mud_brick_double_slab","id":-479,"version":2,"componentBased":false},{"name":"minecraft:mud_brick_slab","id":-478,"version":2,"componentBased":false},{"name":"minecraft:mud_brick_stairs","id":-480,"version":2,"componentBased":false},{"name":"minecraft:mud_brick_wall","id":-481,"version":2,"componentBased":false},{"name":"minecraft:mud_bricks","id":-475,"version":2,"componentBased":false},{"name":"minecraft:muddy_mangrove_roots","id":-483,"version":2,"componentBased":false},{"name":"minecraft:mule_spawn_egg","id":494,"version":2,"componentBased":false},{"name":"minecraft:mushroom_stem","id":-1008,"version":2,"componentBased":false},{"name":"minecraft:mushroom_stew","id":282,"version":0,"componentBased":false},{"name":"minecraft:music_disc_11","id":577,"version":2,"componentBased":true},{"name":"minecraft:music_disc_13","id":567,"version":2,"componentBased":true},{"name":"minecraft:music_disc_5","id":673,"version":2,"componentBased":true},{"name":"minecraft:music_disc_blocks","id":569,"version":2,"componentBased":true},{"name":"minecraft:music_disc_cat","id":568,"version":2,"componentBased":true},{"name":"minecraft:music_disc_chirp","id":570,"version":2,"componentBased":true},{"name":"minecraft:music_disc_creator","id":784,"version":2,"componentBased":true},{"name":"minecraft:music_disc_creator_music_box","id":785,"version":2,"componentBased":true},{"name":"minecraft:music_disc_far","id":571,"version":2,"componentBased":true},{"name":"minecraft:music_disc_mall","id":572,"version":2,"componentBased":true},{"name":"minecraft:music_disc_mellohi","id":573,"version":2,"componentBased":true},{"name":"minecraft:music_disc_otherside","id":663,"version":2,"componentBased":true},{"name":"minecraft:music_disc_pigstep","id":657,"version":2,"componentBased":true},{"name":"minecraft:music_disc_precipice","id":786,"version":2,"componentBased":true},{"name":"minecraft:music_disc_relic","id":736,"version":2,"componentBased":true},{"name":"minecraft:music_disc_stal","id":574,"version":2,"componentBased":true},{"name":"minecraft:music_disc_strad","id":575,"version":2,"componentBased":true},{"name":"minecraft:music_disc_wait","id":578,"version":2,"componentBased":true},{"name":"minecraft:music_disc_ward","id":576,"version":2,"componentBased":true},{"name":"minecraft:mutton","id":583,"version":0,"componentBased":false},{"name":"minecraft:mycelium","id":110,"version":2,"componentBased":false},{"name":"minecraft:name_tag","id":581,"version":2,"componentBased":false},{"name":"minecraft:nautilus_shell","id":603,"version":2,"componentBased":false},{"name":"minecraft:nether_brick","id":112,"version":2,"componentBased":false},{"name":"minecraft:nether_brick_double_slab","id":-883,"version":2,"componentBased":false},{"name":"minecraft:nether_brick_fence","id":113,"version":2,"componentBased":false},{"name":"minecraft:nether_brick_slab","id":-877,"version":2,"componentBased":false},{"name":"minecraft:nether_brick_stairs","id":114,"version":2,"componentBased":false},{"name":"minecraft:nether_brick_wall","id":-979,"version":2,"componentBased":false},{"name":"minecraft:nether_gold_ore","id":-288,"version":2,"componentBased":false},{"name":"minecraft:nether_sprouts","id":658,"version":2,"componentBased":true},{"name":"minecraft:nether_star","id":551,"version":2,"componentBased":false},{"name":"minecraft:nether_wart","id":316,"version":0,"componentBased":false},{"name":"minecraft:nether_wart_block","id":214,"version":2,"componentBased":false},{"name":"minecraft:netherbrick","id":556,"version":2,"componentBased":false},{"name":"minecraft:netherite_axe","id":643,"version":2,"componentBased":false},{"name":"minecraft:netherite_block","id":-270,"version":2,"componentBased":false},{"name":"minecraft:netherite_boots","id":649,"version":2,"componentBased":false},{"name":"minecraft:netherite_chestplate","id":647,"version":2,"componentBased":false},{"name":"minecraft:netherite_helmet","id":646,"version":2,"componentBased":false},{"name":"minecraft:netherite_hoe","id":644,"version":2,"componentBased":false},{"name":"minecraft:netherite_ingot","id":645,"version":2,"componentBased":false},{"name":"minecraft:netherite_leggings","id":648,"version":2,"componentBased":false},{"name":"minecraft:netherite_pickaxe","id":642,"version":2,"componentBased":false},{"name":"minecraft:netherite_scrap","id":650,"version":2,"componentBased":false},{"name":"minecraft:netherite_shovel","id":641,"version":2,"componentBased":false},{"name":"minecraft:netherite_sword","id":640,"version":2,"componentBased":false},{"name":"minecraft:netherite_upgrade_smithing_template","id":717,"version":2,"componentBased":false},{"name":"minecraft:netherrack","id":87,"version":2,"componentBased":false},{"name":"minecraft:netherreactor","id":247,"version":2,"componentBased":false},{"name":"minecraft:normal_stone_double_slab","id":-926,"version":2,"componentBased":false},{"name":"minecraft:normal_stone_slab","id":-899,"version":2,"componentBased":false},{"name":"minecraft:normal_stone_stairs","id":-180,"version":2,"componentBased":false},{"name":"minecraft:noteblock","id":25,"version":2,"componentBased":false},{"name":"minecraft:npc_spawn_egg","id":498,"version":2,"componentBased":false},{"name":"minecraft:oak_boat","id":401,"version":2,"componentBased":false},{"name":"minecraft:oak_chest_boat","id":675,"version":2,"componentBased":false},{"name":"minecraft:oak_double_slab","id":157,"version":2,"componentBased":false},{"name":"minecraft:oak_fence","id":85,"version":2,"componentBased":false},{"name":"minecraft:oak_hanging_sign","id":-500,"version":2,"componentBased":false},{"name":"minecraft:oak_leaves","id":18,"version":2,"componentBased":false},{"name":"minecraft:oak_log","id":17,"version":2,"componentBased":false},{"name":"minecraft:oak_planks","id":5,"version":2,"componentBased":false},{"name":"minecraft:oak_sapling","id":6,"version":2,"componentBased":false},{"name":"minecraft:oak_sign","id":383,"version":2,"componentBased":false},{"name":"minecraft:oak_slab","id":158,"version":2,"componentBased":false},{"name":"minecraft:oak_stairs","id":53,"version":2,"componentBased":false},{"name":"minecraft:oak_wood","id":-212,"version":2,"componentBased":false},{"name":"minecraft:observer","id":251,"version":2,"componentBased":false},{"name":"minecraft:obsidian","id":49,"version":2,"componentBased":false},{"name":"minecraft:ocelot_spawn_egg","id":478,"version":2,"componentBased":false},{"name":"minecraft:ochre_froglight","id":-471,"version":2,"componentBased":false},{"name":"minecraft:ominous_bottle","id":628,"version":2,"componentBased":false},{"name":"minecraft:ominous_trial_key","id":275,"version":1,"componentBased":true},{"name":"minecraft:open_eyeblossom","id":-1018,"version":2,"componentBased":false},{"name":"minecraft:orange_bundle","id":268,"version":1,"componentBased":true},{"name":"minecraft:orange_candle","id":-414,"version":2,"componentBased":false},{"name":"minecraft:orange_candle_cake","id":-431,"version":2,"componentBased":false},{"name":"minecraft:orange_carpet","id":-597,"version":2,"componentBased":false},{"name":"minecraft:orange_concrete","id":-628,"version":2,"componentBased":false},{"name":"minecraft:orange_concrete_powder","id":-709,"version":2,"componentBased":false},{"name":"minecraft:orange_dye","id":435,"version":2,"componentBased":false},{"name":"minecraft:orange_glazed_terracotta","id":221,"version":2,"componentBased":false},{"name":"minecraft:orange_shulker_box","id":-613,"version":2,"componentBased":false},{"name":"minecraft:orange_stained_glass","id":-673,"version":2,"componentBased":false},{"name":"minecraft:orange_stained_glass_pane","id":-643,"version":2,"componentBased":false},{"name":"minecraft:orange_terracotta","id":-724,"version":2,"componentBased":false},{"name":"minecraft:orange_tulip","id":-834,"version":2,"componentBased":false},{"name":"minecraft:orange_wool","id":-557,"version":2,"componentBased":false},{"name":"minecraft:oxeye_daisy","id":-837,"version":2,"componentBased":false},{"name":"minecraft:oxidized_chiseled_copper","id":-763,"version":2,"componentBased":false},{"name":"minecraft:oxidized_copper","id":-343,"version":2,"componentBased":false},{"name":"minecraft:oxidized_copper_bulb","id":-779,"version":2,"componentBased":false},{"name":"minecraft:oxidized_copper_door","id":-787,"version":2,"componentBased":false},{"name":"minecraft:oxidized_copper_grate","id":-771,"version":2,"componentBased":false},{"name":"minecraft:oxidized_copper_trapdoor","id":-795,"version":2,"componentBased":false},{"name":"minecraft:oxidized_cut_copper","id":-350,"version":2,"componentBased":false},{"name":"minecraft:oxidized_cut_copper_slab","id":-364,"version":2,"componentBased":false},{"name":"minecraft:oxidized_cut_copper_stairs","id":-357,"version":2,"componentBased":false},{"name":"minecraft:oxidized_double_cut_copper_slab","id":-371,"version":2,"componentBased":false},{"name":"minecraft:packed_ice","id":174,"version":2,"componentBased":false},{"name":"minecraft:packed_mud","id":-477,"version":2,"componentBased":false},{"name":"minecraft:painting","id":382,"version":2,"componentBased":false},{"name":"minecraft:pale_hanging_moss","id":-1011,"version":2,"componentBased":false},{"name":"minecraft:pale_moss_block","id":-1009,"version":2,"componentBased":false},{"name":"minecraft:pale_moss_carpet","id":-1010,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_boat","id":744,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_button","id":-989,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_chest_boat","id":745,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_door","id":-990,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_double_slab","id":-999,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_fence","id":-991,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_fence_gate","id":-992,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_hanging_sign","id":-993,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_leaves","id":-1007,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_log","id":-995,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_planks","id":-996,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_pressure_plate","id":-997,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_sapling","id":-1006,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_sign","id":746,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_slab","id":-998,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_stairs","id":-1000,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_standing_sign","id":-1001,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_trapdoor","id":-1002,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_wall_sign","id":-1003,"version":2,"componentBased":false},{"name":"minecraft:pale_oak_wood","id":-1005,"version":2,"componentBased":false},{"name":"minecraft:panda_spawn_egg","id":517,"version":2,"componentBased":false},{"name":"minecraft:paper","id":412,"version":2,"componentBased":false},{"name":"minecraft:parrot_spawn_egg","id":506,"version":2,"componentBased":false},{"name":"minecraft:pearlescent_froglight","id":-469,"version":2,"componentBased":false},{"name":"minecraft:peony","id":-867,"version":2,"componentBased":false},{"name":"minecraft:petrified_oak_double_slab","id":-903,"version":2,"componentBased":false},{"name":"minecraft:petrified_oak_slab","id":-902,"version":2,"componentBased":false},{"name":"minecraft:phantom_membrane","id":607,"version":2,"componentBased":false},{"name":"minecraft:phantom_spawn_egg","id":514,"version":2,"componentBased":false},{"name":"minecraft:pig_spawn_egg","id":464,"version":2,"componentBased":false},{"name":"minecraft:piglin_banner_pattern","id":620,"version":2,"componentBased":false},{"name":"minecraft:piglin_brute_spawn_egg","id":527,"version":2,"componentBased":false},{"name":"minecraft:piglin_head","id":-970,"version":2,"componentBased":false},{"name":"minecraft:piglin_spawn_egg","id":525,"version":2,"componentBased":false},{"name":"minecraft:pillager_spawn_egg","id":519,"version":2,"componentBased":false},{"name":"minecraft:pink_bundle","id":269,"version":1,"componentBased":true},{"name":"minecraft:pink_candle","id":-419,"version":2,"componentBased":false},{"name":"minecraft:pink_candle_cake","id":-436,"version":2,"componentBased":false},{"name":"minecraft:pink_carpet","id":-602,"version":2,"componentBased":false},{"name":"minecraft:pink_concrete","id":-633,"version":2,"componentBased":false},{"name":"minecraft:pink_concrete_powder","id":-714,"version":2,"componentBased":false},{"name":"minecraft:pink_dye","id":430,"version":2,"componentBased":false},{"name":"minecraft:pink_glazed_terracotta","id":226,"version":2,"componentBased":false},{"name":"minecraft:pink_petals","id":-549,"version":2,"componentBased":false},{"name":"minecraft:pink_shulker_box","id":-618,"version":2,"componentBased":false},{"name":"minecraft:pink_stained_glass","id":-678,"version":2,"componentBased":false},{"name":"minecraft:pink_stained_glass_pane","id":-648,"version":2,"componentBased":false},{"name":"minecraft:pink_terracotta","id":-729,"version":2,"componentBased":false},{"name":"minecraft:pink_tulip","id":-836,"version":2,"componentBased":false},{"name":"minecraft:pink_wool","id":-566,"version":2,"componentBased":false},{"name":"minecraft:piston","id":33,"version":2,"componentBased":false},{"name":"minecraft:piston_arm_collision","id":34,"version":2,"componentBased":false},{"name":"minecraft:pitcher_crop","id":-574,"version":2,"componentBased":false},{"name":"minecraft:pitcher_plant","id":-612,"version":2,"componentBased":false},{"name":"minecraft:pitcher_pod","id":319,"version":0,"componentBased":false},{"name":"minecraft:planks","id":773,"version":2,"componentBased":false},{"name":"minecraft:player_head","id":-967,"version":2,"componentBased":false},{"name":"minecraft:plenty_pottery_sherd","id":709,"version":2,"componentBased":false},{"name":"minecraft:podzol","id":243,"version":2,"componentBased":false},{"name":"minecraft:pointed_dripstone","id":-308,"version":2,"componentBased":false},{"name":"minecraft:poisonous_potato","id":304,"version":0,"componentBased":false},{"name":"minecraft:polar_bear_spawn_egg","id":500,"version":2,"componentBased":false},{"name":"minecraft:polished_andesite","id":-595,"version":2,"componentBased":false},{"name":"minecraft:polished_andesite_double_slab","id":-919,"version":2,"componentBased":false},{"name":"minecraft:polished_andesite_slab","id":-892,"version":2,"componentBased":false},{"name":"minecraft:polished_andesite_stairs","id":-174,"version":2,"componentBased":false},{"name":"minecraft:polished_basalt","id":-235,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone","id":-291,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_brick_double_slab","id":-285,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_brick_slab","id":-284,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_brick_stairs","id":-275,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_brick_wall","id":-278,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_bricks","id":-274,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_button","id":-296,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_double_slab","id":-294,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_pressure_plate","id":-295,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_slab","id":-293,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_stairs","id":-292,"version":2,"componentBased":false},{"name":"minecraft:polished_blackstone_wall","id":-297,"version":2,"componentBased":false},{"name":"minecraft:polished_deepslate","id":-383,"version":2,"componentBased":false},{"name":"minecraft:polished_deepslate_double_slab","id":-397,"version":2,"componentBased":false},{"name":"minecraft:polished_deepslate_slab","id":-384,"version":2,"componentBased":false},{"name":"minecraft:polished_deepslate_stairs","id":-385,"version":2,"componentBased":false},{"name":"minecraft:polished_deepslate_wall","id":-386,"version":2,"componentBased":false},{"name":"minecraft:polished_diorite","id":-593,"version":2,"componentBased":false},{"name":"minecraft:polished_diorite_double_slab","id":-922,"version":2,"componentBased":false},{"name":"minecraft:polished_diorite_slab","id":-895,"version":2,"componentBased":false},{"name":"minecraft:polished_diorite_stairs","id":-173,"version":2,"componentBased":false},{"name":"minecraft:polished_granite","id":-591,"version":2,"componentBased":false},{"name":"minecraft:polished_granite_double_slab","id":-924,"version":2,"componentBased":false},{"name":"minecraft:polished_granite_slab","id":-897,"version":2,"componentBased":false},{"name":"minecraft:polished_granite_stairs","id":-172,"version":2,"componentBased":false},{"name":"minecraft:polished_tuff","id":-748,"version":2,"componentBased":false},{"name":"minecraft:polished_tuff_double_slab","id":-750,"version":2,"componentBased":false},{"name":"minecraft:polished_tuff_slab","id":-749,"version":2,"componentBased":false},{"name":"minecraft:polished_tuff_stairs","id":-751,"version":2,"componentBased":false},{"name":"minecraft:polished_tuff_wall","id":-752,"version":2,"componentBased":false},{"name":"minecraft:popped_chorus_fruit","id":592,"version":2,"componentBased":false},{"name":"minecraft:poppy","id":38,"version":2,"componentBased":false},{"name":"minecraft:porkchop","id":284,"version":0,"componentBased":false},{"name":"minecraft:portal","id":90,"version":2,"componentBased":false},{"name":"minecraft:potato","id":302,"version":0,"componentBased":false},{"name":"minecraft:potatoes","id":142,"version":2,"componentBased":false},{"name":"minecraft:potion","id":453,"version":2,"componentBased":false},{"name":"minecraft:powder_snow","id":-306,"version":2,"componentBased":false},{"name":"minecraft:powder_snow_bucket","id":393,"version":2,"componentBased":false},{"name":"minecraft:powered_comparator","id":150,"version":2,"componentBased":false},{"name":"minecraft:powered_repeater","id":94,"version":2,"componentBased":false},{"name":"minecraft:prismarine","id":168,"version":2,"componentBased":false},{"name":"minecraft:prismarine_brick_double_slab","id":-914,"version":2,"componentBased":false},{"name":"minecraft:prismarine_brick_slab","id":-887,"version":2,"componentBased":false},{"name":"minecraft:prismarine_bricks","id":-948,"version":2,"componentBased":false},{"name":"minecraft:prismarine_bricks_stairs","id":-4,"version":2,"componentBased":false},{"name":"minecraft:prismarine_crystals","id":582,"version":2,"componentBased":false},{"name":"minecraft:prismarine_double_slab","id":-912,"version":2,"componentBased":false},{"name":"minecraft:prismarine_shard","id":598,"version":2,"componentBased":false},{"name":"minecraft:prismarine_slab","id":-885,"version":2,"componentBased":false},{"name":"minecraft:prismarine_stairs","id":-2,"version":2,"componentBased":false},{"name":"minecraft:prismarine_wall","id":-981,"version":2,"componentBased":false},{"name":"minecraft:prize_pottery_sherd","id":710,"version":2,"componentBased":false},{"name":"minecraft:pufferfish","id":289,"version":0,"componentBased":false},{"name":"minecraft:pufferfish_bucket","id":392,"version":2,"componentBased":false},{"name":"minecraft:pufferfish_spawn_egg","id":509,"version":2,"componentBased":false},{"name":"minecraft:pumpkin","id":86,"version":2,"componentBased":false},{"name":"minecraft:pumpkin_pie","id":306,"version":0,"componentBased":false},{"name":"minecraft:pumpkin_seeds","id":314,"version":0,"componentBased":false},{"name":"minecraft:pumpkin_stem","id":104,"version":2,"componentBased":false},{"name":"minecraft:purple_bundle","id":270,"version":1,"componentBased":true},{"name":"minecraft:purple_candle","id":-423,"version":2,"componentBased":false},{"name":"minecraft:purple_candle_cake","id":-440,"version":2,"componentBased":false},{"name":"minecraft:purple_carpet","id":-606,"version":2,"componentBased":false},{"name":"minecraft:purple_concrete","id":-637,"version":2,"componentBased":false},{"name":"minecraft:purple_concrete_powder","id":-718,"version":2,"componentBased":false},{"name":"minecraft:purple_dye","id":426,"version":2,"componentBased":false},{"name":"minecraft:purple_glazed_terracotta","id":219,"version":2,"componentBased":false},{"name":"minecraft:purple_shulker_box","id":-622,"version":2,"componentBased":false},{"name":"minecraft:purple_stained_glass","id":-682,"version":2,"componentBased":false},{"name":"minecraft:purple_stained_glass_pane","id":-652,"version":2,"componentBased":false},{"name":"minecraft:purple_terracotta","id":-733,"version":2,"componentBased":false},{"name":"minecraft:purple_wool","id":-564,"version":2,"componentBased":false},{"name":"minecraft:purpur_block","id":201,"version":2,"componentBased":false},{"name":"minecraft:purpur_double_slab","id":-911,"version":2,"componentBased":false},{"name":"minecraft:purpur_pillar","id":-951,"version":2,"componentBased":false},{"name":"minecraft:purpur_slab","id":-884,"version":2,"componentBased":false},{"name":"minecraft:purpur_stairs","id":203,"version":2,"componentBased":false},{"name":"minecraft:quartz","id":557,"version":2,"componentBased":false},{"name":"minecraft:quartz_block","id":155,"version":2,"componentBased":false},{"name":"minecraft:quartz_bricks","id":-304,"version":2,"componentBased":false},{"name":"minecraft:quartz_double_slab","id":-882,"version":2,"componentBased":false},{"name":"minecraft:quartz_ore","id":153,"version":2,"componentBased":false},{"name":"minecraft:quartz_pillar","id":-954,"version":2,"componentBased":false},{"name":"minecraft:quartz_slab","id":-876,"version":2,"componentBased":false},{"name":"minecraft:quartz_stairs","id":156,"version":2,"componentBased":false},{"name":"minecraft:rabbit","id":310,"version":0,"componentBased":false},{"name":"minecraft:rabbit_foot","id":561,"version":2,"componentBased":false},{"name":"minecraft:rabbit_hide","id":562,"version":2,"componentBased":false},{"name":"minecraft:rabbit_spawn_egg","id":486,"version":2,"componentBased":false},{"name":"minecraft:rabbit_stew","id":312,"version":0,"componentBased":false},{"name":"minecraft:rail","id":66,"version":2,"componentBased":false},{"name":"minecraft:raiser_armor_trim_smithing_template","id":731,"version":2,"componentBased":false},{"name":"minecraft:rapid_fertilizer","id":634,"version":2,"componentBased":false},{"name":"minecraft:ravager_spawn_egg","id":521,"version":2,"componentBased":false},{"name":"minecraft:raw_copper","id":541,"version":2,"componentBased":false},{"name":"minecraft:raw_copper_block","id":-452,"version":2,"componentBased":false},{"name":"minecraft:raw_gold","id":540,"version":2,"componentBased":false},{"name":"minecraft:raw_gold_block","id":-453,"version":2,"componentBased":false},{"name":"minecraft:raw_iron","id":539,"version":2,"componentBased":false},{"name":"minecraft:raw_iron_block","id":-451,"version":2,"componentBased":false},{"name":"minecraft:recovery_compass","id":683,"version":2,"componentBased":false},{"name":"minecraft:red_bundle","id":271,"version":1,"componentBased":true},{"name":"minecraft:red_candle","id":-427,"version":2,"componentBased":false},{"name":"minecraft:red_candle_cake","id":-444,"version":2,"componentBased":false},{"name":"minecraft:red_carpet","id":-610,"version":2,"componentBased":false},{"name":"minecraft:red_concrete","id":-641,"version":2,"componentBased":false},{"name":"minecraft:red_concrete_powder","id":-722,"version":2,"componentBased":false},{"name":"minecraft:red_dye","id":422,"version":2,"componentBased":false},{"name":"minecraft:red_flower","id":771,"version":2,"componentBased":false},{"name":"minecraft:red_glazed_terracotta","id":234,"version":2,"componentBased":false},{"name":"minecraft:red_mushroom","id":40,"version":2,"componentBased":false},{"name":"minecraft:red_mushroom_block","id":100,"version":2,"componentBased":false},{"name":"minecraft:red_nether_brick","id":215,"version":2,"componentBased":false},{"name":"minecraft:red_nether_brick_double_slab","id":-917,"version":2,"componentBased":false},{"name":"minecraft:red_nether_brick_slab","id":-890,"version":2,"componentBased":false},{"name":"minecraft:red_nether_brick_stairs","id":-184,"version":2,"componentBased":false},{"name":"minecraft:red_nether_brick_wall","id":-983,"version":2,"componentBased":false},{"name":"minecraft:red_sand","id":-949,"version":2,"componentBased":false},{"name":"minecraft:red_sandstone","id":179,"version":2,"componentBased":false},{"name":"minecraft:red_sandstone_double_slab","id":181,"version":2,"componentBased":false},{"name":"minecraft:red_sandstone_slab","id":182,"version":2,"componentBased":false},{"name":"minecraft:red_sandstone_stairs","id":180,"version":2,"componentBased":false},{"name":"minecraft:red_sandstone_wall","id":-982,"version":2,"componentBased":false},{"name":"minecraft:red_shulker_box","id":-626,"version":2,"componentBased":false},{"name":"minecraft:red_stained_glass","id":-686,"version":2,"componentBased":false},{"name":"minecraft:red_stained_glass_pane","id":-656,"version":2,"componentBased":false},{"name":"minecraft:red_terracotta","id":-737,"version":2,"componentBased":false},{"name":"minecraft:red_tulip","id":-833,"version":2,"componentBased":false},{"name":"minecraft:red_wool","id":-556,"version":2,"componentBased":false},{"name":"minecraft:redstone","id":398,"version":2,"componentBased":false},{"name":"minecraft:redstone_block","id":152,"version":2,"componentBased":false},{"name":"minecraft:redstone_lamp","id":123,"version":2,"componentBased":false},{"name":"minecraft:redstone_ore","id":73,"version":2,"componentBased":false},{"name":"minecraft:redstone_torch","id":76,"version":2,"componentBased":false},{"name":"minecraft:redstone_wire","id":55,"version":2,"componentBased":false},{"name":"minecraft:reinforced_deepslate","id":-466,"version":2,"componentBased":false},{"name":"minecraft:repeater","id":445,"version":2,"componentBased":true},{"name":"minecraft:repeating_command_block","id":188,"version":2,"componentBased":false},{"name":"minecraft:reserved6","id":255,"version":2,"componentBased":false},{"name":"minecraft:resin_block","id":-1021,"version":2,"componentBased":false},{"name":"minecraft:resin_brick","id":748,"version":2,"componentBased":false},{"name":"minecraft:resin_brick_double_slab","id":-1015,"version":2,"componentBased":false},{"name":"minecraft:resin_brick_slab","id":-1014,"version":2,"componentBased":false},{"name":"minecraft:resin_brick_stairs","id":-1016,"version":2,"componentBased":false},{"name":"minecraft:resin_brick_wall","id":-1017,"version":2,"componentBased":false},{"name":"minecraft:resin_bricks","id":-1013,"version":2,"componentBased":false},{"name":"minecraft:resin_clump","id":-1022,"version":2,"componentBased":false},{"name":"minecraft:respawn_anchor","id":-272,"version":2,"componentBased":false},{"name":"minecraft:rib_armor_trim_smithing_template","id":727,"version":2,"componentBased":false},{"name":"minecraft:rose_bush","id":-866,"version":2,"componentBased":false},{"name":"minecraft:rotten_flesh","id":299,"version":0,"componentBased":false},{"name":"minecraft:saddle","id":396,"version":2,"componentBased":false},{"name":"minecraft:salmon","id":287,"version":0,"componentBased":false},{"name":"minecraft:salmon_bucket","id":390,"version":2,"componentBased":false},{"name":"minecraft:salmon_spawn_egg","id":510,"version":2,"componentBased":false},{"name":"minecraft:sand","id":12,"version":2,"componentBased":false},{"name":"minecraft:sandstone","id":24,"version":2,"componentBased":false},{"name":"minecraft:sandstone_double_slab","id":-878,"version":2,"componentBased":false},{"name":"minecraft:sandstone_slab","id":-872,"version":2,"componentBased":false},{"name":"minecraft:sandstone_stairs","id":128,"version":2,"componentBased":false},{"name":"minecraft:sandstone_wall","id":-975,"version":2,"componentBased":false},{"name":"minecraft:sapling","id":767,"version":2,"componentBased":false},{"name":"minecraft:scaffolding","id":-165,"version":2,"componentBased":false},{"name":"minecraft:scrape_pottery_sherd","id":711,"version":2,"componentBased":false},{"name":"minecraft:sculk","id":-458,"version":2,"componentBased":false},{"name":"minecraft:sculk_catalyst","id":-460,"version":2,"componentBased":false},{"name":"minecraft:sculk_sensor","id":-307,"version":2,"componentBased":false},{"name":"minecraft:sculk_shrieker","id":-461,"version":2,"componentBased":false},{"name":"minecraft:sculk_vein","id":-459,"version":2,"componentBased":false},{"name":"minecraft:sea_lantern","id":169,"version":2,"componentBased":false},{"name":"minecraft:sea_pickle","id":-156,"version":2,"componentBased":false},{"name":"minecraft:seagrass","id":-130,"version":2,"componentBased":false},{"name":"minecraft:sentry_armor_trim_smithing_template","id":718,"version":2,"componentBased":false},{"name":"minecraft:shaper_armor_trim_smithing_template","id":732,"version":2,"componentBased":false},{"name":"minecraft:sheaf_pottery_sherd","id":712,"version":2,"componentBased":false},{"name":"minecraft:shears","id":447,"version":2,"componentBased":false},{"name":"minecraft:sheep_spawn_egg","id":465,"version":2,"componentBased":false},{"name":"minecraft:shelter_pottery_sherd","id":713,"version":2,"componentBased":false},{"name":"minecraft:shield","id":380,"version":2,"componentBased":false},{"name":"minecraft:short_dry_grass","id":-1028,"version":2,"componentBased":false},{"name":"minecraft:short_grass","id":31,"version":2,"componentBased":false},{"name":"minecraft:shroomlight","id":-230,"version":2,"componentBased":false},{"name":"minecraft:shulker_box","id":782,"version":2,"componentBased":false},{"name":"minecraft:shulker_shell","id":599,"version":2,"componentBased":false},{"name":"minecraft:shulker_spawn_egg","id":497,"version":2,"componentBased":false},{"name":"minecraft:silence_armor_trim_smithing_template","id":729,"version":2,"componentBased":false},{"name":"minecraft:silver_glazed_terracotta","id":228,"version":2,"componentBased":false},{"name":"minecraft:silverfish_spawn_egg","id":470,"version":2,"componentBased":false},{"name":"minecraft:skeleton_horse_spawn_egg","id":495,"version":2,"componentBased":false},{"name":"minecraft:skeleton_skull","id":144,"version":2,"componentBased":false},{"name":"minecraft:skeleton_spawn_egg","id":471,"version":2,"componentBased":false},{"name":"minecraft:skull","id":737,"version":2,"componentBased":false},{"name":"minecraft:skull_banner_pattern","id":616,"version":2,"componentBased":false},{"name":"minecraft:skull_pottery_sherd","id":714,"version":2,"componentBased":false},{"name":"minecraft:slime","id":165,"version":2,"componentBased":false},{"name":"minecraft:slime_ball","id":414,"version":2,"componentBased":false},{"name":"minecraft:slime_spawn_egg","id":472,"version":2,"componentBased":false},{"name":"minecraft:small_amethyst_bud","id":-332,"version":2,"componentBased":false},{"name":"minecraft:small_dripleaf_block","id":-336,"version":2,"componentBased":false},{"name":"minecraft:smithing_table","id":-202,"version":2,"componentBased":false},{"name":"minecraft:smoker","id":-198,"version":2,"componentBased":false},{"name":"minecraft:smooth_basalt","id":-377,"version":2,"componentBased":false},{"name":"minecraft:smooth_quartz","id":-955,"version":2,"componentBased":false},{"name":"minecraft:smooth_quartz_double_slab","id":-925,"version":2,"componentBased":false},{"name":"minecraft:smooth_quartz_slab","id":-898,"version":2,"componentBased":false},{"name":"minecraft:smooth_quartz_stairs","id":-185,"version":2,"componentBased":false},{"name":"minecraft:smooth_red_sandstone","id":-958,"version":2,"componentBased":false},{"name":"minecraft:smooth_red_sandstone_double_slab","id":-918,"version":2,"componentBased":false},{"name":"minecraft:smooth_red_sandstone_slab","id":-891,"version":2,"componentBased":false},{"name":"minecraft:smooth_red_sandstone_stairs","id":-176,"version":2,"componentBased":false},{"name":"minecraft:smooth_sandstone","id":-946,"version":2,"componentBased":false},{"name":"minecraft:smooth_sandstone_double_slab","id":-916,"version":2,"componentBased":false},{"name":"minecraft:smooth_sandstone_slab","id":-889,"version":2,"componentBased":false},{"name":"minecraft:smooth_sandstone_stairs","id":-177,"version":2,"componentBased":false},{"name":"minecraft:smooth_stone","id":-183,"version":2,"componentBased":false},{"name":"minecraft:smooth_stone_double_slab","id":43,"version":2,"componentBased":false},{"name":"minecraft:smooth_stone_slab","id":44,"version":2,"componentBased":false},{"name":"minecraft:sniffer_egg","id":-596,"version":2,"componentBased":false},{"name":"minecraft:sniffer_spawn_egg","id":528,"version":2,"componentBased":false},{"name":"minecraft:snort_pottery_sherd","id":715,"version":2,"componentBased":false},{"name":"minecraft:snout_armor_trim_smithing_template","id":726,"version":2,"componentBased":false},{"name":"minecraft:snow","id":80,"version":2,"componentBased":false},{"name":"minecraft:snow_golem_spawn_egg","id":534,"version":2,"componentBased":false},{"name":"minecraft:snow_layer","id":78,"version":2,"componentBased":false},{"name":"minecraft:snowball","id":399,"version":2,"componentBased":true},{"name":"minecraft:soul_campfire","id":659,"version":2,"componentBased":true},{"name":"minecraft:soul_fire","id":-237,"version":2,"componentBased":false},{"name":"minecraft:soul_lantern","id":-269,"version":2,"componentBased":false},{"name":"minecraft:soul_sand","id":88,"version":2,"componentBased":false},{"name":"minecraft:soul_soil","id":-236,"version":2,"componentBased":false},{"name":"minecraft:soul_torch","id":-268,"version":2,"componentBased":false},{"name":"minecraft:sparkler","id":637,"version":2,"componentBased":false},{"name":"minecraft:spawn_egg","id":796,"version":2,"componentBased":false},{"name":"minecraft:spider_eye","id":300,"version":0,"componentBased":false},{"name":"minecraft:spider_spawn_egg","id":473,"version":2,"componentBased":false},{"name":"minecraft:spire_armor_trim_smithing_template","id":728,"version":2,"componentBased":false},{"name":"minecraft:splash_potion","id":594,"version":2,"componentBased":false},{"name":"minecraft:sponge","id":19,"version":2,"componentBased":false},{"name":"minecraft:spore_blossom","id":-321,"version":2,"componentBased":false},{"name":"minecraft:spruce_boat","id":404,"version":2,"componentBased":false},{"name":"minecraft:spruce_button","id":-144,"version":2,"componentBased":false},{"name":"minecraft:spruce_chest_boat","id":678,"version":2,"componentBased":false},{"name":"minecraft:spruce_door","id":586,"version":2,"componentBased":false},{"name":"minecraft:spruce_double_slab","id":-809,"version":2,"componentBased":false},{"name":"minecraft:spruce_fence","id":-579,"version":2,"componentBased":false},{"name":"minecraft:spruce_fence_gate","id":183,"version":2,"componentBased":false},{"name":"minecraft:spruce_hanging_sign","id":-501,"version":2,"componentBased":false},{"name":"minecraft:spruce_leaves","id":-800,"version":2,"componentBased":false},{"name":"minecraft:spruce_log","id":-569,"version":2,"componentBased":false},{"name":"minecraft:spruce_planks","id":-739,"version":2,"componentBased":false},{"name":"minecraft:spruce_pressure_plate","id":-154,"version":2,"componentBased":false},{"name":"minecraft:spruce_sapling","id":-825,"version":2,"componentBased":false},{"name":"minecraft:spruce_sign","id":609,"version":2,"componentBased":false},{"name":"minecraft:spruce_slab","id":-804,"version":2,"componentBased":false},{"name":"minecraft:spruce_stairs","id":134,"version":2,"componentBased":false},{"name":"minecraft:spruce_standing_sign","id":-181,"version":2,"componentBased":false},{"name":"minecraft:spruce_trapdoor","id":-149,"version":2,"componentBased":false},{"name":"minecraft:spruce_wall_sign","id":-182,"version":2,"componentBased":false},{"name":"minecraft:spruce_wood","id":-814,"version":2,"componentBased":false},{"name":"minecraft:spyglass","id":662,"version":2,"componentBased":false},{"name":"minecraft:squid_spawn_egg","id":477,"version":2,"componentBased":false},{"name":"minecraft:stained_glass","id":780,"version":2,"componentBased":false},{"name":"minecraft:stained_glass_pane","id":781,"version":2,"componentBased":false},{"name":"minecraft:stained_hardened_clay","id":738,"version":2,"componentBased":false},{"name":"minecraft:standing_banner","id":176,"version":2,"componentBased":false},{"name":"minecraft:standing_sign","id":63,"version":2,"componentBased":false},{"name":"minecraft:stick","id":345,"version":2,"componentBased":false},{"name":"minecraft:sticky_piston","id":29,"version":2,"componentBased":false},{"name":"minecraft:sticky_piston_arm_collision","id":-217,"version":2,"componentBased":false},{"name":"minecraft:stone","id":1,"version":2,"componentBased":false},{"name":"minecraft:stone_axe","id":339,"version":2,"componentBased":false},{"name":"minecraft:stone_block_slab","id":757,"version":2,"componentBased":false},{"name":"minecraft:stone_block_slab2","id":758,"version":2,"componentBased":false},{"name":"minecraft:stone_block_slab3","id":759,"version":2,"componentBased":false},{"name":"minecraft:stone_block_slab4","id":760,"version":2,"componentBased":false},{"name":"minecraft:stone_brick_double_slab","id":-881,"version":2,"componentBased":false},{"name":"minecraft:stone_brick_slab","id":-875,"version":2,"componentBased":false},{"name":"minecraft:stone_brick_stairs","id":109,"version":2,"componentBased":false},{"name":"minecraft:stone_brick_wall","id":-977,"version":2,"componentBased":false},{"name":"minecraft:stone_bricks","id":98,"version":2,"componentBased":false},{"name":"minecraft:stone_button","id":77,"version":2,"componentBased":false},{"name":"minecraft:stone_hoe","id":355,"version":2,"componentBased":false},{"name":"minecraft:stone_pickaxe","id":338,"version":2,"componentBased":false},{"name":"minecraft:stone_pressure_plate","id":70,"version":2,"componentBased":false},{"name":"minecraft:stone_shovel","id":337,"version":2,"componentBased":false},{"name":"minecraft:stone_stairs","id":67,"version":2,"componentBased":false},{"name":"minecraft:stone_sword","id":336,"version":2,"componentBased":false},{"name":"minecraft:stonebrick","id":755,"version":2,"componentBased":false},{"name":"minecraft:stonecutter","id":245,"version":2,"componentBased":false},{"name":"minecraft:stonecutter_block","id":-197,"version":2,"componentBased":false},{"name":"minecraft:stray_spawn_egg","id":489,"version":2,"componentBased":false},{"name":"minecraft:strider_spawn_egg","id":523,"version":2,"componentBased":false},{"name":"minecraft:string","id":351,"version":2,"componentBased":true},{"name":"minecraft:stripped_acacia_log","id":-8,"version":2,"componentBased":false},{"name":"minecraft:stripped_acacia_wood","id":-823,"version":2,"componentBased":false},{"name":"minecraft:stripped_bamboo_block","id":-528,"version":2,"componentBased":false},{"name":"minecraft:stripped_birch_log","id":-6,"version":2,"componentBased":false},{"name":"minecraft:stripped_birch_wood","id":-821,"version":2,"componentBased":false},{"name":"minecraft:stripped_cherry_log","id":-535,"version":2,"componentBased":false},{"name":"minecraft:stripped_cherry_wood","id":-545,"version":2,"componentBased":false},{"name":"minecraft:stripped_crimson_hyphae","id":-300,"version":2,"componentBased":false},{"name":"minecraft:stripped_crimson_stem","id":-240,"version":2,"componentBased":false},{"name":"minecraft:stripped_dark_oak_log","id":-9,"version":2,"componentBased":false},{"name":"minecraft:stripped_dark_oak_wood","id":-824,"version":2,"componentBased":false},{"name":"minecraft:stripped_jungle_log","id":-7,"version":2,"componentBased":false},{"name":"minecraft:stripped_jungle_wood","id":-822,"version":2,"componentBased":false},{"name":"minecraft:stripped_mangrove_log","id":-485,"version":2,"componentBased":false},{"name":"minecraft:stripped_mangrove_wood","id":-498,"version":2,"componentBased":false},{"name":"minecraft:stripped_oak_log","id":-10,"version":2,"componentBased":false},{"name":"minecraft:stripped_oak_wood","id":-819,"version":2,"componentBased":false},{"name":"minecraft:stripped_pale_oak_log","id":-994,"version":2,"componentBased":false},{"name":"minecraft:stripped_pale_oak_wood","id":-1004,"version":2,"componentBased":false},{"name":"minecraft:stripped_spruce_log","id":-5,"version":2,"componentBased":false},{"name":"minecraft:stripped_spruce_wood","id":-820,"version":2,"componentBased":false},{"name":"minecraft:stripped_warped_hyphae","id":-301,"version":2,"componentBased":false},{"name":"minecraft:stripped_warped_stem","id":-241,"version":2,"componentBased":false},{"name":"minecraft:structure_block","id":252,"version":2,"componentBased":false},{"name":"minecraft:structure_void","id":217,"version":2,"componentBased":false},{"name":"minecraft:sugar","id":442,"version":2,"componentBased":false},{"name":"minecraft:sugar_cane","id":411,"version":2,"componentBased":true},{"name":"minecraft:sunflower","id":175,"version":2,"componentBased":false},{"name":"minecraft:suspicious_gravel","id":-573,"version":2,"componentBased":false},{"name":"minecraft:suspicious_sand","id":-529,"version":2,"componentBased":false},{"name":"minecraft:suspicious_stew","id":625,"version":0,"componentBased":false},{"name":"minecraft:sweet_berries","id":309,"version":0,"componentBased":false},{"name":"minecraft:sweet_berry_bush","id":-207,"version":2,"componentBased":false},{"name":"minecraft:tadpole_bucket","id":667,"version":2,"componentBased":false},{"name":"minecraft:tadpole_spawn_egg","id":666,"version":2,"componentBased":false},{"name":"minecraft:tall_dry_grass","id":-1029,"version":2,"componentBased":false},{"name":"minecraft:tall_grass","id":-864,"version":2,"componentBased":false},{"name":"minecraft:tallgrass","id":775,"version":2,"componentBased":false},{"name":"minecraft:target","id":-239,"version":2,"componentBased":false},{"name":"minecraft:tide_armor_trim_smithing_template","id":725,"version":2,"componentBased":false},{"name":"minecraft:tinted_glass","id":-334,"version":2,"componentBased":false},{"name":"minecraft:tnt","id":46,"version":2,"componentBased":false},{"name":"minecraft:tnt_minecart","id":558,"version":2,"componentBased":false},{"name":"minecraft:torch","id":50,"version":2,"componentBased":false},{"name":"minecraft:torchflower","id":-568,"version":2,"componentBased":false},{"name":"minecraft:torchflower_crop","id":-567,"version":2,"componentBased":false},{"name":"minecraft:torchflower_seeds","id":318,"version":0,"componentBased":false},{"name":"minecraft:totem_of_undying","id":601,"version":2,"componentBased":false},{"name":"minecraft:trader_llama_spawn_egg","id":685,"version":2,"componentBased":false},{"name":"minecraft:trapdoor","id":96,"version":2,"componentBased":false},{"name":"minecraft:trapped_chest","id":146,"version":2,"componentBased":false},{"name":"minecraft:trial_key","id":276,"version":1,"componentBased":true},{"name":"minecraft:trial_spawner","id":-315,"version":2,"componentBased":false},{"name":"minecraft:trident","id":579,"version":2,"componentBased":false},{"name":"minecraft:trip_wire","id":132,"version":2,"componentBased":false},{"name":"minecraft:tripwire_hook","id":131,"version":2,"componentBased":false},{"name":"minecraft:tropical_fish","id":288,"version":0,"componentBased":false},{"name":"minecraft:tropical_fish_bucket","id":391,"version":2,"componentBased":false},{"name":"minecraft:tropical_fish_spawn_egg","id":507,"version":2,"componentBased":false},{"name":"minecraft:tube_coral","id":-131,"version":2,"componentBased":false},{"name":"minecraft:tube_coral_block","id":-132,"version":2,"componentBased":false},{"name":"minecraft:tube_coral_fan","id":-133,"version":2,"componentBased":false},{"name":"minecraft:tube_coral_wall_fan","id":-135,"version":2,"componentBased":false},{"name":"minecraft:tuff","id":-333,"version":2,"componentBased":false},{"name":"minecraft:tuff_brick_double_slab","id":-756,"version":2,"componentBased":false},{"name":"minecraft:tuff_brick_slab","id":-755,"version":2,"componentBased":false},{"name":"minecraft:tuff_brick_stairs","id":-757,"version":2,"componentBased":false},{"name":"minecraft:tuff_brick_wall","id":-758,"version":2,"componentBased":false},{"name":"minecraft:tuff_bricks","id":-754,"version":2,"componentBased":false},{"name":"minecraft:tuff_double_slab","id":-745,"version":2,"componentBased":false},{"name":"minecraft:tuff_slab","id":-744,"version":2,"componentBased":false},{"name":"minecraft:tuff_stairs","id":-746,"version":2,"componentBased":false},{"name":"minecraft:tuff_wall","id":-747,"version":2,"componentBased":false},{"name":"minecraft:turtle_egg","id":-159,"version":2,"componentBased":false},{"name":"minecraft:turtle_helmet","id":606,"version":2,"componentBased":false},{"name":"minecraft:turtle_scute","id":605,"version":2,"componentBased":false},{"name":"minecraft:turtle_spawn_egg","id":513,"version":2,"componentBased":false},{"name":"minecraft:twisting_vines","id":-287,"version":2,"componentBased":false},{"name":"minecraft:underwater_tnt","id":-985,"version":2,"componentBased":false},{"name":"minecraft:underwater_torch","id":239,"version":2,"componentBased":false},{"name":"minecraft:undyed_shulker_box","id":205,"version":2,"componentBased":false},{"name":"minecraft:unknown","id":-305,"version":2,"componentBased":false},{"name":"minecraft:unlit_redstone_torch","id":75,"version":2,"componentBased":false},{"name":"minecraft:unpowered_comparator","id":149,"version":2,"componentBased":false},{"name":"minecraft:unpowered_repeater","id":93,"version":2,"componentBased":false},{"name":"minecraft:vault","id":-314,"version":2,"componentBased":false},{"name":"minecraft:verdant_froglight","id":-470,"version":2,"componentBased":false},{"name":"minecraft:vex_armor_trim_smithing_template","id":724,"version":2,"componentBased":false},{"name":"minecraft:vex_spawn_egg","id":504,"version":2,"componentBased":false},{"name":"minecraft:villager_spawn_egg","id":476,"version":2,"componentBased":false},{"name":"minecraft:vindicator_spawn_egg","id":502,"version":2,"componentBased":false},{"name":"minecraft:vine","id":106,"version":2,"componentBased":false},{"name":"minecraft:wall_banner","id":177,"version":2,"componentBased":false},{"name":"minecraft:wall_sign","id":68,"version":2,"componentBased":false},{"name":"minecraft:wandering_trader_spawn_egg","id":520,"version":2,"componentBased":false},{"name":"minecraft:ward_armor_trim_smithing_template","id":722,"version":2,"componentBased":false},{"name":"minecraft:warden_spawn_egg","id":669,"version":2,"componentBased":false},{"name":"minecraft:warped_button","id":-261,"version":2,"componentBased":false},{"name":"minecraft:warped_door","id":654,"version":2,"componentBased":false},{"name":"minecraft:warped_double_slab","id":-267,"version":2,"componentBased":false},{"name":"minecraft:warped_fence","id":-257,"version":2,"componentBased":false},{"name":"minecraft:warped_fence_gate","id":-259,"version":2,"componentBased":false},{"name":"minecraft:warped_fungus","id":-229,"version":2,"componentBased":false},{"name":"minecraft:warped_fungus_on_a_stick","id":655,"version":2,"componentBased":true},{"name":"minecraft:warped_hanging_sign","id":-507,"version":2,"componentBased":false},{"name":"minecraft:warped_hyphae","id":-298,"version":2,"componentBased":false},{"name":"minecraft:warped_nylium","id":-233,"version":2,"componentBased":false},{"name":"minecraft:warped_planks","id":-243,"version":2,"componentBased":false},{"name":"minecraft:warped_pressure_plate","id":-263,"version":2,"componentBased":false},{"name":"minecraft:warped_roots","id":-224,"version":2,"componentBased":false},{"name":"minecraft:warped_sign","id":652,"version":2,"componentBased":false},{"name":"minecraft:warped_slab","id":-265,"version":2,"componentBased":false},{"name":"minecraft:warped_stairs","id":-255,"version":2,"componentBased":false},{"name":"minecraft:warped_standing_sign","id":-251,"version":2,"componentBased":false},{"name":"minecraft:warped_stem","id":-226,"version":2,"componentBased":false},{"name":"minecraft:warped_trapdoor","id":-247,"version":2,"componentBased":false},{"name":"minecraft:warped_wall_sign","id":-253,"version":2,"componentBased":false},{"name":"minecraft:warped_wart_block","id":-227,"version":2,"componentBased":false},{"name":"minecraft:water","id":9,"version":2,"componentBased":false},{"name":"minecraft:water_bucket","id":387,"version":2,"componentBased":false},{"name":"minecraft:waterlily","id":111,"version":2,"componentBased":false},{"name":"minecraft:waxed_chiseled_copper","id":-764,"version":2,"componentBased":false},{"name":"minecraft:waxed_copper","id":-344,"version":2,"componentBased":false},{"name":"minecraft:waxed_copper_bulb","id":-780,"version":2,"componentBased":false},{"name":"minecraft:waxed_copper_door","id":-788,"version":2,"componentBased":false},{"name":"minecraft:waxed_copper_grate","id":-772,"version":2,"componentBased":false},{"name":"minecraft:waxed_copper_trapdoor","id":-796,"version":2,"componentBased":false},{"name":"minecraft:waxed_cut_copper","id":-351,"version":2,"componentBased":false},{"name":"minecraft:waxed_cut_copper_slab","id":-365,"version":2,"componentBased":false},{"name":"minecraft:waxed_cut_copper_stairs","id":-358,"version":2,"componentBased":false},{"name":"minecraft:waxed_double_cut_copper_slab","id":-372,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_chiseled_copper","id":-765,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_copper","id":-345,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_copper_bulb","id":-781,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_copper_door","id":-789,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_copper_grate","id":-773,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_copper_trapdoor","id":-797,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_cut_copper","id":-352,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_cut_copper_slab","id":-366,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_cut_copper_stairs","id":-359,"version":2,"componentBased":false},{"name":"minecraft:waxed_exposed_double_cut_copper_slab","id":-373,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_chiseled_copper","id":-766,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_copper","id":-446,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_copper_bulb","id":-783,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_copper_door","id":-791,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_copper_grate","id":-775,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_copper_trapdoor","id":-799,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_cut_copper","id":-447,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_cut_copper_slab","id":-449,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_cut_copper_stairs","id":-448,"version":2,"componentBased":false},{"name":"minecraft:waxed_oxidized_double_cut_copper_slab","id":-450,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_chiseled_copper","id":-767,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_copper","id":-346,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_copper_bulb","id":-782,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_copper_door","id":-790,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_copper_grate","id":-774,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_copper_trapdoor","id":-798,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_cut_copper","id":-353,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_cut_copper_slab","id":-367,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_cut_copper_stairs","id":-360,"version":2,"componentBased":false},{"name":"minecraft:waxed_weathered_double_cut_copper_slab","id":-374,"version":2,"componentBased":false},{"name":"minecraft:wayfinder_armor_trim_smithing_template","id":730,"version":2,"componentBased":false},{"name":"minecraft:weathered_chiseled_copper","id":-762,"version":2,"componentBased":false},{"name":"minecraft:weathered_copper","id":-342,"version":2,"componentBased":false},{"name":"minecraft:weathered_copper_bulb","id":-778,"version":2,"componentBased":false},{"name":"minecraft:weathered_copper_door","id":-786,"version":2,"componentBased":false},{"name":"minecraft:weathered_copper_grate","id":-770,"version":2,"componentBased":false},{"name":"minecraft:weathered_copper_trapdoor","id":-794,"version":2,"componentBased":false},{"name":"minecraft:weathered_cut_copper","id":-349,"version":2,"componentBased":false},{"name":"minecraft:weathered_cut_copper_slab","id":-363,"version":2,"componentBased":false},{"name":"minecraft:weathered_cut_copper_stairs","id":-356,"version":2,"componentBased":false},{"name":"minecraft:weathered_double_cut_copper_slab","id":-370,"version":2,"componentBased":false},{"name":"minecraft:web","id":30,"version":2,"componentBased":false},{"name":"minecraft:weeping_vines","id":-231,"version":2,"componentBased":false},{"name":"minecraft:wet_sponge","id":-984,"version":2,"componentBased":false},{"name":"minecraft:wheat","id":359,"version":2,"componentBased":false},{"name":"minecraft:wheat_seeds","id":313,"version":0,"componentBased":false},{"name":"minecraft:white_bundle","id":272,"version":1,"componentBased":true},{"name":"minecraft:white_candle","id":-413,"version":2,"componentBased":false},{"name":"minecraft:white_candle_cake","id":-430,"version":2,"componentBased":false},{"name":"minecraft:white_carpet","id":171,"version":2,"componentBased":false},{"name":"minecraft:white_concrete","id":236,"version":2,"componentBased":false},{"name":"minecraft:white_concrete_powder","id":237,"version":2,"componentBased":false},{"name":"minecraft:white_dye","id":436,"version":2,"componentBased":false},{"name":"minecraft:white_glazed_terracotta","id":220,"version":2,"componentBased":false},{"name":"minecraft:white_shulker_box","id":218,"version":2,"componentBased":false},{"name":"minecraft:white_stained_glass","id":241,"version":2,"componentBased":false},{"name":"minecraft:white_stained_glass_pane","id":160,"version":2,"componentBased":false},{"name":"minecraft:white_terracotta","id":159,"version":2,"componentBased":false},{"name":"minecraft:white_tulip","id":-835,"version":2,"componentBased":false},{"name":"minecraft:white_wool","id":35,"version":2,"componentBased":false},{"name":"minecraft:wild_armor_trim_smithing_template","id":721,"version":2,"componentBased":false},{"name":"minecraft:wildflowers","id":-1024,"version":2,"componentBased":false},{"name":"minecraft:wind_charge","id":277,"version":1,"componentBased":true},{"name":"minecraft:witch_spawn_egg","id":479,"version":2,"componentBased":false},{"name":"minecraft:wither_rose","id":-216,"version":2,"componentBased":false},{"name":"minecraft:wither_skeleton_skull","id":-965,"version":2,"componentBased":false},{"name":"minecraft:wither_skeleton_spawn_egg","id":492,"version":2,"componentBased":false},{"name":"minecraft:wither_spawn_egg","id":536,"version":2,"componentBased":false},{"name":"minecraft:wolf_armor","id":741,"version":2,"componentBased":true},{"name":"minecraft:wolf_spawn_egg","id":466,"version":2,"componentBased":false},{"name":"minecraft:wood","id":783,"version":2,"componentBased":false},{"name":"minecraft:wooden_axe","id":335,"version":2,"componentBased":false},{"name":"minecraft:wooden_button","id":143,"version":2,"componentBased":false},{"name":"minecraft:wooden_door","id":384,"version":2,"componentBased":false},{"name":"minecraft:wooden_hoe","id":354,"version":2,"componentBased":false},{"name":"minecraft:wooden_pickaxe","id":334,"version":2,"componentBased":false},{"name":"minecraft:wooden_pressure_plate","id":72,"version":2,"componentBased":false},{"name":"minecraft:wooden_shovel","id":333,"version":2,"componentBased":false},{"name":"minecraft:wooden_slab","id":770,"version":2,"componentBased":false},{"name":"minecraft:wooden_sword","id":332,"version":2,"componentBased":false},{"name":"minecraft:wool","id":751,"version":2,"componentBased":false},{"name":"minecraft:writable_book","id":544,"version":2,"componentBased":false},{"name":"minecraft:written_book","id":545,"version":2,"componentBased":false},{"name":"minecraft:yellow_bundle","id":273,"version":1,"componentBased":true},{"name":"minecraft:yellow_candle","id":-417,"version":2,"componentBased":false},{"name":"minecraft:yellow_candle_cake","id":-434,"version":2,"componentBased":false},{"name":"minecraft:yellow_carpet","id":-600,"version":2,"componentBased":false},{"name":"minecraft:yellow_concrete","id":-631,"version":2,"componentBased":false},{"name":"minecraft:yellow_concrete_powder","id":-712,"version":2,"componentBased":false},{"name":"minecraft:yellow_dye","id":432,"version":2,"componentBased":false},{"name":"minecraft:yellow_glazed_terracotta","id":224,"version":2,"componentBased":false},{"name":"minecraft:yellow_shulker_box","id":-616,"version":2,"componentBased":false},{"name":"minecraft:yellow_stained_glass","id":-676,"version":2,"componentBased":false},{"name":"minecraft:yellow_stained_glass_pane","id":-646,"version":2,"componentBased":false},{"name":"minecraft:yellow_terracotta","id":-727,"version":2,"componentBased":false},{"name":"minecraft:yellow_wool","id":-558,"version":2,"componentBased":false},{"name":"minecraft:zoglin_spawn_egg","id":526,"version":2,"componentBased":false},{"name":"minecraft:zombie_head","id":-966,"version":2,"componentBased":false},{"name":"minecraft:zombie_horse_spawn_egg","id":496,"version":2,"componentBased":false},{"name":"minecraft:zombie_pigman_spawn_egg","id":475,"version":2,"componentBased":false},{"name":"minecraft:zombie_spawn_egg","id":474,"version":2,"componentBased":false},{"name":"minecraft:zombie_villager_spawn_egg","id":505,"version":2,"componentBased":false}] \ No newline at end of file