From 8b37a264240c7a56caefa228e32b1e98b791af4f Mon Sep 17 00:00:00 2001 From: LOOHP Date: Sat, 11 Jun 2022 02:34:26 +0800 Subject: [PATCH] Minecraft 1.19 --- pom.xml | 16 +- src/main/java/com/loohp/limbo/Limbo.java | 6 +- .../loohp/limbo/network/ClientConnection.java | 11 +- .../ClientboundLevelChunkWithLightPacket.java | 24 +- .../packets/ClientboundPlayerChatPacket.java | 99 + ....java => ClientboundSystemChatPacket.java} | 25 +- .../packets/PacketLoginInLoginStart.java | 10 +- .../packets/PacketLoginOutLoginSuccess.java | 1 + .../protocol/packets/PacketPlayInChat.java | 29 +- .../protocol/packets/PacketPlayOutLogin.java | 25 +- .../packets/PacketPlayOutPlayerInfo.java | 5 +- .../packets/PacketPlayOutPositionAndLook.java | 5 +- .../packets/PacketPlayOutSpawnEntity.java | 19 +- .../PacketPlayOutSpawnEntityLiving.java | 130 - .../packets/ServerboundChatCommandPacket.java | 79 + .../java/com/loohp/limbo/player/Player.java | 55 +- .../limbo/player/PlayerInteractManager.java | 48 +- .../loohp/limbo/utils/DeclareCommands.java | 7 +- .../limbo/utils/NetworkEncryptionUtils.java | 84 + .../loohp/limbo/world/DimensionRegistry.java | 2 +- .../world/GeneratedBlockDataMappings.java | 3 +- src/main/resources/blocks.json | 374558 ++++++++------- src/main/resources/dimension_registry.json | 8592 +- src/main/resources/mapping.json | 63 +- src/main/resources/registries.json | 25837 +- 25 files changed, 211604 insertions(+), 198129 deletions(-) create mode 100644 src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundPlayerChatPacket.java rename src/main/java/com/loohp/limbo/network/protocol/packets/{PacketPlayOutChat.java => ClientboundSystemChatPacket.java} (84%) delete mode 100644 src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntityLiving.java create mode 100644 src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundChatCommandPacket.java create mode 100644 src/main/java/com/loohp/limbo/utils/NetworkEncryptionUtils.java diff --git a/pom.xml b/pom.xml index f570baf..49bc3ea 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ com.loohp Limbo Limbo - 0.6.15-ALPHA + 0.6.16-ALPHA Standalone Limbo Minecraft Server. https://github.com/LOOHP/Limbo @@ -136,7 +136,7 @@ - ${project.artifactId}-${project.version}-1.18.2 + ${project.artifactId}-${project.version}-1.19 @@ -231,7 +231,7 @@ com.google.code.gson gson - 2.8.9 + 2.8.5 compile @@ -256,31 +256,31 @@ net.kyori adventure-text-serializer-gson - 4.9.3 + 4.10.1 compile net.kyori adventure-text-serializer-legacy - 4.9.3 + 4.10.1 compile net.kyori adventure-text-serializer-plain - 4.9.3 + 4.10.1 compile net.kyori adventure-api - 4.9.3 + 4.10.1 compile net.kyori adventure-nbt - 4.9.3 + 4.10.1 compile diff --git a/src/main/java/com/loohp/limbo/Limbo.java b/src/main/java/com/loohp/limbo/Limbo.java index d1e0be7..d06e7bb 100644 --- a/src/main/java/com/loohp/limbo/Limbo.java +++ b/src/main/java/com/loohp/limbo/Limbo.java @@ -131,8 +131,8 @@ public class Limbo { //=========================== - public final String SERVER_IMPLEMENTATION_VERSION = "1.18.2"; - public final int SERVER_IMPLEMENTATION_PROTOCOL = 758; + public final String SERVER_IMPLEMENTATION_VERSION = "1.19"; + public final int SERVER_IMPLEMENTATION_PROTOCOL = 759; public final String LIMBO_IMPLEMENTATION_VERSION; private AtomicBoolean isRunning; @@ -216,7 +216,7 @@ public class Limbo { console.sendMessage("Loading packet id mappings from mapping.json ..."); - InputStreamReader reader = new InputStreamReader(new FileInputStream(mappingFile), StandardCharsets.UTF_8); + InputStreamReader reader = new InputStreamReader(Files.newInputStream(mappingFile.toPath()), StandardCharsets.UTF_8); JSONObject json = (JSONObject) new JSONParser().parse(reader); reader.close(); diff --git a/src/main/java/com/loohp/limbo/network/ClientConnection.java b/src/main/java/com/loohp/limbo/network/ClientConnection.java index 52934da..99ba49a 100644 --- a/src/main/java/com/loohp/limbo/network/ClientConnection.java +++ b/src/main/java/com/loohp/limbo/network/ClientConnection.java @@ -73,6 +73,7 @@ import com.loohp.limbo.network.protocol.packets.PacketStatusInPing; import com.loohp.limbo.network.protocol.packets.PacketStatusInRequest; import com.loohp.limbo.network.protocol.packets.PacketStatusOutPong; import com.loohp.limbo.network.protocol.packets.PacketStatusOutResponse; +import com.loohp.limbo.network.protocol.packets.ServerboundChatCommandPacket; import com.loohp.limbo.player.Player; import com.loohp.limbo.player.PlayerInteractManager; import com.loohp.limbo.utils.BungeecordAdventureConversionUtils; @@ -201,6 +202,7 @@ public class ClientConnection extends Thread { } public synchronized void sendPacket(PacketOut packet) throws IOException { + System.out.println(packet.getClass()); if (channel.writePacket(packet)) { setLastPacketTimestamp(System.currentTimeMillis()); } @@ -626,11 +628,10 @@ public class ClientConnection extends Thread { sendPacket(response); } else if (packetIn instanceof PacketPlayInChat) { PacketPlayInChat chat = (PacketPlayInChat) packetIn; - if (chat.getMessage().startsWith("/")) { - Limbo.getInstance().dispatchCommand(player, chat.getMessage()); - } else { - player.chat(chat.getMessage(), true); - } + player.chat(chat.getMessage(), true, chat.getSignature(), chat.getTime()); + } else if (packetIn instanceof ServerboundChatCommandPacket) { + ServerboundChatCommandPacket command = (ServerboundChatCommandPacket) packetIn; + Limbo.getInstance().dispatchCommand(player, "/" + command.getCommand()); } else if (packetIn instanceof PacketPlayInHeldItemChange) { PacketPlayInHeldItemChange change = (PacketPlayInHeldItemChange) packetIn; PlayerSelectedSlotChangeEvent event = Limbo.getInstance().getEventsManager().callEvent(new PlayerSelectedSlotChangeEvent(player, (byte) change.getSlot())); diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java index 94d4011..9b3959d 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java @@ -19,27 +19,25 @@ package com.loohp.limbo.network.protocol.packets; -import java.io.ByteArrayOutputStream; -import java.io.DataOutputStream; -import java.io.IOException; -import java.util.ArrayList; -import java.util.BitSet; -import java.util.Iterator; -import java.util.LinkedList; -import java.util.List; - import com.loohp.limbo.registry.Registry; import com.loohp.limbo.utils.BitsUtils; import com.loohp.limbo.utils.DataTypeIO; import com.loohp.limbo.utils.NamespacedKey; import com.loohp.limbo.world.Environment; import com.loohp.limbo.world.GeneratedBlockDataMappings; - import net.querz.mca.Chunk; import net.querz.mca.Section; import net.querz.nbt.tag.CompoundTag; import net.querz.nbt.tag.ListTag; +import java.io.ByteArrayOutputStream; +import java.io.DataOutputStream; +import java.io.IOException; +import java.util.ArrayList; +import java.util.BitSet; +import java.util.LinkedList; +import java.util.List; + public class ClientboundLevelChunkWithLightPacket extends PacketOut { private int chunkX; @@ -165,7 +163,7 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { int shift = 64 % newBits; int longsNeeded = (int) Math.ceil(4096 / (double) (64 / newBits)); for (int u = 64; u <= bits.length(); u += 64) { - bits = BitsUtils.shiftAfter(bits, u - shift, shift); + BitsUtils.shiftAfter(bits, u - shift, shift); } long[] formattedLongs = bits.toLongArray(); @@ -182,7 +180,7 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { } } else { try { - dataOut.writeByte(15); + dataOut.writeByte(16); section.getBlockStates(); int longsNeeded = 1024; List list = new LinkedList<>(); @@ -207,7 +205,7 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut { u++; } int id = list.isEmpty() ? 0 : list.remove(0); - currentLong = currentLong << 15; + currentLong = currentLong << 16; currentLong |= id; } DataTypeIO.writeVarInt(dataOut, longsNeeded); diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundPlayerChatPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundPlayerChatPacket.java new file mode 100644 index 0000000..87dff7c --- /dev/null +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundPlayerChatPacket.java @@ -0,0 +1,99 @@ +/* + * This file is part of Limbo. + * + * Copyright (C) 2022. LoohpJames + * Copyright (C) 2022. Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.loohp.limbo.network.protocol.packets; + +import java.io.ByteArrayOutputStream; +import java.io.DataOutputStream; +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.time.Instant; +import java.util.Optional; +import java.util.UUID; + +import com.loohp.limbo.utils.DataTypeIO; + +import com.loohp.limbo.utils.NetworkEncryptionUtils; +import net.kyori.adventure.text.Component; +import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer; + +public class ClientboundPlayerChatPacket extends PacketOut { + + private Component signedContent; + private Optional unsignedContent; + private int position; + private UUID sender; + private Instant time; + private NetworkEncryptionUtils.SignatureData saltSignature; + + public ClientboundPlayerChatPacket(Component signedContent, Optional unsignedContent, int position, UUID sender, Instant time, NetworkEncryptionUtils.SignatureData saltSignature) { + this.signedContent = signedContent; + this.unsignedContent = unsignedContent; + this.position = position; + this.sender = sender; + this.time = time; + this.saltSignature = saltSignature; + } + + public Component getSignedContent() { + return signedContent; + } + + public Optional getUnsignedContent() { + return unsignedContent; + } + + public int getPosition() { + return position; + } + + public UUID getSender() { + return sender; + } + + public Instant getTime() { + return time; + } + + public NetworkEncryptionUtils.SignatureData getSaltSignature() { + return saltSignature; + } + + @Override + public byte[] serializePacket() throws IOException { + ByteArrayOutputStream buffer = new ByteArrayOutputStream(); + + DataOutputStream output = new DataOutputStream(buffer); + output.writeByte(Packet.getPlayOut().get(getClass())); + DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(signedContent), StandardCharsets.UTF_8); + if (unsignedContent.isPresent()) { + output.writeBoolean(true); + DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(unsignedContent.get()), StandardCharsets.UTF_8); + } else { + output.writeBoolean(false); + } + DataTypeIO.writeVarInt(output, position); + DataTypeIO.writeUUID(output, sender); + output.writeLong(time.toEpochMilli()); + NetworkEncryptionUtils.SignatureData.write(output, saltSignature); + + return buffer.toByteArray(); + } + +} diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutChat.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSystemChatPacket.java similarity index 84% rename from src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutChat.java rename to src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSystemChatPacket.java index c866480..4bdec77 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutChat.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSystemChatPacket.java @@ -19,27 +19,23 @@ package com.loohp.limbo.network.protocol.packets; +import com.loohp.limbo.utils.DataTypeIO; +import net.kyori.adventure.text.Component; +import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer; + import java.io.ByteArrayOutputStream; import java.io.DataOutputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; -import java.util.UUID; -import com.loohp.limbo.utils.DataTypeIO; +public class ClientboundSystemChatPacket extends PacketOut { -import net.kyori.adventure.text.Component; -import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer; - -public class PacketPlayOutChat extends PacketOut { - private Component message; private int position; - private UUID sender; - - public PacketPlayOutChat(Component message, int position, UUID sender) { + + public ClientboundSystemChatPacket(Component message, int position) { this.message = message; this.position = position; - this.sender = sender; } public Component getMessage() { @@ -49,10 +45,6 @@ public class PacketPlayOutChat extends PacketOut { public int getPosition() { return position; } - - public UUID getSender() { - return sender; - } @Override public byte[] serializePacket() throws IOException { @@ -61,8 +53,7 @@ public class PacketPlayOutChat extends PacketOut { DataOutputStream output = new DataOutputStream(buffer); output.writeByte(Packet.getPlayOut().get(getClass())); DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(message), StandardCharsets.UTF_8); - output.writeByte(position); - DataTypeIO.writeUUID(output, sender); + DataTypeIO.writeVarInt(output, position); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginInLoginStart.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginInLoginStart.java index f6ad8cd..214eab5 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginInLoginStart.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginInLoginStart.java @@ -34,7 +34,15 @@ public class PacketLoginInLoginStart extends PacketIn { } public PacketLoginInLoginStart(DataInputStream in) throws IOException { - this(DataTypeIO.readString(in, StandardCharsets.UTF_8)); + this.username = DataTypeIO.readString(in, StandardCharsets.UTF_8); + boolean hasSigData = in.readBoolean(); + if (hasSigData) { + in.readLong(); + int publicKeyLength = DataTypeIO.readVarInt(in); + in.readFully(new byte[publicKeyLength]); + int signatureLength = DataTypeIO.readVarInt(in); + in.readFully(new byte[signatureLength]); + } } public String getUsername() { diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java index ba9fc79..817be1a 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java @@ -53,6 +53,7 @@ public class PacketLoginOutLoginSuccess extends PacketOut { output.writeByte(Packet.getLoginOut().get(getClass())); DataTypeIO.writeUUID(output, uuid); DataTypeIO.writeString(output, username, StandardCharsets.UTF_8); + DataTypeIO.writeVarInt(output, 0); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayInChat.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayInChat.java index 49da8b8..bd9b71d 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayInChat.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayInChat.java @@ -22,23 +22,44 @@ package com.loohp.limbo.network.protocol.packets; import java.io.DataInputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; +import java.time.Instant; import com.loohp.limbo.utils.DataTypeIO; +import com.loohp.limbo.utils.NetworkEncryptionUtils; +import com.loohp.limbo.utils.NetworkEncryptionUtils.SignatureData; public class PacketPlayInChat extends PacketIn { private String message; - - public PacketPlayInChat(String message) { + private Instant time; + private NetworkEncryptionUtils.SignatureData signature; + private boolean previewed; + + public PacketPlayInChat(String message, Instant time, SignatureData signature, boolean previewed) { this.message = message; + this.time = time; + this.signature = signature; + this.previewed = previewed; } - + public PacketPlayInChat(DataInputStream in) throws IOException { - this(DataTypeIO.readString(in, StandardCharsets.UTF_8)); + this(DataTypeIO.readString(in, StandardCharsets.UTF_8), Instant.ofEpochMilli(in.readLong()), new NetworkEncryptionUtils.SignatureData(in), in.readBoolean()); } public String getMessage() { return message; } + public Instant getTime() { + return time; + } + + public SignatureData getSignature() { + return signature; + } + + public boolean isPreviewed() { + return previewed; + } + } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java index 0d28af2..dd019fd 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java @@ -19,20 +19,18 @@ package com.loohp.limbo.network.protocol.packets; -import java.io.ByteArrayOutputStream; -import java.io.DataOutputStream; -import java.io.IOException; -import java.nio.charset.StandardCharsets; -import java.util.List; - import com.loohp.limbo.utils.DataTypeIO; import com.loohp.limbo.utils.GameMode; import com.loohp.limbo.utils.NamespacedKey; import com.loohp.limbo.world.Environment; import com.loohp.limbo.world.World; - import net.querz.nbt.tag.CompoundTag; -import net.querz.nbt.tag.ListTag; + +import java.io.ByteArrayOutputStream; +import java.io.DataOutputStream; +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.util.List; public class PacketPlayOutLogin extends PacketOut { @@ -145,15 +143,7 @@ public class PacketPlayOutLogin extends PacketOut { DataTypeIO.writeString(output, new NamespacedKey(worlds.get(u).getName()).toString(), StandardCharsets.UTF_8); } DataTypeIO.writeCompoundTag(output, dimensionCodec); - CompoundTag tag = null; - ListTag list = dimensionCodec.getCompoundTag("minecraft:dimension_type").getListTag("value").asCompoundTagList(); - for (CompoundTag each : list) { - if (each.getString("name").equals(dimension.getNamespacedKey().toString())) { - tag = each.getCompoundTag("element"); - break; - } - } - DataTypeIO.writeCompoundTag(output, tag != null ? tag : list.get(0).getCompoundTag("element")); + DataTypeIO.writeString(output, world.getEnvironment().getNamespacedKey().toString(), StandardCharsets.UTF_8); DataTypeIO.writeString(output, new NamespacedKey(world.getName()).toString(), StandardCharsets.UTF_8); output.writeLong(hashedSeed); DataTypeIO.writeVarInt(output, maxPlayers); @@ -163,6 +153,7 @@ public class PacketPlayOutLogin extends PacketOut { output.writeBoolean(enableRespawnScreen); output.writeBoolean(isDebug); output.writeBoolean(isFlat); + output.writeBoolean(false); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerInfo.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerInfo.java index e4d99f0..a5af887 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerInfo.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerInfo.java @@ -35,7 +35,7 @@ public class PacketPlayOutPlayerInfo extends PacketOut { public enum PlayerInfoAction { ADD_PLAYER(0), UPDATE_GAMEMODE(1), UPDATE_LATENCY(2), UPDATE_DISPLAY_NAME(3), REMOVE_PLAYER(4); - int id; + private final int id; PlayerInfoAction(int id) { this.id = id; @@ -98,7 +98,8 @@ public class PacketPlayOutPlayerInfo extends PacketOut { DataTypeIO.writeString(output, data.getDisplayNameJson().get(), StandardCharsets.UTF_8); } else { output.writeBoolean(false); - } + } + output.writeBoolean(false); break; case REMOVE_PLAYER: break; diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java index 544c65a..ca85d4c 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java @@ -23,6 +23,7 @@ import java.io.ByteArrayOutputStream; import java.io.DataOutputStream; import java.io.IOException; import java.util.Arrays; +import java.util.HashSet; import java.util.Set; import java.util.stream.Collectors; @@ -37,7 +38,7 @@ public class PacketPlayOutPositionAndLook extends PacketOut { Y_ROT((byte) 0x08), X_ROT((byte) 0x10); - byte bit; + private final byte bit; PlayerTeleportFlags(byte bit) { this.bit = bit; @@ -64,7 +65,7 @@ public class PacketPlayOutPositionAndLook extends PacketOut { this.yaw = yaw; this.pitch = pitch; this.teleportId = teleportId; - this.flags = Arrays.asList(flags).stream().collect(Collectors.toSet()); + this.flags = new HashSet<>(Arrays.asList(flags)); this.dismountVehicle = dismountVehicle; } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntity.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntity.java index 31b3f10..43a1bde 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntity.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntity.java @@ -37,12 +37,13 @@ public class PacketPlayOutSpawnEntity extends PacketOut { private double z; private float pitch; private float yaw; + private float headYaw; private int data; private short velocityX; private short velocityY; private short velocityZ; - public PacketPlayOutSpawnEntity(int entityId, UUID uuid, EntityType type, double x, double y, double z, float pitch, float yaw, short velocityX, short velocityY, short velocityZ) { + public PacketPlayOutSpawnEntity(int entityId, UUID uuid, EntityType type, double x, double y, double z, float pitch, float yaw, float headYaw, int data, short velocityX, short velocityY, short velocityZ) { this.entityId = entityId; this.uuid = uuid; this.type = type; @@ -51,7 +52,8 @@ public class PacketPlayOutSpawnEntity extends PacketOut { this.z = z; this.pitch = pitch; this.yaw = yaw; - this.data = 0; //TO-DO + this.headYaw = headYaw; + this.data = data; this.velocityX = velocityX; this.velocityY = velocityY; this.velocityZ = velocityZ; @@ -89,6 +91,10 @@ public class PacketPlayOutSpawnEntity extends PacketOut { return yaw; } + public float getHeadYaw() { + return headYaw; + } + public int getData() { return data; } @@ -119,10 +125,11 @@ public class PacketPlayOutSpawnEntity extends PacketOut { output.writeDouble(z); output.writeByte((byte) (int) (pitch * 256.0F / 360.0F)); output.writeByte((byte) (int) (yaw * 256.0F / 360.0F)); - output.writeInt(data); - output.writeShort((int) (velocityX * 8000)); - output.writeShort((int) (velocityY * 8000)); - output.writeShort((int) (velocityZ * 8000)); + output.writeByte((byte) (int) (headYaw * 256.0F / 360.0F)); + DataTypeIO.writeVarInt(output, data); + output.writeShort(velocityX * 8000); + output.writeShort(velocityY * 8000); + output.writeShort(velocityZ * 8000); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntityLiving.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntityLiving.java deleted file mode 100644 index e606f0d..0000000 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntityLiving.java +++ /dev/null @@ -1,130 +0,0 @@ -/* - * This file is part of Limbo. - * - * Copyright (C) 2022. LoohpJames - * Copyright (C) 2022. Contributors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.loohp.limbo.network.protocol.packets; - -import java.io.ByteArrayOutputStream; -import java.io.DataOutputStream; -import java.io.IOException; -import java.util.UUID; - -import com.loohp.limbo.entity.EntityType; -import com.loohp.limbo.utils.DataTypeIO; - -public class PacketPlayOutSpawnEntityLiving extends PacketOut { - - private int entityId; - private UUID uuid; - private EntityType type; - private double x; - private double y; - private double z; - private float yaw; - private float pitch; - private float headPitch; - private short velocityX; - private short velocityY; - private short velocityZ; - - public PacketPlayOutSpawnEntityLiving(int entityId, UUID uuid, EntityType type, double x, double y, double z, float yaw, float pitch, float headPitch, short velocityX, short velocityY, short velocityZ) { - this.entityId = entityId; - this.uuid = uuid; - this.type = type; - this.x = x; - this.y = y; - this.z = z; - this.yaw = yaw; - this.pitch = pitch; - this.headPitch = headPitch; - this.velocityX = velocityX; - this.velocityY = velocityY; - this.velocityZ = velocityZ; - } - - public int getEntityId() { - return entityId; - } - - public UUID getUuid() { - return uuid; - } - - public EntityType getType() { - return type; - } - - public double getX() { - return x; - } - - public double getY() { - return y; - } - - public double getZ() { - return z; - } - - public float getYaw() { - return yaw; - } - - public float getPitch() { - return pitch; - } - - public float getHeadPitch() { - return headPitch; - } - - public short getVelocityX() { - return velocityX; - } - - public short getVelocityY() { - return velocityY; - } - - public short getVelocityZ() { - return velocityZ; - } - - @Override - public byte[] serializePacket() throws IOException { - ByteArrayOutputStream buffer = new ByteArrayOutputStream(); - - DataOutputStream output = new DataOutputStream(buffer); - output.writeByte(Packet.getPlayOut().get(getClass())); - DataTypeIO.writeVarInt(output, entityId); - DataTypeIO.writeUUID(output, uuid); - DataTypeIO.writeVarInt(output, type.getTypeId()); - output.writeDouble(x); - output.writeDouble(y); - output.writeDouble(z); - output.writeByte((byte) (int) (yaw * 256.0F / 360.0F)); - output.writeByte((byte) (int) (pitch * 256.0F / 360.0F)); - output.writeByte((byte) (int) (headPitch * 256.0F / 360.0F)); - output.writeShort((int) (velocityX * 8000)); - output.writeShort((int) (velocityY * 8000)); - output.writeShort((int) (velocityZ * 8000)); - - return buffer.toByteArray(); - } - -} diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundChatCommandPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundChatCommandPacket.java new file mode 100644 index 0000000..bb6e679 --- /dev/null +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundChatCommandPacket.java @@ -0,0 +1,79 @@ +/* + * This file is part of Limbo. + * + * Copyright (C) 2022. LoohpJames + * Copyright (C) 2022. Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.loohp.limbo.network.protocol.packets; + +import com.loohp.limbo.utils.DataTypeIO; +import com.loohp.limbo.utils.NetworkEncryptionUtils.ArgumentSignatures; + +import java.io.DataInputStream; +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.time.Instant; +import java.util.HashMap; +import java.util.Map; + +public class ServerboundChatCommandPacket extends PacketIn { + + private String command; + private Instant time; + private ArgumentSignatures argumentSignatures; + private boolean commandPreview; + + public ServerboundChatCommandPacket(String command, Instant time, ArgumentSignatures argumentSignatures, boolean commandPreview) { + this.command = command; + this.time = time; + this.argumentSignatures = argumentSignatures; + this.commandPreview = commandPreview; + } + + public ServerboundChatCommandPacket(DataInputStream in) throws IOException { + this.command = DataTypeIO.readString(in, StandardCharsets.UTF_8); + this.time = Instant.ofEpochMilli(in.readLong()); + long salt = in.readLong(); + int size = DataTypeIO.readVarInt(in); + Map signatures = new HashMap<>(size); + for (int i = 0; i < size; i++) { + String key = DataTypeIO.readString(in, StandardCharsets.UTF_8); + int arraySize = DataTypeIO.readVarInt(in); + byte[] value = new byte[arraySize]; + in.readFully(value); + signatures.put(key, value); + } + this.argumentSignatures = new ArgumentSignatures(salt, signatures); + this.commandPreview = in.readBoolean(); + } + + public String getCommand() { + return command; + } + + public Instant getTime() { + return time; + } + + public ArgumentSignatures getArgumentSignatures() { + return argumentSignatures; + } + + public boolean isCommandPreview() { + return commandPreview; + } + +} diff --git a/src/main/java/com/loohp/limbo/player/Player.java b/src/main/java/com/loohp/limbo/player/Player.java index d82aadb..dc76974 100644 --- a/src/main/java/com/loohp/limbo/player/Player.java +++ b/src/main/java/com/loohp/limbo/player/Player.java @@ -19,10 +19,6 @@ package com.loohp.limbo.player; -import java.io.IOException; -import java.time.Duration; -import java.util.UUID; - import com.loohp.limbo.Limbo; import com.loohp.limbo.commands.CommandSender; import com.loohp.limbo.entity.DataWatcher; @@ -38,7 +34,8 @@ import com.loohp.limbo.network.protocol.packets.ClientboundClearTitlesPacket; import com.loohp.limbo.network.protocol.packets.ClientboundSetSubtitleTextPacket; import com.loohp.limbo.network.protocol.packets.ClientboundSetTitleTextPacket; import com.loohp.limbo.network.protocol.packets.ClientboundSetTitlesAnimationPacket; -import com.loohp.limbo.network.protocol.packets.PacketPlayOutChat; +import com.loohp.limbo.network.protocol.packets.ClientboundSystemChatPacket; +import com.loohp.limbo.network.protocol.packets.PacketOut; import com.loohp.limbo.network.protocol.packets.PacketPlayOutGameState; import com.loohp.limbo.network.protocol.packets.PacketPlayOutHeldItemChange; import com.loohp.limbo.network.protocol.packets.PacketPlayOutPlayerListHeaderFooter; @@ -47,8 +44,8 @@ import com.loohp.limbo.network.protocol.packets.PacketPlayOutResourcePackSend; import com.loohp.limbo.network.protocol.packets.PacketPlayOutRespawn; import com.loohp.limbo.utils.BungeecordAdventureConversionUtils; import com.loohp.limbo.utils.GameMode; - import com.loohp.limbo.utils.NamespacedKey; +import com.loohp.limbo.utils.NetworkEncryptionUtils; import net.kyori.adventure.audience.MessageType; import net.kyori.adventure.bossbar.BossBar; import net.kyori.adventure.identity.Identity; @@ -63,7 +60,11 @@ import net.kyori.adventure.title.Title.Times; import net.kyori.adventure.title.TitlePart; import net.md_5.bungee.api.ChatColor; import net.md_5.bungee.api.chat.BaseComponent; -import net.md_5.bungee.api.chat.TranslatableComponent; + +import java.io.IOException; +import java.time.Duration; +import java.time.Instant; +import java.util.UUID; public class Player extends LivingEntity implements CommandSender { @@ -298,22 +299,25 @@ public class Player extends LivingEntity implements CommandSender { public void chat(String message) { chat(message, false); } - + public void chat(String message, boolean verbose) { + chat(message, verbose, null, Instant.now()); + } + + public void chat(String message, boolean verbose, NetworkEncryptionUtils.SignatureData saltSignature, Instant time) { if (Limbo.getInstance().getServerProperties().isAllowChat()) { - PlayerChatEvent event = (PlayerChatEvent) Limbo.getInstance().getEventsManager().callEvent(new PlayerChatEvent(this, CHAT_DEFAULT_FORMAT, message, false)); + PlayerChatEvent event = Limbo.getInstance().getEventsManager().callEvent(new PlayerChatEvent(this, CHAT_DEFAULT_FORMAT, message, false)); if (!event.isCancelled()) { if (hasPermission("limboserver.chat")) { String chat = event.getFormat().replace("%name%", username).replace("%message%", event.getMessage()); Limbo.getInstance().getConsole().sendMessage(chat); if (event.getFormat().equals(CHAT_DEFAULT_FORMAT)) { - TranslatableComponent translatable = new TranslatableComponent("chat.type.text", username, event.getMessage()); for (Player each : Limbo.getInstance().getPlayers()) { - each.sendMessage(translatable, uuid); + each.sendMessage(Identity.identity(uuid), Component.translatable("chat.type.text").args(Component.text(this.getName()), Component.text(event.getMessage())), MessageType.CHAT, saltSignature, time); } } else { for (Player each : Limbo.getInstance().getPlayers()) { - each.sendMessage(chat, uuid); + each.sendMessage(Identity.identity(uuid), Component.text(chat), MessageType.SYSTEM, saltSignature, time); } } } else if (verbose) { @@ -412,10 +416,29 @@ public class Player extends LivingEntity implements CommandSender { @Override public void sendMessage(Identity source, Component message, MessageType type) { + sendMessage(source, message, type, null, Instant.now()); + } + + public void sendMessage(Identity source, Component message, MessageType type, NetworkEncryptionUtils.SignatureData signature, Instant time) { try { - PacketPlayOutChat chat = new PacketPlayOutChat(message, 0, uuid); + PacketOut chat; + switch (type) { + case CHAT: + /* + if (signature == null) { + chat = new ClientboundPlayerChatPacket(Component.empty(), Optional.of(message), 0, uuid, time, SignatureData.NONE); + } else { + chat = new ClientboundPlayerChatPacket(message, Optional.of(message), 0, uuid, time, signature); + } + break; + */ + case SYSTEM: + default: + chat = new ClientboundSystemChatPacket(message, 1); + break; + } clientConnection.sendPacket(chat); - } catch (IOException e) {} + } catch (IOException ignored) {} } @Override @@ -446,9 +469,9 @@ public class Player extends LivingEntity implements CommandSender { @Override public void sendActionBar(Component message) { try { - PacketPlayOutChat chat = new PacketPlayOutChat(message, 2, new UUID(0, 0)); + ClientboundSystemChatPacket chat = new ClientboundSystemChatPacket(message, 2); clientConnection.sendPacket(chat); - } catch (IOException e) {} + } catch (IOException ignored) {} } @Override diff --git a/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java b/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java index ca3b67d..83b1270 100644 --- a/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java +++ b/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java @@ -19,6 +19,18 @@ package com.loohp.limbo.player; +import com.loohp.limbo.Limbo; +import com.loohp.limbo.entity.Entity; +import com.loohp.limbo.location.Location; +import com.loohp.limbo.network.protocol.packets.ClientboundLevelChunkWithLightPacket; +import com.loohp.limbo.network.protocol.packets.PacketPlayOutEntityDestroy; +import com.loohp.limbo.network.protocol.packets.PacketPlayOutEntityMetadata; +import com.loohp.limbo.network.protocol.packets.PacketPlayOutSpawnEntity; +import com.loohp.limbo.network.protocol.packets.PacketPlayOutUnloadChunk; +import com.loohp.limbo.world.ChunkPosition; +import com.loohp.limbo.world.World; +import net.querz.mca.Chunk; + import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; @@ -29,20 +41,6 @@ import java.util.Map.Entry; import java.util.Set; import java.util.stream.Collectors; -import com.loohp.limbo.Limbo; -import com.loohp.limbo.entity.Entity; -import com.loohp.limbo.location.Location; -import com.loohp.limbo.network.protocol.packets.ClientboundLevelChunkWithLightPacket; -import com.loohp.limbo.network.protocol.packets.PacketPlayOutEntityDestroy; -import com.loohp.limbo.network.protocol.packets.PacketPlayOutEntityMetadata; -import com.loohp.limbo.network.protocol.packets.PacketPlayOutSpawnEntity; -import com.loohp.limbo.network.protocol.packets.PacketPlayOutSpawnEntityLiving; -import com.loohp.limbo.network.protocol.packets.PacketPlayOutUnloadChunk; -import com.loohp.limbo.world.ChunkPosition; -import com.loohp.limbo.world.World; - -import net.querz.mca.Chunk; - public class PlayerInteractManager { private Player player; @@ -75,19 +73,11 @@ public class PlayerInteractManager { Set entitiesInRange = player.getWorld().getEntities().stream().filter(each -> each.getLocation().distanceSquared(location) < viewDistanceBlocks * viewDistanceBlocks).collect(Collectors.toSet()); for (Entity entity : entitiesInRange) { if (!entities.contains(entity)) { - if (entity.getType().isAlive()) { - PacketPlayOutSpawnEntityLiving packet = new PacketPlayOutSpawnEntityLiving(entity.getEntityId(), entity.getUniqueId(), entity.getType(), entity.getX(), entity.getY(), entity.getZ(), entity.getYaw(), entity.getPitch(), entity.getPitch(), (short) 0, (short) 0, (short) 0); - player.clientConnection.sendPacket(packet); - - PacketPlayOutEntityMetadata meta = new PacketPlayOutEntityMetadata(entity); - player.clientConnection.sendPacket(meta); - } else { - PacketPlayOutSpawnEntity packet = new PacketPlayOutSpawnEntity(entity.getEntityId(), entity.getUniqueId(), entity.getType(), entity.getX(), entity.getY(), entity.getZ(), entity.getPitch(), entity.getYaw(), (short) 0, (short) 0, (short) 0); - player.clientConnection.sendPacket(packet); - - PacketPlayOutEntityMetadata meta = new PacketPlayOutEntityMetadata(entity); - player.clientConnection.sendPacket(meta); - } + PacketPlayOutSpawnEntity packet = new PacketPlayOutSpawnEntity(entity.getEntityId(), entity.getUniqueId(), entity.getType(), entity.getX(), entity.getY(), entity.getZ(), entity.getYaw(), entity.getPitch(), entity.getPitch(), 0, (short) 0, (short) 0, (short) 0); + player.clientConnection.sendPacket(packet); + + PacketPlayOutEntityMetadata meta = new PacketPlayOutEntityMetadata(entity); + player.clientConnection.sendPacket(meta); } } List ids = new ArrayList<>(); @@ -127,7 +117,7 @@ public class PlayerInteractManager { player.clientConnection.sendPacket(packet); } } - + for (Entry entry : chunksInRange.entrySet()) { ChunkPosition chunkPos = entry.getKey(); if (!currentViewing.containsKey(chunkPos)) { @@ -152,7 +142,7 @@ public class PlayerInteractManager { } } } - + currentViewing = chunksInRange; } diff --git a/src/main/java/com/loohp/limbo/utils/DeclareCommands.java b/src/main/java/com/loohp/limbo/utils/DeclareCommands.java index 78b533f..5d3a73a 100644 --- a/src/main/java/com/loohp/limbo/utils/DeclareCommands.java +++ b/src/main/java/com/loohp/limbo/utils/DeclareCommands.java @@ -58,11 +58,10 @@ public class DeclareCommands { i++; output.writeByte(2 | 0x04 | 0x10); - DataTypeIO.writeVarInt(output, 1); - DataTypeIO.writeVarInt(output, i); - DataTypeIO.writeString(output, "arg", StandardCharsets.UTF_8); - DataTypeIO.writeString(output, "brigadier:string", StandardCharsets.UTF_8); DataTypeIO.writeVarInt(output, 0); + DataTypeIO.writeString(output, "arg", StandardCharsets.UTF_8); + DataTypeIO.writeVarInt(output, 5); //brigadier:string + DataTypeIO.writeVarInt(output, 2); DataTypeIO.writeString(output, "minecraft:ask_server", StandardCharsets.UTF_8); i++; } diff --git a/src/main/java/com/loohp/limbo/utils/NetworkEncryptionUtils.java b/src/main/java/com/loohp/limbo/utils/NetworkEncryptionUtils.java new file mode 100644 index 0000000..eb49d78 --- /dev/null +++ b/src/main/java/com/loohp/limbo/utils/NetworkEncryptionUtils.java @@ -0,0 +1,84 @@ +/* + * This file is part of Limbo. + * + * Copyright (C) 2022. LoohpJames + * Copyright (C) 2022. Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.loohp.limbo.utils; + +import com.google.common.primitives.Longs; + +import java.io.DataInputStream; +import java.io.DataOutputStream; +import java.io.IOException; +import java.util.Map; + +public class NetworkEncryptionUtils { + + public static class SignatureData { + + public static final SignatureData NONE = new SignatureData(0L, new byte[0]); + private long salt; + private byte[] signature; + + public SignatureData(long salt, byte[] signature) { + this.salt = salt; + this.signature = signature; + } + + public SignatureData(DataInputStream in) throws IOException { + this.salt = in.readLong(); + int length = DataTypeIO.readVarInt(in); + this.signature = new byte[length]; + in.readFully(this.signature); + } + + public boolean isSignaturePresent() { + return this.signature.length > 0; + } + + public static void write(DataOutputStream out, SignatureData signatureData) throws IOException { + out.writeLong(signatureData.salt); + DataTypeIO.writeVarInt(out, signatureData.signature.length); + out.write(signatureData.signature); + } + + public byte[] getSalt() { + return Longs.toByteArray(this.salt); + } + } + + public static class ArgumentSignatures { + + private long salt; + private Map signatures; + + public ArgumentSignatures(long salt, Map signatures) { + this.salt = salt; + this.signatures = signatures; + } + + public long getSalt() { + return salt; + } + + public Map getSignatures() { + return signatures; + } + + } + +} diff --git a/src/main/java/com/loohp/limbo/world/DimensionRegistry.java b/src/main/java/com/loohp/limbo/world/DimensionRegistry.java index 9762a73..850ce79 100644 --- a/src/main/java/com/loohp/limbo/world/DimensionRegistry.java +++ b/src/main/java/com/loohp/limbo/world/DimensionRegistry.java @@ -57,7 +57,7 @@ public class DimensionRegistry { this.reg = file; - try (InputStreamReader reader = new InputStreamReader(new FileInputStream(reg), StandardCharsets.UTF_8)) { + try (InputStreamReader reader = new InputStreamReader(Files.newInputStream(reg.toPath()), StandardCharsets.UTF_8)) { JSONObject json = (JSONObject) new JSONParser().parse(reader); CompoundTag tag = CustomNBTUtils.getCompoundTagFromJson((JSONObject) json.get("value")); defaultTag = tag; diff --git a/src/main/java/com/loohp/limbo/world/GeneratedBlockDataMappings.java b/src/main/java/com/loohp/limbo/world/GeneratedBlockDataMappings.java index b5f711a..ab11dcb 100644 --- a/src/main/java/com/loohp/limbo/world/GeneratedBlockDataMappings.java +++ b/src/main/java/com/loohp/limbo/world/GeneratedBlockDataMappings.java @@ -26,6 +26,7 @@ import java.io.InputStream; import java.nio.file.Files; import java.util.HashMap; import java.util.Map; +import java.util.Objects; import org.json.simple.JSONArray; import org.json.simple.JSONObject; @@ -79,7 +80,7 @@ public class GeneratedBlockDataMappings { for (Object entry : (JSONArray) data.get("states")) { JSONObject jsonobj = (JSONObject) entry; - if (((JSONObject) jsonobj.get("properties")).keySet().stream().allMatch(key -> blockstate.get(key).equals((String) (((JSONObject) jsonobj.get("properties")).get(key))))) { + if (((JSONObject) jsonobj.get("properties")).keySet().stream().allMatch(key -> Objects.equals(blockstate.get(key), ((JSONObject) jsonobj.get("properties")).get(key)))) { return (int) (long) jsonobj.get("id"); } } diff --git a/src/main/resources/blocks.json b/src/main/resources/blocks.json index 79271e8..7dd79e3 100644 --- a/src/main/resources/blocks.json +++ b/src/main/resources/blocks.json @@ -1,275 +1,1853 @@ { - "minecraft:air": { - "states": [ - { - "id": 0, - "default": true - } - ] - }, - "minecraft:stone": { - "states": [ - { - "id": 1, - "default": true - } - ] - }, - "minecraft:granite": { - "states": [ - { - "id": 2, - "default": true - } - ] - }, - "minecraft:polished_granite": { - "states": [ - { - "id": 3, - "default": true - } - ] - }, - "minecraft:diorite": { - "states": [ - { - "id": 4, - "default": true - } - ] - }, - "minecraft:polished_diorite": { - "states": [ - { - "id": 5, - "default": true - } - ] - }, - "minecraft:andesite": { - "states": [ - { - "id": 6, - "default": true - } - ] - }, - "minecraft:polished_andesite": { - "states": [ - { - "id": 7, - "default": true - } - ] - }, - "minecraft:grass_block": { + "minecraft:acacia_button": { "properties": { - "snowy": [ + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ "true", "false" ] }, "states": [ { + "id": 7035, "properties": { - "snowy": "true" - }, - "id": 8 + "face": "floor", + "facing": "north", + "powered": "true" + } }, { + "id": 7036, "properties": { - "snowy": "false" - }, - "id": 9, - "default": true - } - ] - }, - "minecraft:dirt": { - "states": [ + "face": "floor", + "facing": "north", + "powered": "false" + } + }, { - "id": 10, - "default": true - } - ] - }, - "minecraft:coarse_dirt": { - "states": [ + "id": 7037, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, { - "id": 11, - "default": true + "id": 7038, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7039, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7040, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7041, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7042, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 7043, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 7044, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7045, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7046, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7047, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7048, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7049, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7050, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 7051, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 7052, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7053, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7054, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7055, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7056, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7057, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7058, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } } ] }, - "minecraft:podzol": { + "minecraft:acacia_door": { "properties": { - "snowy": [ + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ "true", "false" ] }, "states": [ { + "id": 9747, "properties": { - "snowy": "true" - }, - "id": 12 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9748, "properties": { - "snowy": "false" - }, - "id": 13, - "default": true + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9749, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9750, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9751, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9752, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9753, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9754, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9755, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9756, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9757, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 9758, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9759, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9760, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9761, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9762, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9763, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9764, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9765, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9766, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9767, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9768, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9769, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9770, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9771, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9772, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9773, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9774, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9775, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9776, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9777, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9778, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9779, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9780, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9781, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9782, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9783, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9784, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9785, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9786, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9787, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9788, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9789, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9790, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9791, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9792, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9793, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9794, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9795, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9796, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9797, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9798, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9799, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9800, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9801, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9802, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9803, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9804, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9805, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9806, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9807, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9808, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9809, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9810, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } } ] }, - "minecraft:cobblestone": { + "minecraft:acacia_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, "states": [ { - "id": 14, - "default": true + "id": 9459, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9460, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9461, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9462, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9463, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9464, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9465, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9466, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9467, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9468, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9469, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9470, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9471, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9472, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9473, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9474, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9475, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9476, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9477, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9478, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9479, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9480, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9481, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9482, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9483, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9484, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9485, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9486, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9487, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9488, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9489, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9490, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:oak_planks": { + "minecraft:acacia_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, "states": [ { - "id": 15, - "default": true + "id": 9267, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9268, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9269, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9270, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9271, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9272, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9273, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 9274, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9275, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9276, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9277, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9278, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9279, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9280, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9281, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9282, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9283, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9284, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9285, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9286, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9287, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9288, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9289, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9290, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9291, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9292, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9293, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9294, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9295, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9296, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9297, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9298, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } } ] }, - "minecraft:spruce_planks": { + "minecraft:acacia_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, "states": [ { - "id": 16, - "default": true + "id": 318, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 319, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 320, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 321, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 322, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 323, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 324, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 325, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 326, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 327, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 328, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 329, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 330, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 331, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 332, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 333, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 334, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 335, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 336, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 337, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 338, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 339, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 340, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 341, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 342, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 343, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 344, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 345, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } } ] }, - "minecraft:birch_planks": { + "minecraft:acacia_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, "states": [ { - "id": 17, - "default": true - } - ] - }, - "minecraft:jungle_planks": { - "states": [ + "id": 129, + "properties": { + "axis": "x" + } + }, { - "id": 18, - "default": true + "default": true, + "id": 130, + "properties": { + "axis": "y" + } + }, + { + "id": 131, + "properties": { + "axis": "z" + } } ] }, "minecraft:acacia_planks": { "states": [ { - "id": 19, - "default": true + "default": true, + "id": 19 } ] }, - "minecraft:dark_oak_planks": { - "states": [ - { - "id": 20, - "default": true - } - ] - }, - "minecraft:oak_sapling": { + "minecraft:acacia_pressure_plate": { "properties": { - "stage": [ - "0", - "1" + "powered": [ + "true", + "false" ] }, "states": [ { + "id": 4186, "properties": { - "stage": "0" - }, - "id": 21, - "default": true + "powered": "true" + } }, { + "default": true, + "id": 4187, "properties": { - "stage": "1" - }, - "id": 22 - } - ] - }, - "minecraft:spruce_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "properties": { - "stage": "0" - }, - "id": 23, - "default": true - }, - { - "properties": { - "stage": "1" - }, - "id": 24 - } - ] - }, - "minecraft:birch_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "properties": { - "stage": "0" - }, - "id": 25, - "default": true - }, - { - "properties": { - "stage": "1" - }, - "id": 26 - } - ] - }, - "minecraft:jungle_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "properties": { - "stage": "0" - }, - "id": 27, - "default": true - }, - { - "properties": { - "stage": "1" - }, - "id": 28 + "powered": "false" + } } ] }, @@ -282,21 +1860,10169 @@ }, "states": [ { + "default": true, + "id": 30, "properties": { "stage": "0" - }, - "id": 29, - "default": true + } }, { + "id": 31, "properties": { "stage": "1" - }, - "id": 30 + } } ] }, - "minecraft:dark_oak_sapling": { + "minecraft:acacia_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3732, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3733, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 3734, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 3735, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 3736, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 3737, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 3738, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 3739, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 3740, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 3741, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 3742, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 3743, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 3744, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 3745, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 3746, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 3747, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 3748, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 3749, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 3750, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 3751, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 3752, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 3753, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 3754, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 3755, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 3756, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 3757, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 3758, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 3759, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 3760, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 3761, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 3762, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 3763, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9065, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9066, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9067, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9068, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9069, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9070, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8004, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8005, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8006, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8007, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8008, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8009, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8010, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8011, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8012, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8013, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8014, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8015, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8016, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8017, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8018, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8019, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8020, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8021, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8022, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8023, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8024, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8025, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8026, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8027, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8028, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8029, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8030, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8031, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8032, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8033, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8034, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8035, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8036, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8037, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8038, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8039, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8040, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8041, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8042, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8043, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8044, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8045, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8046, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8047, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8048, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8049, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8050, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8051, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8052, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8053, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8054, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8055, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8056, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8057, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8058, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8059, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8060, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8061, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8062, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8063, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8064, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8065, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8066, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8067, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8068, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8069, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8070, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8071, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8072, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8073, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8074, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8075, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8076, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8077, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8078, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8079, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8080, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8081, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8082, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8083, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4676, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4677, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4678, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4679, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4680, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4681, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4682, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4683, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4684, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4685, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4686, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4687, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4688, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4689, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4690, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4691, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4692, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4693, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4694, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4695, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4696, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4697, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4698, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4699, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4700, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4701, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4702, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4703, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4704, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4705, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4706, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4707, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4708, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4709, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4710, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4711, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4712, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4713, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4714, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4715, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4716, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4717, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4718, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4719, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4720, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4721, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4722, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4723, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4724, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4725, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4726, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4727, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4728, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4729, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4730, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4731, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4732, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4733, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4734, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4735, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4736, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4737, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4738, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4739, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4056, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4057, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4058, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4059, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4060, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4061, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4062, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4063, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 176, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 177, + "properties": { + "axis": "y" + } + }, + { + "id": 178, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:activator_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7440, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 7441, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 7442, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 7443, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 7444, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 7445, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 7446, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 7447, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 7448, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 7449, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 7450, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 7451, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 7452, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7453, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 7454, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 7455, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 7456, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 7457, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 7458, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 7459, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 7460, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 7461, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 7462, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 7463, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:air": { + "states": [ + { + "default": true, + "id": 0 + } + ] + }, + "minecraft:allium": { + "states": [ + { + "default": true, + "id": 1669 + } + ] + }, + "minecraft:amethyst_block": { + "states": [ + { + "default": true, + "id": 18619 + } + ] + }, + "minecraft:amethyst_cluster": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18621, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 18622, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 18623, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 18624, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 18625, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 18626, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 18627, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 18628, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 18629, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18630, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 18631, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 18632, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:ancient_debris": { + "states": [ + { + "default": true, + "id": 17036 + } + ] + }, + "minecraft:andesite": { + "states": [ + { + "default": true, + "id": 6 + } + ] + }, + "minecraft:andesite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11724, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11725, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11726, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11727, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11728, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11729, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:andesite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11350, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11351, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11352, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11353, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11354, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11355, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11356, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11357, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11358, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11359, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11360, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11361, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11362, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11363, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11364, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11365, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11366, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11367, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11368, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11369, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11370, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11371, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11372, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11373, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11374, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11375, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11376, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11377, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11378, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11379, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11380, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11381, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11382, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11383, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11384, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11385, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11386, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11387, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11388, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11389, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11390, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11391, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11392, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11393, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11394, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11395, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11396, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11397, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11398, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11399, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11400, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11401, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11402, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11403, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11404, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11405, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11406, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11407, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11408, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11409, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11410, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11411, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11412, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11413, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11414, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11415, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11416, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11417, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11418, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11419, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11420, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11421, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11422, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11423, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11424, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11425, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11426, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11427, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11428, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11429, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:andesite_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14340, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14341, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14342, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 14343, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14344, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14345, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14346, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14347, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14348, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14349, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14350, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14351, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14352, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14353, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14354, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14355, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14356, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14357, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14358, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14359, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14360, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14361, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14362, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14363, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14364, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14365, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14366, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14367, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14368, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14369, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14370, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14371, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14372, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14373, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14374, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14375, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14376, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14377, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14378, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14379, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14380, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14381, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14382, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14383, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14384, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14385, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14386, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14387, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14388, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14389, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14390, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14391, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14392, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14393, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14394, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14395, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14396, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14397, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14398, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14399, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14400, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14401, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14402, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14403, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14404, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14405, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14406, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14407, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14408, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14409, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14410, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14411, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14412, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14413, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14414, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14415, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14416, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14417, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14418, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14419, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14420, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14421, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14422, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14423, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14424, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14425, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14426, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14427, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14428, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14429, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14430, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14431, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14432, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14433, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14434, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14435, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14436, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14437, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14438, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14439, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14440, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14441, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14442, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14443, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14444, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14445, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14446, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14447, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14448, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14449, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14450, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14451, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14452, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14453, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14454, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14455, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14456, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14457, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14458, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14459, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14460, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14461, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14462, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14463, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14464, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14465, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14466, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14467, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14468, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14469, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14470, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14471, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14472, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14473, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14474, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14475, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14476, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14477, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14478, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14479, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14480, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14481, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14482, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14483, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14484, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14485, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14486, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14487, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14488, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14489, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14490, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14491, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14492, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14493, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14494, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14495, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14496, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14497, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14498, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14499, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14500, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14501, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14502, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14503, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14504, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14505, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14506, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14507, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14508, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14509, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14510, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14511, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14512, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14513, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14514, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14515, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14516, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14517, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14518, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14519, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14520, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14521, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14522, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14523, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14524, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14525, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14526, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14527, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14528, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14529, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14530, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14531, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14532, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14533, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14534, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14535, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14536, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14537, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14538, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14539, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14540, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14541, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14542, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14543, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14544, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14545, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14546, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14547, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14548, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14549, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14550, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14551, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14552, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14553, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14554, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14555, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14556, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14557, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14558, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14559, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14560, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14561, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14562, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14563, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14564, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14565, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14566, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14567, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14568, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14569, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14570, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14571, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14572, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14573, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14574, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14575, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14576, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14577, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14578, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14579, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14580, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14581, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14582, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14583, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14584, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14585, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14586, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14587, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14588, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14589, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14590, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14591, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14592, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14593, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14594, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14595, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14596, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14597, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14598, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14599, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14600, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14601, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14602, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14603, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14604, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14605, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14606, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14607, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14608, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14609, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14610, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14611, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14612, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14613, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14614, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14615, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14616, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14617, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14618, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14619, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14620, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14621, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14622, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14623, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14624, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14625, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14626, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14627, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14628, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14629, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14630, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14631, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14632, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14633, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14634, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14635, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14636, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14637, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14638, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14639, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14640, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14641, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14642, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14643, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14644, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14645, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14646, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14647, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14648, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14649, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14650, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14651, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14652, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14653, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14654, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14655, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14656, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14657, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14658, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14659, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14660, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14661, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14662, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14663, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7227, + "properties": { + "facing": "north" + } + }, + { + "id": 7228, + "properties": { + "facing": "south" + } + }, + { + "id": 7229, + "properties": { + "facing": "west" + } + }, + { + "id": 7230, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:attached_melon_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 5147, + "properties": { + "facing": "north" + } + }, + { + "id": 5148, + "properties": { + "facing": "south" + } + }, + { + "id": 5149, + "properties": { + "facing": "west" + } + }, + { + "id": 5150, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:attached_pumpkin_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 5143, + "properties": { + "facing": "north" + } + }, + { + "id": 5144, + "properties": { + "facing": "south" + } + }, + { + "id": 5145, + "properties": { + "facing": "west" + } + }, + { + "id": 5146, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:azalea": { + "states": [ + { + "default": true, + "id": 19714 + } + ] + }, + "minecraft:azalea_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 402, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 403, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 404, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 405, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 406, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 407, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 408, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 409, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 410, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 411, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 412, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 413, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 414, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 415, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 416, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 417, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 418, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 419, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 420, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 421, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 422, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 423, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 424, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 425, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 426, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 427, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 428, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 429, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:azure_bluet": { + "states": [ + { + "default": true, + "id": 1670 + } + ] + }, + "minecraft:bamboo": { + "properties": { + "age": [ + "0", + "1" + ], + "leaves": [ + "none", + "small", + "large" + ], + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 10533, + "properties": { + "age": "0", + "leaves": "none", + "stage": "0" + } + }, + { + "id": 10534, + "properties": { + "age": "0", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 10535, + "properties": { + "age": "0", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 10536, + "properties": { + "age": "0", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 10537, + "properties": { + "age": "0", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 10538, + "properties": { + "age": "0", + "leaves": "large", + "stage": "1" + } + }, + { + "id": 10539, + "properties": { + "age": "1", + "leaves": "none", + "stage": "0" + } + }, + { + "id": 10540, + "properties": { + "age": "1", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 10541, + "properties": { + "age": "1", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 10542, + "properties": { + "age": "1", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 10543, + "properties": { + "age": "1", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 10544, + "properties": { + "age": "1", + "leaves": "large", + "stage": "1" + } + } + ] + }, + "minecraft:bamboo_sapling": { + "states": [ + { + "default": true, + "id": 10532 + } + ] + }, + "minecraft:barrel": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "open": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15996, + "properties": { + "facing": "north", + "open": "true" + } + }, + { + "default": true, + "id": 15997, + "properties": { + "facing": "north", + "open": "false" + } + }, + { + "id": 15998, + "properties": { + "facing": "east", + "open": "true" + } + }, + { + "id": 15999, + "properties": { + "facing": "east", + "open": "false" + } + }, + { + "id": 16000, + "properties": { + "facing": "south", + "open": "true" + } + }, + { + "id": 16001, + "properties": { + "facing": "south", + "open": "false" + } + }, + { + "id": 16002, + "properties": { + "facing": "west", + "open": "true" + } + }, + { + "id": 16003, + "properties": { + "facing": "west", + "open": "false" + } + }, + { + "id": 16004, + "properties": { + "facing": "up", + "open": "true" + } + }, + { + "id": 16005, + "properties": { + "facing": "up", + "open": "false" + } + }, + { + "id": 16006, + "properties": { + "facing": "down", + "open": "true" + } + }, + { + "id": 16007, + "properties": { + "facing": "down", + "open": "false" + } + } + ] + }, + "minecraft:barrier": { + "states": [ + { + "default": true, + "id": 8245 + } + ] + }, + "minecraft:basalt": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 4311, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 4312, + "properties": { + "axis": "y" + } + }, + { + "id": 4313, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:beacon": { + "states": [ + { + "default": true, + "id": 6248 + } + ] + }, + "minecraft:bedrock": { + "states": [ + { + "default": true, + "id": 74 + } + ] + }, + "minecraft:bee_nest": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 16985, + "properties": { + "facing": "north", + "honey_level": "0" + } + }, + { + "id": 16986, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 16987, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 16988, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 16989, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 16990, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 16991, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 16992, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 16993, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 16994, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 16995, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 16996, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 16997, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 16998, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 16999, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 17000, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 17001, + "properties": { + "facing": "west", + "honey_level": "4" + } + }, + { + "id": 17002, + "properties": { + "facing": "west", + "honey_level": "5" + } + }, + { + "id": 17003, + "properties": { + "facing": "east", + "honey_level": "0" + } + }, + { + "id": 17004, + "properties": { + "facing": "east", + "honey_level": "1" + } + }, + { + "id": 17005, + "properties": { + "facing": "east", + "honey_level": "2" + } + }, + { + "id": 17006, + "properties": { + "facing": "east", + "honey_level": "3" + } + }, + { + "id": 17007, + "properties": { + "facing": "east", + "honey_level": "4" + } + }, + { + "id": 17008, + "properties": { + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beehive": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 17009, + "properties": { + "facing": "north", + "honey_level": "0" + } + }, + { + "id": 17010, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 17011, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 17012, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 17013, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 17014, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 17015, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 17016, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 17017, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 17018, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 17019, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 17020, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 17021, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 17022, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 17023, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 17024, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 17025, + "properties": { + "facing": "west", + "honey_level": "4" + } + }, + { + "id": 17026, + "properties": { + "facing": "west", + "honey_level": "5" + } + }, + { + "id": 17027, + "properties": { + "facing": "east", + "honey_level": "0" + } + }, + { + "id": 17028, + "properties": { + "facing": "east", + "honey_level": "1" + } + }, + { + "id": 17029, + "properties": { + "facing": "east", + "honey_level": "2" + } + }, + { + "id": 17030, + "properties": { + "facing": "east", + "honey_level": "3" + } + }, + { + "id": 17031, + "properties": { + "facing": "east", + "honey_level": "4" + } + }, + { + "id": 17032, + "properties": { + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beetroots": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 10100, + "properties": { + "age": "0" + } + }, + { + "id": 10101, + "properties": { + "age": "1" + } + }, + { + "id": 10102, + "properties": { + "age": "2" + } + }, + { + "id": 10103, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:bell": { + "properties": { + "attachment": [ + "floor", + "ceiling", + "single_wall", + "double_wall" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16059, + "properties": { + "attachment": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 16060, + "properties": { + "attachment": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 16061, + "properties": { + "attachment": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 16062, + "properties": { + "attachment": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 16063, + "properties": { + "attachment": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 16064, + "properties": { + "attachment": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 16065, + "properties": { + "attachment": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 16066, + "properties": { + "attachment": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 16067, + "properties": { + "attachment": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 16068, + "properties": { + "attachment": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 16069, + "properties": { + "attachment": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 16070, + "properties": { + "attachment": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 16071, + "properties": { + "attachment": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 16072, + "properties": { + "attachment": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 16073, + "properties": { + "attachment": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 16074, + "properties": { + "attachment": "ceiling", + "facing": "east", + "powered": "false" + } + }, + { + "id": 16075, + "properties": { + "attachment": "single_wall", + "facing": "north", + "powered": "true" + } + }, + { + "id": 16076, + "properties": { + "attachment": "single_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 16077, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 16078, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 16079, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 16080, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 16081, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 16082, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 16083, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "true" + } + }, + { + "id": 16084, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 16085, + "properties": { + "attachment": "double_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 16086, + "properties": { + "attachment": "double_wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 16087, + "properties": { + "attachment": "double_wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 16088, + "properties": { + "attachment": "double_wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 16089, + "properties": { + "attachment": "double_wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 16090, + "properties": { + "attachment": "double_wall", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:big_dripleaf": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "tilt": [ + "none", + "unstable", + "partial", + "full" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19718, + "properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19719, + "properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 19720, + "properties": { + "facing": "north", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 19721, + "properties": { + "facing": "north", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 19722, + "properties": { + "facing": "north", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 19723, + "properties": { + "facing": "north", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 19724, + "properties": { + "facing": "north", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 19725, + "properties": { + "facing": "north", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 19726, + "properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 19727, + "properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 19728, + "properties": { + "facing": "south", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 19729, + "properties": { + "facing": "south", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 19730, + "properties": { + "facing": "south", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 19731, + "properties": { + "facing": "south", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 19732, + "properties": { + "facing": "south", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 19733, + "properties": { + "facing": "south", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 19734, + "properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 19735, + "properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 19736, + "properties": { + "facing": "west", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 19737, + "properties": { + "facing": "west", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 19738, + "properties": { + "facing": "west", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 19739, + "properties": { + "facing": "west", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 19740, + "properties": { + "facing": "west", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 19741, + "properties": { + "facing": "west", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 19742, + "properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 19743, + "properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 19744, + "properties": { + "facing": "east", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 19745, + "properties": { + "facing": "east", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 19746, + "properties": { + "facing": "east", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 19747, + "properties": { + "facing": "east", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 19748, + "properties": { + "facing": "east", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 19749, + "properties": { + "facing": "east", + "tilt": "full", + "waterlogged": "false" + } + } + ] + }, + "minecraft:big_dripleaf_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19750, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19751, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 19752, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 19753, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 19754, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 19755, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 19756, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 19757, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6987, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 6988, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6989, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6990, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6991, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6992, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6993, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6994, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 6995, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 6996, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6997, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6998, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6999, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7000, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7001, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7002, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 7003, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 7004, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7005, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7006, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7007, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7008, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7009, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7010, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:birch_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9619, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9620, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9621, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9622, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9623, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9624, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9625, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9626, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9627, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9628, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9629, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 9630, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9631, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9632, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9633, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9634, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9635, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9636, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9637, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9638, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9639, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9640, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9641, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9642, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9643, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9644, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9645, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9646, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9647, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9648, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9649, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9650, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9651, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9652, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9653, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9654, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9655, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9656, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9657, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9658, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9659, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9660, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9661, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9662, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9663, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9664, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9665, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9666, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9667, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9668, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9669, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9670, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9671, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9672, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9673, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9674, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9675, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9676, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9677, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9678, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9679, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9680, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9681, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9682, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:birch_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9395, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9396, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9397, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9398, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9399, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9400, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9401, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9402, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9403, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9404, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9405, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9406, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9407, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9408, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9409, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9410, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9411, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9412, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9413, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9414, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9415, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9416, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9417, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9418, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9419, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9420, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9421, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9422, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9423, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9424, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9425, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9426, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:birch_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9203, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9204, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9205, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9206, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9207, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9208, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9209, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 9210, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9211, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9212, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9213, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9214, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9215, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9216, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9217, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9218, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9219, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9220, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9221, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9222, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9223, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9224, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9225, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9226, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9227, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9228, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9229, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9230, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9231, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9232, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9233, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9234, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:birch_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 262, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 263, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 264, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 265, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 266, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 267, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 268, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 269, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 270, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 271, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 272, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 273, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 274, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 275, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 276, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 277, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 278, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 279, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 280, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 281, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 282, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 283, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 284, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 285, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 286, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 287, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 288, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 289, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 123, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 124, + "properties": { + "axis": "y" + } + }, + { + "id": 125, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:birch_planks": { + "states": [ + { + "default": true, + "id": 17 + } + ] + }, + "minecraft:birch_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4182, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 4183, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:birch_sapling": { "properties": { "stage": [ "0", @@ -305,31 +12031,1854 @@ }, "states": [ { + "default": true, + "id": 26, "properties": { "stage": "0" - }, - "id": 31, - "default": true + } }, { + "id": 27, "properties": { "stage": "1" - }, - "id": 32 + } } ] }, - "minecraft:bedrock": { + "minecraft:birch_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, "states": [ { - "id": 33, - "default": true + "id": 3700, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3701, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 3702, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 3703, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 3704, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 3705, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 3706, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 3707, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 3708, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 3709, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 3710, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 3711, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 3712, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 3713, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 3714, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 3715, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 3716, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 3717, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 3718, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 3719, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 3720, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 3721, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 3722, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 3723, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 3724, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 3725, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 3726, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 3727, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 3728, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 3729, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 3730, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 3731, + "properties": { + "rotation": "15", + "waterlogged": "false" + } } ] }, - "minecraft:water": { + "minecraft:birch_slab": { "properties": { - "level": [ + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9053, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9054, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9055, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9056, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9057, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9058, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6076, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6077, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6078, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6079, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6080, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6081, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6082, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6083, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6084, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6085, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6086, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6087, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6088, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6089, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6090, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6091, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6092, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6093, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6094, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6095, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6096, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6097, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6098, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6099, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6100, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6101, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6102, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6103, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6104, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6105, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6106, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6107, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6108, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6109, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6110, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6111, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6112, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6113, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6114, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6115, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6116, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6117, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6118, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6119, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6120, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6121, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6122, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6123, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6124, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6125, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6126, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6127, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6128, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6129, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6130, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6131, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6132, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6133, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6134, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6135, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6136, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6137, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6138, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6139, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6140, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6141, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6142, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6143, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6144, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6145, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6146, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6147, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6148, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6149, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6150, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6151, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6152, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6153, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6154, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6155, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4548, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4549, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4550, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4551, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4552, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4553, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4554, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4555, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4556, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4557, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4558, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4559, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4560, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4561, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4562, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4563, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4564, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4565, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4566, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4567, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4568, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4569, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4570, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4571, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4572, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4573, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4574, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4575, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4576, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4577, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4578, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4579, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4580, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4581, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4582, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4583, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4584, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4585, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4586, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4587, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4588, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4589, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4590, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4591, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4592, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4593, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4594, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4595, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4596, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4597, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4598, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4599, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4600, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4601, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4602, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4603, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4604, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4605, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4606, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4607, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4608, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4609, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4610, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4611, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4048, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4049, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4050, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4051, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4052, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4053, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4054, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4055, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 170, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 171, + "properties": { + "axis": "y" + } + }, + { + "id": 172, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:black_banner": { + "properties": { + "rotation": [ "0", "1", "2", @@ -350,101 +13899,76463 @@ }, "states": [ { + "default": true, + "id": 8878, + "properties": { + "rotation": "0" + } + }, + { + "id": 8879, + "properties": { + "rotation": "1" + } + }, + { + "id": 8880, + "properties": { + "rotation": "2" + } + }, + { + "id": 8881, + "properties": { + "rotation": "3" + } + }, + { + "id": 8882, + "properties": { + "rotation": "4" + } + }, + { + "id": 8883, + "properties": { + "rotation": "5" + } + }, + { + "id": 8884, + "properties": { + "rotation": "6" + } + }, + { + "id": 8885, + "properties": { + "rotation": "7" + } + }, + { + "id": 8886, + "properties": { + "rotation": "8" + } + }, + { + "id": 8887, + "properties": { + "rotation": "9" + } + }, + { + "id": 8888, + "properties": { + "rotation": "10" + } + }, + { + "id": 8889, + "properties": { + "rotation": "11" + } + }, + { + "id": 8890, + "properties": { + "rotation": "12" + } + }, + { + "id": 8891, + "properties": { + "rotation": "13" + } + }, + { + "id": 8892, + "properties": { + "rotation": "14" + } + }, + { + "id": 8893, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:black_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1519, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1520, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1521, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1522, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1523, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1524, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1525, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1526, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1527, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1528, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1529, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1530, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1531, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1532, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1533, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1534, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:black_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18569, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18570, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18571, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18572, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18573, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18574, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18575, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18576, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18577, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18578, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18579, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18580, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18581, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18582, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18583, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18584, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:black_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18617, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18618, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:black_carpet": { + "states": [ + { + "default": true, + "id": 8622 + } + ] + }, + "minecraft:black_concrete": { + "states": [ + { + "default": true, + "id": 10334 + } + ] + }, + "minecraft:black_concrete_powder": { + "states": [ + { + "default": true, + "id": 10350 + } + ] + }, + "minecraft:black_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10315, + "properties": { + "facing": "north" + } + }, + { + "id": 10316, + "properties": { + "facing": "south" + } + }, + { + "id": 10317, + "properties": { + "facing": "west" + } + }, + { + "id": 10318, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:black_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10249, + "properties": { + "facing": "north" + } + }, + { + "id": 10250, + "properties": { + "facing": "east" + } + }, + { + "id": 10251, + "properties": { + "facing": "south" + } + }, + { + "id": 10252, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10253, + "properties": { + "facing": "up" + } + }, + { + "id": 10254, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:black_stained_glass": { + "states": [ + { + "default": true, + "id": 4419 + } + ] + }, + "minecraft:black_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7972, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7973, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7974, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7975, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7976, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7977, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7978, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7979, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7980, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7981, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7982, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7983, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7984, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7985, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7986, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7987, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7988, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7989, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7990, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7991, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7992, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7993, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7994, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7995, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7996, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7997, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7998, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7999, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8000, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8001, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8002, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8003, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:black_terracotta": { + "states": [ + { + "default": true, + "id": 7491 + } + ] + }, + "minecraft:black_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8954, + "properties": { + "facing": "north" + } + }, + { + "id": 8955, + "properties": { + "facing": "south" + } + }, + { + "id": 8956, + "properties": { + "facing": "west" + } + }, + { + "id": 8957, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:black_wool": { + "states": [ + { + "default": true, + "id": 1653 + } + ] + }, + "minecraft:blackstone": { + "states": [ + { + "default": true, + "id": 17048 + } + ] + }, + "minecraft:blackstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17453, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 17454, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 17455, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 17456, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 17457, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 17458, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17049, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17050, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17051, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17052, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17053, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17054, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17055, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17056, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17057, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17058, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17059, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 17060, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17061, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17062, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17063, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17064, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17065, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17066, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17067, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17068, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17069, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17070, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17071, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17072, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17073, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17074, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17075, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17076, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17077, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17078, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17079, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17080, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17081, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17082, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17083, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17084, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17085, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17086, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17087, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17088, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17089, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17090, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17091, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17092, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17093, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17094, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17095, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17096, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17097, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17098, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17099, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17100, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17101, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17102, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17103, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17104, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17105, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17106, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17107, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17108, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17109, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17110, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17111, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17112, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17113, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17114, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17115, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17116, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17117, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17118, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17119, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17120, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17121, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17122, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17123, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17124, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17125, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17126, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17127, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17128, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17129, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17130, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17131, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17132, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17133, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17134, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17135, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17136, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17137, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17138, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17139, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17140, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17141, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17142, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17143, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17144, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17145, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17146, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17147, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17148, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17149, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17150, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17151, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17152, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17153, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17154, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17155, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17156, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17157, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17158, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17159, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17160, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17161, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17162, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17163, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17164, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17165, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17166, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17167, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17168, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17169, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17170, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17171, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17172, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17173, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17174, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17175, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17176, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17177, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17178, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17179, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17180, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17181, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17182, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17183, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17184, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17185, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17186, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17187, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17188, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17189, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17190, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17191, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17192, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17193, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17194, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17195, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17196, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17197, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17198, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17199, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17200, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17201, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17202, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17203, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17204, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17205, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17206, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17207, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17208, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17209, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17210, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17211, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17212, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17213, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17214, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17215, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17216, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17217, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17218, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17219, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17220, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17221, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17222, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17223, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17224, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17225, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17226, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17227, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17228, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17229, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17230, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17231, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17232, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17233, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17234, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17235, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17236, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17237, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17238, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17239, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17240, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17241, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17242, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17243, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17244, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17245, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17246, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17247, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17248, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17249, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17250, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17251, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17252, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17253, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17254, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17255, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17256, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17257, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17258, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17259, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17260, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17261, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17262, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17263, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17264, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17265, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17266, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17267, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17268, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17269, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17270, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17271, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17272, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17273, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17274, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17275, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17276, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17277, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17278, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17279, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17280, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17281, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17282, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17283, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17284, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17285, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17286, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17287, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17288, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17289, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17290, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17291, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17292, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17293, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17294, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17295, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17296, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17297, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17298, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17299, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17300, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17301, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17302, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17303, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17304, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17305, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17306, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17307, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17308, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17309, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17310, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17311, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17312, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17313, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17314, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17315, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17316, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17317, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17318, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17319, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17320, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17321, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17322, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17323, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17324, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17325, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17326, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17327, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17328, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17329, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17330, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17331, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17332, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17333, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17334, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17335, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17336, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17337, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17338, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17339, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17340, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17341, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17342, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17343, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17344, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17345, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17346, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17347, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17348, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17349, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17350, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17351, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17352, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17353, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17354, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17355, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17356, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17357, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17358, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17359, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17360, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17361, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17362, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17363, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17364, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17365, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17366, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17367, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17368, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17369, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17370, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17371, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17372, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17373, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17374, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17375, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17376, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17377, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17378, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17379, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17380, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17381, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17382, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17383, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17384, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17385, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17386, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17387, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17388, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17389, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17390, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17391, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17392, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17393, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17394, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17395, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17396, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17397, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17398, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17399, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17400, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17401, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17402, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17403, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17404, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17405, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17406, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17407, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17408, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17409, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17410, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17411, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17412, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17413, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17414, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17415, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17416, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17417, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17418, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17419, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17420, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17421, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17422, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17423, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17424, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17425, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17426, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17427, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17428, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17429, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17430, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17431, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17432, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17433, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17434, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17435, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17436, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17437, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17438, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17439, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17440, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17441, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17442, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17443, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17444, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17445, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17446, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17447, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17448, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17449, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17450, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17451, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17452, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:blast_furnace": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16016, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 16017, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 16018, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 16019, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 16020, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 16021, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 16022, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 16023, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:blue_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8814, + "properties": { + "rotation": "0" + } + }, + { + "id": 8815, + "properties": { + "rotation": "1" + } + }, + { + "id": 8816, + "properties": { + "rotation": "2" + } + }, + { + "id": 8817, + "properties": { + "rotation": "3" + } + }, + { + "id": 8818, + "properties": { + "rotation": "4" + } + }, + { + "id": 8819, + "properties": { + "rotation": "5" + } + }, + { + "id": 8820, + "properties": { + "rotation": "6" + } + }, + { + "id": 8821, + "properties": { + "rotation": "7" + } + }, + { + "id": 8822, + "properties": { + "rotation": "8" + } + }, + { + "id": 8823, + "properties": { + "rotation": "9" + } + }, + { + "id": 8824, + "properties": { + "rotation": "10" + } + }, + { + "id": 8825, + "properties": { + "rotation": "11" + } + }, + { + "id": 8826, + "properties": { + "rotation": "12" + } + }, + { + "id": 8827, + "properties": { + "rotation": "13" + } + }, + { + "id": 8828, + "properties": { + "rotation": "14" + } + }, + { + "id": 8829, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:blue_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1455, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1456, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1457, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1458, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1459, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1460, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1461, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1462, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1463, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1464, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1465, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1466, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1467, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1468, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1469, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1470, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:blue_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18505, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18506, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18507, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18508, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18509, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18510, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18511, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18512, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18513, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18514, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18515, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18516, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18517, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18518, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18519, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18520, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blue_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18609, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18610, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:blue_carpet": { + "states": [ + { + "default": true, + "id": 8618 + } + ] + }, + "minecraft:blue_concrete": { + "states": [ + { + "default": true, + "id": 10330 + } + ] + }, + "minecraft:blue_concrete_powder": { + "states": [ + { + "default": true, + "id": 10346 + } + ] + }, + "minecraft:blue_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10299, + "properties": { + "facing": "north" + } + }, + { + "id": 10300, + "properties": { + "facing": "south" + } + }, + { + "id": 10301, + "properties": { + "facing": "west" + } + }, + { + "id": 10302, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:blue_ice": { + "states": [ + { + "default": true, + "id": 10529 + } + ] + }, + "minecraft:blue_orchid": { + "states": [ + { + "default": true, + "id": 1668 + } + ] + }, + "minecraft:blue_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10225, + "properties": { + "facing": "north" + } + }, + { + "id": 10226, + "properties": { + "facing": "east" + } + }, + { + "id": 10227, + "properties": { + "facing": "south" + } + }, + { + "id": 10228, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10229, + "properties": { + "facing": "up" + } + }, + { + "id": 10230, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:blue_stained_glass": { + "states": [ + { + "default": true, + "id": 4415 + } + ] + }, + "minecraft:blue_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7844, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7845, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7846, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7847, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7848, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7849, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7850, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7851, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7852, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7853, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7854, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7855, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7856, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7857, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7858, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7859, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7860, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7861, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7862, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7863, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7864, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7865, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7866, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7867, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7868, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7869, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7870, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7871, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7872, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7873, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7874, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7875, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:blue_terracotta": { + "states": [ + { + "default": true, + "id": 7487 + } + ] + }, + "minecraft:blue_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8938, + "properties": { + "facing": "north" + } + }, + { + "id": 8939, + "properties": { + "facing": "south" + } + }, + { + "id": 8940, + "properties": { + "facing": "west" + } + }, + { + "id": 8941, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:blue_wool": { + "states": [ + { + "default": true, + "id": 1649 + } + ] + }, + "minecraft:bone_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 10137, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 10138, + "properties": { + "axis": "y" + } + }, + { + "id": 10139, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:bookshelf": { + "states": [ + { + "default": true, + "id": 1686 + } + ] + }, + "minecraft:brain_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10413, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10414, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_block": { + "states": [ + { + "default": true, + "id": 10397 + } + ] + }, + "minecraft:brain_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10433, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10434, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10489, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 10490, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 10491, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 10492, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 10493, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 10494, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 10495, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 10496, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brewing_stand": { + "properties": { + "has_bottle_0": [ + "true", + "false" + ], + "has_bottle_1": [ + "true", + "false" + ], + "has_bottle_2": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5720, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 5721, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 5722, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "id": 5723, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + }, + { + "id": 5724, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 5725, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 5726, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "default": true, + "id": 5727, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + } + ] + }, + "minecraft:brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9119, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9120, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9121, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9122, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9123, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9124, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5359, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5360, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5361, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5362, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5363, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5364, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5365, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5366, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5367, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5368, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5369, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5370, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5371, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5372, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5373, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5374, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5375, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5376, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5377, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5378, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5379, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5380, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5381, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5382, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5383, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5384, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5385, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5386, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5387, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5388, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5389, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5390, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5391, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5392, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5393, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5394, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5395, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5396, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5397, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5398, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5399, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5400, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5401, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5402, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5403, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5404, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5405, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5406, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5407, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5408, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5409, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5410, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5411, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5412, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5413, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5414, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5415, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5416, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5417, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5418, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5419, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5420, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5421, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5422, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5423, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5424, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5425, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5426, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5427, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5428, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5429, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5430, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5431, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5432, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5433, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5434, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5435, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5436, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5437, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5438, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 11748, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11749, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11750, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 11751, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11752, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11753, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11754, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11755, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11756, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11757, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11758, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11759, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11760, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11761, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11762, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11763, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11764, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11765, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11766, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11767, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11768, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11769, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11770, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11771, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11772, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11773, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11774, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11775, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11776, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11777, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11778, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11779, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11780, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11781, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11782, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11783, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11784, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11785, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11786, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11787, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11788, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11789, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11790, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11791, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11792, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11793, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11794, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11795, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11796, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11797, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11798, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11799, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11800, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11801, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11802, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11803, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11804, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11805, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11806, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11807, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11808, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11809, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11810, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11811, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11812, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11813, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11814, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11815, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11816, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11817, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11818, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11819, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11820, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11821, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11822, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11823, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11824, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11825, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11826, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11827, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11828, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11829, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11830, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11831, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11832, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11833, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11834, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11835, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11836, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11837, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11838, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11839, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11840, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11841, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11842, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11843, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11844, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11845, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11846, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11847, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11848, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11849, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11850, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11851, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11852, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11853, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11854, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11855, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11856, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11857, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11858, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11859, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11860, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11861, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11862, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11863, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11864, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11865, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11866, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11867, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11868, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11869, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11870, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11871, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11872, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11873, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11874, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11875, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11876, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11877, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11878, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11879, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11880, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11881, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11882, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11883, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11884, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11885, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11886, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11887, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11888, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11889, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11890, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11891, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11892, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11893, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11894, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11895, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11896, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11897, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11898, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11899, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11900, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11901, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11902, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11903, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11904, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11905, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11906, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11907, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11908, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11909, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11910, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11911, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11912, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11913, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11914, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11915, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11916, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11917, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11918, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11919, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11920, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11921, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11922, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11923, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11924, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11925, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11926, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11927, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11928, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11929, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11930, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11931, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11932, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11933, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11934, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11935, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11936, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11937, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11938, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11939, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11940, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11941, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11942, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11943, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11944, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11945, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11946, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11947, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11948, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11949, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11950, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11951, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11952, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11953, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11954, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11955, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11956, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11957, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11958, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11959, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11960, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11961, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11962, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11963, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11964, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11965, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11966, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11967, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11968, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11969, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11970, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11971, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11972, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11973, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11974, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11975, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11976, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11977, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11978, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11979, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11980, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11981, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11982, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11983, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11984, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11985, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11986, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11987, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11988, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11989, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11990, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11991, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11992, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11993, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11994, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 11995, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 11996, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 11997, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 11998, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 11999, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12000, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12001, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12002, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12003, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12004, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12005, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12006, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12007, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12008, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12009, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12010, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12011, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12012, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12013, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12014, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12015, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12016, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12017, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12018, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12019, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12020, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12021, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12022, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12023, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12024, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12025, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12026, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12027, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12028, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12029, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12030, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12031, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12032, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12033, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12034, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12035, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12036, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12037, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12038, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12039, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12040, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12041, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12042, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12043, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12044, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12045, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12046, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12047, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12048, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12049, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12050, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12051, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12052, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12053, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12054, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12055, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12056, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12057, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12058, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12059, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12060, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12061, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12062, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12063, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12064, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12065, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12066, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12067, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12068, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12069, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12070, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12071, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:bricks": { + "states": [ + { + "default": true, + "id": 1683 + } + ] + }, + "minecraft:brown_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8830, + "properties": { + "rotation": "0" + } + }, + { + "id": 8831, + "properties": { + "rotation": "1" + } + }, + { + "id": 8832, + "properties": { + "rotation": "2" + } + }, + { + "id": 8833, + "properties": { + "rotation": "3" + } + }, + { + "id": 8834, + "properties": { + "rotation": "4" + } + }, + { + "id": 8835, + "properties": { + "rotation": "5" + } + }, + { + "id": 8836, + "properties": { + "rotation": "6" + } + }, + { + "id": 8837, + "properties": { + "rotation": "7" + } + }, + { + "id": 8838, + "properties": { + "rotation": "8" + } + }, + { + "id": 8839, + "properties": { + "rotation": "9" + } + }, + { + "id": 8840, + "properties": { + "rotation": "10" + } + }, + { + "id": 8841, + "properties": { + "rotation": "11" + } + }, + { + "id": 8842, + "properties": { + "rotation": "12" + } + }, + { + "id": 8843, + "properties": { + "rotation": "13" + } + }, + { + "id": 8844, + "properties": { + "rotation": "14" + } + }, + { + "id": 8845, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:brown_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1471, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1472, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1473, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1474, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1475, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1476, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1477, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1478, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1479, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1480, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1481, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1482, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1483, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1484, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1485, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1486, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:brown_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18521, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18522, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18523, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18524, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18525, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18526, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18527, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18528, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18529, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18530, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18531, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18532, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18533, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18534, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18535, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18536, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brown_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18611, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18612, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:brown_carpet": { + "states": [ + { + "default": true, + "id": 8619 + } + ] + }, + "minecraft:brown_concrete": { + "states": [ + { + "default": true, + "id": 10331 + } + ] + }, + "minecraft:brown_concrete_powder": { + "states": [ + { + "default": true, + "id": 10347 + } + ] + }, + "minecraft:brown_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10303, + "properties": { + "facing": "north" + } + }, + { + "id": 10304, + "properties": { + "facing": "south" + } + }, + { + "id": 10305, + "properties": { + "facing": "west" + } + }, + { + "id": 10306, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:brown_mushroom": { + "states": [ + { + "default": true, + "id": 1679 + } + ] + }, + "minecraft:brown_mushroom_block": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 4880, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4881, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4882, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4883, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4884, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4885, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4886, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4887, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 4888, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4889, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4890, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4891, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4892, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4893, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4894, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4895, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 4896, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4897, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4898, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4899, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4900, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4901, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4902, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4903, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 4904, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4905, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4906, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4907, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4908, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4909, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4910, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4911, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 4912, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4913, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4914, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4915, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4916, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4917, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4918, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4919, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 4920, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4921, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4922, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4923, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4924, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4925, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4926, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4927, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 4928, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4929, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4930, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4931, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4932, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4933, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4934, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4935, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 4936, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4937, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4938, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4939, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4940, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4941, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4942, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4943, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10231, + "properties": { + "facing": "north" + } + }, + { + "id": 10232, + "properties": { + "facing": "east" + } + }, + { + "id": 10233, + "properties": { + "facing": "south" + } + }, + { + "id": 10234, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10235, + "properties": { + "facing": "up" + } + }, + { + "id": 10236, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:brown_stained_glass": { + "states": [ + { + "default": true, + "id": 4416 + } + ] + }, + "minecraft:brown_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7876, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7877, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7878, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7879, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7880, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7881, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7882, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7883, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7884, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7885, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7886, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7887, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7888, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7889, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7890, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7891, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7892, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7893, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7894, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7895, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7896, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7897, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7898, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7899, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7900, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7901, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7902, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7903, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7904, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7905, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7906, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7907, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_terracotta": { + "states": [ + { + "default": true, + "id": 7488 + } + ] + }, + "minecraft:brown_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8942, + "properties": { + "facing": "north" + } + }, + { + "id": 8943, + "properties": { + "facing": "south" + } + }, + { + "id": 8944, + "properties": { + "facing": "west" + } + }, + { + "id": 8945, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:brown_wool": { + "states": [ + { + "default": true, + "id": 1650 + } + ] + }, + "minecraft:bubble_column": { + "properties": { + "drag": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10548, + "properties": { + "drag": "true" + } + }, + { + "id": 10549, + "properties": { + "drag": "false" + } + } + ] + }, + "minecraft:bubble_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10415, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10416, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_block": { + "states": [ + { + "default": true, + "id": 10398 + } + ] + }, + "minecraft:bubble_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10435, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10436, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10497, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 10498, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 10499, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 10500, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 10501, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 10502, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 10503, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 10504, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:budding_amethyst": { + "states": [ + { + "default": true, + "id": 18620 + } + ] + }, + "minecraft:cactus": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 4240, + "properties": { + "age": "0" + } + }, + { + "id": 4241, + "properties": { + "age": "1" + } + }, + { + "id": 4242, + "properties": { + "age": "2" + } + }, + { + "id": 4243, + "properties": { + "age": "3" + } + }, + { + "id": 4244, + "properties": { + "age": "4" + } + }, + { + "id": 4245, + "properties": { + "age": "5" + } + }, + { + "id": 4246, + "properties": { + "age": "6" + } + }, + { + "id": 4247, + "properties": { + "age": "7" + } + }, + { + "id": 4248, + "properties": { + "age": "8" + } + }, + { + "id": 4249, + "properties": { + "age": "9" + } + }, + { + "id": 4250, + "properties": { + "age": "10" + } + }, + { + "id": 4251, + "properties": { + "age": "11" + } + }, + { + "id": 4252, + "properties": { + "age": "12" + } + }, + { + "id": 4253, + "properties": { + "age": "13" + } + }, + { + "id": 4254, + "properties": { + "age": "14" + } + }, + { + "id": 4255, + "properties": { + "age": "15" + } + } + ] + }, + "minecraft:cake": { + "properties": { + "bites": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ] + }, + "states": [ + { + "default": true, + "id": 4333, + "properties": { + "bites": "0" + } + }, + { + "id": 4334, + "properties": { + "bites": "1" + } + }, + { + "id": 4335, + "properties": { + "bites": "2" + } + }, + { + "id": 4336, + "properties": { + "bites": "3" + } + }, + { + "id": 4337, + "properties": { + "bites": "4" + } + }, + { + "id": 4338, + "properties": { + "bites": "5" + } + }, + { + "id": 4339, + "properties": { + "bites": "6" + } + } + ] + }, + "minecraft:calcite": { + "states": [ + { + "default": true, + "id": 18670 + } + ] + }, + "minecraft:campfire": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ], + "signal_fire": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16099, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 16100, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 16101, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16102, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 16103, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 16104, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 16105, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 16106, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 16107, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 16108, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 16109, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 16110, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 16111, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 16112, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 16113, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 16114, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 16115, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 16116, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 16117, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 16118, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 16119, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 16120, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 16121, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 16122, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 16123, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 16124, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 16125, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 16126, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 16127, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 16128, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 16129, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 16130, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18313, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18314, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18315, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18316, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18317, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18318, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18319, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18320, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18321, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18322, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18323, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18324, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18325, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18326, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18327, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18328, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18585, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18586, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:carrots": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 6923, + "properties": { + "age": "0" + } + }, + { + "id": 6924, + "properties": { + "age": "1" + } + }, + { + "id": 6925, + "properties": { + "age": "2" + } + }, + { + "id": 6926, + "properties": { + "age": "3" + } + }, + { + "id": 6927, + "properties": { + "age": "4" + } + }, + { + "id": 6928, + "properties": { + "age": "5" + } + }, + { + "id": 6929, + "properties": { + "age": "6" + } + }, + { + "id": 6930, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:cartography_table": { + "states": [ + { + "default": true, + "id": 16024 + } + ] + }, + "minecraft:carved_pumpkin": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 4325, + "properties": { + "facing": "north" + } + }, + { + "id": 4326, + "properties": { + "facing": "south" + } + }, + { + "id": 4327, + "properties": { + "facing": "west" + } + }, + { + "id": 4328, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cauldron": { + "states": [ + { + "default": true, + "id": 5728 + } + ] + }, + "minecraft:cave_air": { + "states": [ + { + "default": true, + "id": 10547 + } + ] + }, + "minecraft:cave_vines": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ], + "berries": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19659, + "properties": { + "age": "0", + "berries": "true" + } + }, + { + "default": true, + "id": 19660, + "properties": { + "age": "0", + "berries": "false" + } + }, + { + "id": 19661, + "properties": { + "age": "1", + "berries": "true" + } + }, + { + "id": 19662, + "properties": { + "age": "1", + "berries": "false" + } + }, + { + "id": 19663, + "properties": { + "age": "2", + "berries": "true" + } + }, + { + "id": 19664, + "properties": { + "age": "2", + "berries": "false" + } + }, + { + "id": 19665, + "properties": { + "age": "3", + "berries": "true" + } + }, + { + "id": 19666, + "properties": { + "age": "3", + "berries": "false" + } + }, + { + "id": 19667, + "properties": { + "age": "4", + "berries": "true" + } + }, + { + "id": 19668, + "properties": { + "age": "4", + "berries": "false" + } + }, + { + "id": 19669, + "properties": { + "age": "5", + "berries": "true" + } + }, + { + "id": 19670, + "properties": { + "age": "5", + "berries": "false" + } + }, + { + "id": 19671, + "properties": { + "age": "6", + "berries": "true" + } + }, + { + "id": 19672, + "properties": { + "age": "6", + "berries": "false" + } + }, + { + "id": 19673, + "properties": { + "age": "7", + "berries": "true" + } + }, + { + "id": 19674, + "properties": { + "age": "7", + "berries": "false" + } + }, + { + "id": 19675, + "properties": { + "age": "8", + "berries": "true" + } + }, + { + "id": 19676, + "properties": { + "age": "8", + "berries": "false" + } + }, + { + "id": 19677, + "properties": { + "age": "9", + "berries": "true" + } + }, + { + "id": 19678, + "properties": { + "age": "9", + "berries": "false" + } + }, + { + "id": 19679, + "properties": { + "age": "10", + "berries": "true" + } + }, + { + "id": 19680, + "properties": { + "age": "10", + "berries": "false" + } + }, + { + "id": 19681, + "properties": { + "age": "11", + "berries": "true" + } + }, + { + "id": 19682, + "properties": { + "age": "11", + "berries": "false" + } + }, + { + "id": 19683, + "properties": { + "age": "12", + "berries": "true" + } + }, + { + "id": 19684, + "properties": { + "age": "12", + "berries": "false" + } + }, + { + "id": 19685, + "properties": { + "age": "13", + "berries": "true" + } + }, + { + "id": 19686, + "properties": { + "age": "13", + "berries": "false" + } + }, + { + "id": 19687, + "properties": { + "age": "14", + "berries": "true" + } + }, + { + "id": 19688, + "properties": { + "age": "14", + "berries": "false" + } + }, + { + "id": 19689, + "properties": { + "age": "15", + "berries": "true" + } + }, + { + "id": 19690, + "properties": { + "age": "15", + "berries": "false" + } + }, + { + "id": 19691, + "properties": { + "age": "16", + "berries": "true" + } + }, + { + "id": 19692, + "properties": { + "age": "16", + "berries": "false" + } + }, + { + "id": 19693, + "properties": { + "age": "17", + "berries": "true" + } + }, + { + "id": 19694, + "properties": { + "age": "17", + "berries": "false" + } + }, + { + "id": 19695, + "properties": { + "age": "18", + "berries": "true" + } + }, + { + "id": 19696, + "properties": { + "age": "18", + "berries": "false" + } + }, + { + "id": 19697, + "properties": { + "age": "19", + "berries": "true" + } + }, + { + "id": 19698, + "properties": { + "age": "19", + "berries": "false" + } + }, + { + "id": 19699, + "properties": { + "age": "20", + "berries": "true" + } + }, + { + "id": 19700, + "properties": { + "age": "20", + "berries": "false" + } + }, + { + "id": 19701, + "properties": { + "age": "21", + "berries": "true" + } + }, + { + "id": 19702, + "properties": { + "age": "21", + "berries": "false" + } + }, + { + "id": 19703, + "properties": { + "age": "22", + "berries": "true" + } + }, + { + "id": 19704, + "properties": { + "age": "22", + "berries": "false" + } + }, + { + "id": 19705, + "properties": { + "age": "23", + "berries": "true" + } + }, + { + "id": 19706, + "properties": { + "age": "23", + "berries": "false" + } + }, + { + "id": 19707, + "properties": { + "age": "24", + "berries": "true" + } + }, + { + "id": 19708, + "properties": { + "age": "24", + "berries": "false" + } + }, + { + "id": 19709, + "properties": { + "age": "25", + "berries": "true" + } + }, + { + "id": 19710, + "properties": { + "age": "25", + "berries": "false" + } + } + ] + }, + "minecraft:cave_vines_plant": { + "properties": { + "berries": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19711, + "properties": { + "berries": "true" + } + }, + { + "default": true, + "id": 19712, + "properties": { + "berries": "false" + } + } + ] + }, + "minecraft:chain": { + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5104, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 5105, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 5106, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5107, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 5108, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 5109, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:chain_command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10118, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 10119, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 10120, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 10121, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 10122, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 10123, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 10124, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 10125, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 10126, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 10127, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 10128, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 10129, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:chest": { + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2288, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2289, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 2290, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 2291, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 2292, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 2293, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 2294, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 2295, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 2296, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 2297, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 2298, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 2299, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 2300, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 2301, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 2302, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 2303, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 2304, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 2305, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 2306, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 2307, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 2308, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 2309, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 2310, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 2311, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:chipped_anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7231, + "properties": { + "facing": "north" + } + }, + { + "id": 7232, + "properties": { + "facing": "south" + } + }, + { + "id": 7233, + "properties": { + "facing": "west" + } + }, + { + "id": 7234, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:chiseled_deepslate": { + "states": [ + { + "default": true, + "id": 21425 + } + ] + }, + "minecraft:chiseled_nether_bricks": { + "states": [ + { + "default": true, + "id": 18310 + } + ] + }, + "minecraft:chiseled_polished_blackstone": { + "states": [ + { + "default": true, + "id": 17462 + } + ] + }, + "minecraft:chiseled_quartz_block": { + "states": [ + { + "default": true, + "id": 7356 + } + ] + }, + "minecraft:chiseled_red_sandstone": { + "states": [ + { + "default": true, + "id": 8959 + } + ] + }, + "minecraft:chiseled_sandstone": { + "states": [ + { + "default": true, + "id": 477 + } + ] + }, + "minecraft:chiseled_stone_bricks": { + "states": [ + { + "default": true, + "id": 4871 + } + ] + }, + "minecraft:chorus_flower": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 10009, + "properties": { + "age": "0" + } + }, + { + "id": 10010, + "properties": { + "age": "1" + } + }, + { + "id": 10011, + "properties": { + "age": "2" + } + }, + { + "id": 10012, + "properties": { + "age": "3" + } + }, + { + "id": 10013, + "properties": { + "age": "4" + } + }, + { + "id": 10014, + "properties": { + "age": "5" + } + } + ] + }, + "minecraft:chorus_plant": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9945, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 9946, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 9947, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 9948, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 9949, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 9950, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 9951, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 9952, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 9953, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 9954, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 9955, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 9956, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 9957, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 9958, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 9959, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 9960, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 9961, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 9962, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 9963, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 9964, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 9965, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 9966, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 9967, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 9968, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 9969, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 9970, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 9971, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 9972, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 9973, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 9974, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 9975, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 9976, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 9977, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 9978, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 9979, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 9980, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 9981, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 9982, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 9983, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 9984, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 9985, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 9986, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 9987, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 9988, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 9989, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 9990, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 9991, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 9992, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 9993, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 9994, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 9995, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 9996, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 9997, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 9998, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 9999, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 10000, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 10001, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 10002, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 10003, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 10004, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 10005, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 10006, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 10007, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 10008, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:clay": { + "states": [ + { + "default": true, + "id": 4256 + } + ] + }, + "minecraft:coal_block": { + "states": [ + { + "default": true, + "id": 8624 + } + ] + }, + "minecraft:coal_ore": { + "states": [ + { + "default": true, + "id": 114 + } + ] + }, + "minecraft:coarse_dirt": { + "states": [ + { + "default": true, + "id": 11 + } + ] + }, + "minecraft:cobbled_deepslate": { + "states": [ + { + "default": true, + "id": 19781 + } + ] + }, + "minecraft:cobbled_deepslate_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19862, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 19863, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 19864, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19865, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 19866, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 19867, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19782, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19783, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19784, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19785, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19786, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19787, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19788, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19789, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19790, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19791, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19792, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19793, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19794, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19795, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19796, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19797, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19798, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19799, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19800, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19801, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19802, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19803, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19804, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19805, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19806, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19807, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19808, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19809, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19810, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19811, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19812, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19813, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19814, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19815, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19816, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19817, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19818, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19819, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19820, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19821, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19822, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19823, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19824, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19825, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19826, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19827, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19828, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19829, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19830, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19831, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19832, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19833, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19834, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19835, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19836, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19837, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19838, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19839, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19840, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19841, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19842, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19843, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19844, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19845, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19846, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19847, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19848, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19849, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19850, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19851, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19852, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19853, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19854, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19855, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19856, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19857, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19858, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19859, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19860, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19861, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 19868, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19869, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19870, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 19871, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19872, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19873, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19874, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19875, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19876, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19877, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19878, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19879, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19880, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19881, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19882, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19883, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19884, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19885, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19886, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19887, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19888, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19889, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19890, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19891, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19892, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19893, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19894, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19895, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19896, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19897, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19898, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19899, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19900, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19901, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19902, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19903, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19904, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19905, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19906, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19907, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19908, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19909, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19910, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19911, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19912, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19913, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19914, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19915, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19916, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19917, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19918, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19919, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19920, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19921, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19922, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19923, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19924, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19925, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19926, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19927, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19928, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19929, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19930, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19931, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19932, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19933, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19934, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19935, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19936, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19937, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19938, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19939, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19940, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19941, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19942, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19943, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19944, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19945, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19946, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19947, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19948, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19949, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19950, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19951, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19952, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19953, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19954, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19955, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19956, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19957, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19958, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19959, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19960, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19961, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19962, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19963, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19964, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19965, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19966, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19967, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19968, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19969, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19970, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19971, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19972, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19973, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19974, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19975, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19976, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19977, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19978, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19979, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19980, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19981, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19982, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19983, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19984, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19985, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19986, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19987, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19988, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19989, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19990, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19991, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19992, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19993, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19994, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19995, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19996, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19997, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19998, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19999, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20000, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20001, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20002, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20003, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20004, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20005, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20006, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20007, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20008, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20009, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20010, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20011, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20012, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20013, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20014, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20015, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20016, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20017, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20018, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20019, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20020, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20021, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20022, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20023, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20024, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20025, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20026, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20027, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20028, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20029, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20030, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20031, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20032, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20033, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20034, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20035, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20036, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20037, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20038, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20039, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20040, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20041, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20042, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20043, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20044, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20045, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20046, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20047, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20048, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20049, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20050, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20051, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20052, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20053, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20054, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20055, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20056, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20057, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20058, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20059, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20060, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20061, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20062, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20063, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20064, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20065, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20066, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20067, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20068, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20069, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20070, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20071, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20072, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20073, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20074, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20075, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20076, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20077, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20078, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20079, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20080, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20081, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20082, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20083, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20084, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20085, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20086, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20087, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20088, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20089, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20090, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20091, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20092, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20093, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20094, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20095, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20096, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20097, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20098, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20099, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20100, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20101, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20102, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20103, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20104, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20105, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20106, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20107, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20108, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20109, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20110, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20111, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20112, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20113, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20114, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20115, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20116, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20117, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20118, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20119, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20120, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20121, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20122, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20123, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20124, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20125, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20126, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20127, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20128, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20129, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20130, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20131, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20132, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20133, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20134, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20135, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20136, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20137, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20138, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20139, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20140, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20141, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20142, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20143, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20144, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20145, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20146, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20147, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20148, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20149, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20150, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20151, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20152, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20153, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20154, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20155, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20156, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20157, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20158, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20159, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20160, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20161, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20162, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20163, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20164, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20165, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20166, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20167, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20168, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20169, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20170, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20171, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20172, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20173, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20174, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20175, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20176, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20177, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20178, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20179, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20180, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20181, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20182, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20183, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20184, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20185, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20186, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20187, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20188, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20189, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20190, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20191, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobblestone": { + "states": [ + { + "default": true, + "id": 14 + } + ] + }, + "minecraft:cobblestone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9113, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9114, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9115, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9116, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9117, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9118, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3952, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3953, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3954, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3955, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3956, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3957, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3958, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3959, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3960, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3961, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3962, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3963, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3964, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3965, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3966, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3967, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3968, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3969, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3970, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3971, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3972, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3973, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3974, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3975, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3976, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3977, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3978, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3979, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3980, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3981, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3982, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3983, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3984, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3985, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3986, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3987, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3988, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3989, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3990, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3991, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3992, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3993, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3994, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3995, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3996, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3997, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3998, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3999, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4000, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4001, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4002, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4003, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4004, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4005, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4006, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4007, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4008, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4009, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4010, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4011, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4012, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4013, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4014, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4015, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4016, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4017, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4018, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4019, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4020, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4021, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4022, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4023, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4024, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4025, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4026, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4027, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4028, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4029, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4030, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4031, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 6249, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6250, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6251, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 6252, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6253, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6254, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6255, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6256, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6257, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6258, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6259, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6260, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6261, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6262, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6263, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6264, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6265, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6266, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6267, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6268, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6269, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6270, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6271, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6272, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6273, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6274, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6275, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6276, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6277, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6278, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6279, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6280, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6281, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6282, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6283, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6284, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6285, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6286, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6287, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6288, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6289, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6290, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6291, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6292, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6293, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6294, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6295, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6296, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6297, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6298, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6299, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6300, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6301, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6302, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6303, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6304, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6305, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6306, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6307, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6308, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6309, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6310, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6311, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6312, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6313, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6314, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6315, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6316, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6317, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6318, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6319, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6320, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6321, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6322, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6323, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6324, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6325, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6326, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6327, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6328, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6329, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6330, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6331, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6332, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6333, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6334, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6335, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6336, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6337, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6338, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6339, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6340, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6341, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6342, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6343, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6344, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6345, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6346, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6347, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6348, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6349, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6350, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6351, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6352, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6353, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6354, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6355, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6356, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6357, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6358, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6359, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6360, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6361, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6362, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6363, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6364, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6365, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6366, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6367, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6368, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6369, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6370, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6371, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6372, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6373, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6374, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6375, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6376, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6377, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6378, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6379, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6380, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6381, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6382, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6383, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6384, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6385, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6386, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6387, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6388, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6389, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6390, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6391, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6392, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6393, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6394, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6395, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6396, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6397, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6398, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6399, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6400, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6401, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6402, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6403, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6404, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6405, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6406, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6407, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6408, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6409, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6410, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6411, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6412, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6413, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6414, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6415, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6416, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6417, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6418, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6419, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6420, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6421, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6422, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6423, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6424, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6425, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6426, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6427, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6428, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6429, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6430, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6431, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6432, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6433, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6434, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6435, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6436, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6437, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6438, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6439, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6440, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6441, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6442, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6443, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6444, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6445, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6446, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6447, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6448, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6449, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6450, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6451, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6452, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6453, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6454, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6455, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6456, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6457, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6458, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6459, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6460, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6461, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6462, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6463, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6464, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6465, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6466, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6467, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6468, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6469, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6470, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6471, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6472, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6473, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6474, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6475, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6476, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6477, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6478, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6479, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6480, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6481, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6482, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6483, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6484, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6485, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6486, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6487, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6488, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6489, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6490, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6491, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6492, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6493, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6494, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6495, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6496, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6497, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6498, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6499, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6500, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6501, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6502, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6503, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6504, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6505, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6506, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6507, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6508, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6509, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6510, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6511, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6512, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6513, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6514, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6515, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6516, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6517, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6518, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6519, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6520, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6521, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6522, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6523, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6524, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6525, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6526, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6527, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6528, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6529, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6530, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6531, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6532, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6533, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6534, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6535, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6536, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6537, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6538, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6539, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6540, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6541, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6542, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6543, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6544, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6545, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6546, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6547, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6548, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6549, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6550, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6551, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6552, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6553, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6554, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6555, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6556, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6557, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6558, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6559, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6560, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6561, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6562, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6563, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6564, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6565, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6566, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6567, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6568, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6569, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6570, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6571, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6572, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobweb": { + "states": [ + { + "default": true, + "id": 1595 + } + ] + }, + "minecraft:cocoa": { + "properties": { + "age": [ + "0", + "1", + "2" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 5749, + "properties": { + "age": "0", + "facing": "north" + } + }, + { + "id": 5750, + "properties": { + "age": "0", + "facing": "south" + } + }, + { + "id": 5751, + "properties": { + "age": "0", + "facing": "west" + } + }, + { + "id": 5752, + "properties": { + "age": "0", + "facing": "east" + } + }, + { + "id": 5753, + "properties": { + "age": "1", + "facing": "north" + } + }, + { + "id": 5754, + "properties": { + "age": "1", + "facing": "south" + } + }, + { + "id": 5755, + "properties": { + "age": "1", + "facing": "west" + } + }, + { + "id": 5756, + "properties": { + "age": "1", + "facing": "east" + } + }, + { + "id": 5757, + "properties": { + "age": "2", + "facing": "north" + } + }, + { + "id": 5758, + "properties": { + "age": "2", + "facing": "south" + } + }, + { + "id": 5759, + "properties": { + "age": "2", + "facing": "west" + } + }, + { + "id": 5760, + "properties": { + "age": "2", + "facing": "east" + } + } + ] + }, + "minecraft:command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 6236, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 6237, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 6238, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 6239, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 6240, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 6241, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 6242, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 6243, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 6244, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 6245, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 6246, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 6247, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:comparator": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "mode": [ + "compare", + "subtract" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7295, + "properties": { + "facing": "north", + "mode": "compare", + "powered": "true" + } + }, + { + "default": true, + "id": 7296, + "properties": { + "facing": "north", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 7297, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 7298, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 7299, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 7300, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 7301, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 7302, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 7303, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 7304, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 7305, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 7306, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 7307, + "properties": { + "facing": "east", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 7308, + "properties": { + "facing": "east", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 7309, + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 7310, + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "false" + } + } + ] + }, + "minecraft:composter": { + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ + { + "default": true, + "id": 16960, "properties": { "level": "0" - }, - "id": 34, - "default": true + } }, { + "id": 16961, "properties": { "level": "1" - }, - "id": 35 + } }, { + "id": 16962, "properties": { "level": "2" - }, - "id": 36 + } }, { + "id": 16963, "properties": { "level": "3" - }, - "id": 37 + } }, { + "id": 16964, "properties": { "level": "4" - }, - "id": 38 + } }, { + "id": 16965, "properties": { "level": "5" - }, - "id": 39 + } }, { + "id": 16966, "properties": { "level": "6" - }, - "id": 40 + } }, { + "id": 16967, "properties": { "level": "7" - }, - "id": 41 + } }, { + "id": 16968, "properties": { "level": "8" - }, - "id": 42 + } + } + ] + }, + "minecraft:conduit": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10530, + "properties": { + "waterlogged": "true" + } }, { + "id": 10531, "properties": { - "level": "9" - }, - "id": 43 + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_block": { + "states": [ + { + "default": true, + "id": 18911 + } + ] + }, + "minecraft:copper_ore": { + "states": [ + { + "default": true, + "id": 18912 + } + ] + }, + "minecraft:cornflower": { + "states": [ + { + "default": true, + "id": 1676 + } + ] + }, + "minecraft:cracked_deepslate_bricks": { + "states": [ + { + "default": true, + "id": 21426 + } + ] + }, + "minecraft:cracked_deepslate_tiles": { + "states": [ + { + "default": true, + "id": 21427 + } + ] + }, + "minecraft:cracked_nether_bricks": { + "states": [ + { + "default": true, + "id": 18311 + } + ] + }, + "minecraft:cracked_polished_blackstone_bricks": { + "states": [ + { + "default": true, + "id": 17461 + } + ] + }, + "minecraft:cracked_stone_bricks": { + "states": [ + { + "default": true, + "id": 4870 + } + ] + }, + "minecraft:crafting_table": { + "states": [ + { + "default": true, + "id": 3611 + } + ] + }, + "minecraft:creeper_head": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 7187, + "properties": { + "rotation": "0" + } }, { + "id": 7188, "properties": { - "level": "10" - }, - "id": 44 + "rotation": "1" + } }, { + "id": 7189, "properties": { - "level": "11" - }, - "id": 45 + "rotation": "2" + } }, { + "id": 7190, "properties": { - "level": "12" - }, - "id": 46 + "rotation": "3" + } }, { + "id": 7191, "properties": { - "level": "13" - }, - "id": 47 + "rotation": "4" + } }, { + "id": 7192, "properties": { - "level": "14" - }, - "id": 48 + "rotation": "5" + } }, { + "id": 7193, "properties": { - "level": "15" - }, - "id": 49 + "rotation": "6" + } + }, + { + "id": 7194, + "properties": { + "rotation": "7" + } + }, + { + "id": 7195, + "properties": { + "rotation": "8" + } + }, + { + "id": 7196, + "properties": { + "rotation": "9" + } + }, + { + "id": 7197, + "properties": { + "rotation": "10" + } + }, + { + "id": 7198, + "properties": { + "rotation": "11" + } + }, + { + "id": 7199, + "properties": { + "rotation": "12" + } + }, + { + "id": 7200, + "properties": { + "rotation": "13" + } + }, + { + "id": 7201, + "properties": { + "rotation": "14" + } + }, + { + "id": 7202, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:creeper_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7203, + "properties": { + "facing": "north" + } + }, + { + "id": 7204, + "properties": { + "facing": "south" + } + }, + { + "id": 7205, + "properties": { + "facing": "west" + } + }, + { + "id": 7206, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:crimson_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16688, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 16689, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 16690, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 16691, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 16692, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 16693, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 16694, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 16695, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 16696, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 16697, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 16698, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 16699, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 16700, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 16701, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 16702, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 16703, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 16704, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 16705, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 16706, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 16707, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 16708, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 16709, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 16710, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 16711, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16736, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 16737, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 16738, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 16739, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 16740, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 16741, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 16742, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 16743, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 16744, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 16745, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 16746, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 16747, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 16748, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 16749, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 16750, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 16751, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 16752, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 16753, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 16754, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 16755, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 16756, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 16757, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 16758, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 16759, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 16760, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 16761, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 16762, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 16763, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 16764, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 16765, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 16766, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 16767, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 16768, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 16769, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 16770, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 16771, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 16772, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 16773, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 16774, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 16775, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 16776, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 16777, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 16778, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 16779, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 16780, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 16781, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 16782, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 16783, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 16784, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 16785, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 16786, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 16787, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 16788, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 16789, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 16790, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 16791, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 16792, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 16793, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 16794, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 16795, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 16796, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 16797, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 16798, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 16799, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16272, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 16273, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 16274, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 16275, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 16276, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 16277, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 16278, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 16279, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 16280, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 16281, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 16282, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 16283, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 16284, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 16285, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 16286, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 16287, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 16288, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 16289, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 16290, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 16291, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 16292, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 16293, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 16294, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 16295, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 16296, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 16297, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 16298, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 16299, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 16300, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 16301, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 16302, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 16303, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:crimson_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16464, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 16465, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 16466, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 16467, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 16468, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 16469, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 16470, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 16471, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 16472, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 16473, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 16474, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 16475, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 16476, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 16477, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 16478, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 16479, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 16480, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 16481, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 16482, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 16483, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 16484, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 16485, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 16486, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 16487, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 16488, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 16489, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 16490, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 16491, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 16492, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 16493, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 16494, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 16495, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fungus": { + "states": [ + { + "default": true, + "id": 16197 + } + ] + }, + "minecraft:crimson_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 16190, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 16191, + "properties": { + "axis": "y" + } + }, + { + "id": 16192, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:crimson_nylium": { + "states": [ + { + "default": true, + "id": 16196 + } + ] + }, + "minecraft:crimson_planks": { + "states": [ + { + "default": true, + "id": 16254 + } + ] + }, + "minecraft:crimson_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16268, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 16269, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:crimson_roots": { + "states": [ + { + "default": true, + "id": 16253 + } + ] + }, + "minecraft:crimson_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16864, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16865, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 16866, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 16867, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 16868, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 16869, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 16870, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 16871, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 16872, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 16873, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 16874, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 16875, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 16876, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 16877, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 16878, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 16879, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 16880, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 16881, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 16882, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 16883, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 16884, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 16885, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 16886, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 16887, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 16888, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 16889, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 16890, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 16891, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 16892, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 16893, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 16894, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 16895, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16256, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16257, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16258, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16259, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16260, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16261, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16528, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16529, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16530, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16531, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16532, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16533, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16534, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16535, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16536, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16537, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16538, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16539, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16540, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16541, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16542, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16543, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16544, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16545, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16546, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16547, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16548, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16549, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16550, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16551, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16552, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16553, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16554, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16555, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16556, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16557, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16558, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16559, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16560, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16561, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16562, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16563, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16564, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16565, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16566, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16567, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16568, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16569, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16570, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16571, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16572, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16573, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16574, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16575, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16576, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16577, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16578, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16579, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16580, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16581, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16582, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16583, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16584, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16585, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16586, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16587, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16588, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16589, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16590, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16591, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16592, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16593, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16594, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16595, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16596, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16597, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16598, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16599, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16600, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16601, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16602, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16603, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16604, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16605, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16606, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16607, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_stem": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 16184, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 16185, + "properties": { + "axis": "y" + } + }, + { + "id": 16186, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:crimson_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16336, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16337, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16338, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16339, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16340, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16341, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16342, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16343, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16344, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16345, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16346, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16347, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16348, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16349, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16350, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16351, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16352, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16353, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16354, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16355, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16356, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16357, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16358, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16359, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16360, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16361, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16362, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16363, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16364, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16365, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16366, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16367, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16368, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16369, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16370, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16371, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16372, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16373, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16374, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16375, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16376, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16377, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16378, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16379, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16380, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16381, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16382, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16383, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16384, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16385, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16386, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16387, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16388, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16389, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16390, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16391, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16392, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16393, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16394, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16395, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16396, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16397, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16398, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16399, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16928, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16929, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 16930, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 16931, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 16932, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 16933, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 16934, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 16935, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crying_obsidian": { + "states": [ + { + "default": true, + "id": 17037 + } + ] + }, + "minecraft:cut_copper": { + "states": [ + { + "default": true, + "id": 18917 + } + ] + }, + "minecraft:cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19256, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 19257, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 19258, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19259, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 19260, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 19261, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19158, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19159, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19160, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19161, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19162, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19163, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19164, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19165, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19166, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19167, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19168, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19169, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19170, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19171, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19172, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19173, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19174, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19175, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19176, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19177, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19178, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19179, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19180, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19181, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19182, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19183, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19184, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19185, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19186, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19187, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19188, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19189, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19190, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19191, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19192, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19193, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19194, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19195, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19196, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19197, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19198, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19199, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19200, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19201, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19202, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19203, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19204, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19205, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19206, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19207, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19208, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19209, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19210, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19211, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19212, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19213, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19214, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19215, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19216, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19217, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19218, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19219, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19220, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19221, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19222, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19223, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19224, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19225, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19226, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19227, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19228, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19229, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19230, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19231, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19232, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19233, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19234, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19235, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19236, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19237, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_red_sandstone": { + "states": [ + { + "default": true, + "id": 8960 + } + ] + }, + "minecraft:cut_red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9155, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9156, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9157, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9158, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9159, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9160, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_sandstone": { + "states": [ + { + "default": true, + "id": 478 + } + ] + }, + "minecraft:cut_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9101, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9102, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9103, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9104, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9105, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9106, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cyan_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8782, + "properties": { + "rotation": "0" + } + }, + { + "id": 8783, + "properties": { + "rotation": "1" + } + }, + { + "id": 8784, + "properties": { + "rotation": "2" + } + }, + { + "id": 8785, + "properties": { + "rotation": "3" + } + }, + { + "id": 8786, + "properties": { + "rotation": "4" + } + }, + { + "id": 8787, + "properties": { + "rotation": "5" + } + }, + { + "id": 8788, + "properties": { + "rotation": "6" + } + }, + { + "id": 8789, + "properties": { + "rotation": "7" + } + }, + { + "id": 8790, + "properties": { + "rotation": "8" + } + }, + { + "id": 8791, + "properties": { + "rotation": "9" + } + }, + { + "id": 8792, + "properties": { + "rotation": "10" + } + }, + { + "id": 8793, + "properties": { + "rotation": "11" + } + }, + { + "id": 8794, + "properties": { + "rotation": "12" + } + }, + { + "id": 8795, + "properties": { + "rotation": "13" + } + }, + { + "id": 8796, + "properties": { + "rotation": "14" + } + }, + { + "id": 8797, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:cyan_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1423, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1424, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1425, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1426, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1427, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1428, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1429, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1430, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1431, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1432, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1433, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1434, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1435, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1436, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1437, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1438, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:cyan_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18473, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18474, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18475, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18476, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18477, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18478, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18479, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18480, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18481, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18482, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18483, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18484, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18485, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18486, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18487, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18488, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cyan_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18605, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18606, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:cyan_carpet": { + "states": [ + { + "default": true, + "id": 8616 + } + ] + }, + "minecraft:cyan_concrete": { + "states": [ + { + "default": true, + "id": 10328 + } + ] + }, + "minecraft:cyan_concrete_powder": { + "states": [ + { + "default": true, + "id": 10344 + } + ] + }, + "minecraft:cyan_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10291, + "properties": { + "facing": "north" + } + }, + { + "id": 10292, + "properties": { + "facing": "south" + } + }, + { + "id": 10293, + "properties": { + "facing": "west" + } + }, + { + "id": 10294, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cyan_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10213, + "properties": { + "facing": "north" + } + }, + { + "id": 10214, + "properties": { + "facing": "east" + } + }, + { + "id": 10215, + "properties": { + "facing": "south" + } + }, + { + "id": 10216, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10217, + "properties": { + "facing": "up" + } + }, + { + "id": 10218, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:cyan_stained_glass": { + "states": [ + { + "default": true, + "id": 4413 + } + ] + }, + "minecraft:cyan_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7780, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7781, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7782, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7783, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7784, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7785, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7786, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7787, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7788, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7789, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7790, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7791, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7792, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7793, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7794, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7795, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7796, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7797, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7798, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7799, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7800, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7801, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7802, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7803, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7804, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7805, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7806, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7807, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7808, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7809, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7810, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7811, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:cyan_terracotta": { + "states": [ + { + "default": true, + "id": 7485 + } + ] + }, + "minecraft:cyan_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8930, + "properties": { + "facing": "north" + } + }, + { + "id": 8931, + "properties": { + "facing": "south" + } + }, + { + "id": 8932, + "properties": { + "facing": "west" + } + }, + { + "id": 8933, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cyan_wool": { + "states": [ + { + "default": true, + "id": 1647 + } + ] + }, + "minecraft:damaged_anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7235, + "properties": { + "facing": "north" + } + }, + { + "id": 7236, + "properties": { + "facing": "south" + } + }, + { + "id": 7237, + "properties": { + "facing": "west" + } + }, + { + "id": 7238, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:dandelion": { + "states": [ + { + "default": true, + "id": 1666 + } + ] + }, + "minecraft:dark_oak_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7059, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 7060, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7061, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7062, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7063, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7064, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7065, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7066, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 7067, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 7068, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7069, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7070, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7071, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7072, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7073, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7074, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 7075, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 7076, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7077, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7078, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7079, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7080, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7081, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7082, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9811, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9812, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9813, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9814, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9815, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9816, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9817, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9818, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9819, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9820, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9821, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 9822, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9823, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9824, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9825, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9826, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9827, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9828, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9829, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9830, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9831, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9832, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9833, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9834, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9835, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9836, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9837, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9838, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9839, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9840, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9841, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9842, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9843, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9844, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9845, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9846, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9847, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9848, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9849, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9850, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9851, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9852, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9853, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9854, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9855, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9856, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9857, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9858, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9859, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9860, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9861, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9862, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9863, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9864, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9865, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9866, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9867, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9868, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9869, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9870, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9871, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9872, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9873, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9874, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9491, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9492, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9493, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9494, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9495, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9496, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9497, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9498, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9499, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9500, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9501, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9502, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9503, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9504, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9505, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9506, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9507, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9508, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9509, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9510, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9511, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9512, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9513, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9514, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9515, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9516, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9517, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9518, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9519, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9520, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9521, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9522, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:dark_oak_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9299, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9300, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9301, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9302, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9303, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9304, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9305, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 9306, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9307, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9308, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9309, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9310, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9311, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9312, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9313, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9314, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9315, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9316, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9317, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9318, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9319, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9320, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9321, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9322, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9323, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9324, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9325, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9326, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9327, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9328, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9329, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9330, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 346, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 347, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 348, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 349, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 350, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 351, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 352, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 353, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 354, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 355, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 356, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 357, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 358, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 359, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 360, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 361, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 362, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 363, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 364, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 365, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 366, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 367, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 368, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 369, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 370, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 371, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 372, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 373, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 132, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 133, + "properties": { + "axis": "y" + } + }, + { + "id": 134, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:dark_oak_planks": { + "states": [ + { + "default": true, + "id": 20 + } + ] + }, + "minecraft:dark_oak_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4188, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 4189, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 32, + "properties": { + "stage": "0" + } + }, + { + "id": 33, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:dark_oak_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3796, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3797, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 3798, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 3799, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 3800, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 3801, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 3802, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 3803, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 3804, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 3805, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 3806, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 3807, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 3808, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 3809, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 3810, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 3811, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 3812, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 3813, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 3814, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 3815, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 3816, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 3817, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 3818, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 3819, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 3820, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 3821, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 3822, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 3823, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 3824, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 3825, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 3826, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 3827, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9071, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9072, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9073, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9074, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9075, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9076, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8084, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8085, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8086, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8087, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8088, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8089, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8090, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8091, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8092, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8093, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8094, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8095, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8096, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8097, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8098, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8099, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8100, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8101, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8102, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8103, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8104, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8105, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8106, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8107, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8108, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8109, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8110, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8111, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8112, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8113, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8114, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8115, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8116, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8117, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8118, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8119, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8120, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8121, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8122, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8123, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8124, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8125, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8126, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8127, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8128, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8129, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8130, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8131, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8132, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8133, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8134, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8135, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8136, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8137, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8138, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8139, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8140, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8141, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8142, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8143, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8144, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8145, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8146, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8147, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8148, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8149, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8150, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8151, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8152, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8153, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8154, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8155, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8156, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8157, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8158, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8159, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8160, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8161, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8162, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8163, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4740, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4741, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4742, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4743, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4744, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4745, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4746, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4747, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4748, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4749, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4750, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4751, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4752, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4753, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4754, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4755, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4756, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4757, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4758, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4759, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4760, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4761, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4762, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4763, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4764, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4765, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4766, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4767, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4768, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4769, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4770, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4771, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4772, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4773, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4774, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4775, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4776, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4777, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4778, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4779, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4780, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4781, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4782, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4783, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4784, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4785, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4786, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4787, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4788, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4789, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4790, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4791, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4792, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4793, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4794, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4795, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4796, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4797, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4798, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4799, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4800, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4801, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4802, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4803, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4072, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4073, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4074, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4075, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4076, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4077, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4078, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4079, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 179, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 180, + "properties": { + "axis": "y" + } + }, + { + "id": 181, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:dark_prismarine": { + "states": [ + { + "default": true, + "id": 8344 + } + ] + }, + "minecraft:dark_prismarine_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8597, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 8598, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 8599, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8600, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 8601, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 8602, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_prismarine_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8505, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8506, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8507, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8508, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8509, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8510, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8511, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8512, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8513, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8514, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8515, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8516, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8517, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8518, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8519, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8520, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8521, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8522, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8523, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8524, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8525, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8526, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8527, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8528, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8529, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8530, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8531, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8532, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8533, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8534, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8535, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8536, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8537, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8538, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8539, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8540, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8541, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8542, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8543, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8544, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8545, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8546, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8547, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8548, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8549, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8550, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8551, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8552, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8553, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8554, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8555, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8556, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8557, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8558, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8559, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8560, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8561, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8562, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8563, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8564, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8565, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8566, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8567, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8568, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8569, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8570, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8571, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8572, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8573, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8574, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8575, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8576, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8577, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8578, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8579, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8580, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8581, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8582, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8583, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8584, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:daylight_detector": { + "properties": { + "inverted": [ + "true", + "false" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 7311, + "properties": { + "inverted": "true", + "power": "0" + } + }, + { + "id": 7312, + "properties": { + "inverted": "true", + "power": "1" + } + }, + { + "id": 7313, + "properties": { + "inverted": "true", + "power": "2" + } + }, + { + "id": 7314, + "properties": { + "inverted": "true", + "power": "3" + } + }, + { + "id": 7315, + "properties": { + "inverted": "true", + "power": "4" + } + }, + { + "id": 7316, + "properties": { + "inverted": "true", + "power": "5" + } + }, + { + "id": 7317, + "properties": { + "inverted": "true", + "power": "6" + } + }, + { + "id": 7318, + "properties": { + "inverted": "true", + "power": "7" + } + }, + { + "id": 7319, + "properties": { + "inverted": "true", + "power": "8" + } + }, + { + "id": 7320, + "properties": { + "inverted": "true", + "power": "9" + } + }, + { + "id": 7321, + "properties": { + "inverted": "true", + "power": "10" + } + }, + { + "id": 7322, + "properties": { + "inverted": "true", + "power": "11" + } + }, + { + "id": 7323, + "properties": { + "inverted": "true", + "power": "12" + } + }, + { + "id": 7324, + "properties": { + "inverted": "true", + "power": "13" + } + }, + { + "id": 7325, + "properties": { + "inverted": "true", + "power": "14" + } + }, + { + "id": 7326, + "properties": { + "inverted": "true", + "power": "15" + } + }, + { + "default": true, + "id": 7327, + "properties": { + "inverted": "false", + "power": "0" + } + }, + { + "id": 7328, + "properties": { + "inverted": "false", + "power": "1" + } + }, + { + "id": 7329, + "properties": { + "inverted": "false", + "power": "2" + } + }, + { + "id": 7330, + "properties": { + "inverted": "false", + "power": "3" + } + }, + { + "id": 7331, + "properties": { + "inverted": "false", + "power": "4" + } + }, + { + "id": 7332, + "properties": { + "inverted": "false", + "power": "5" + } + }, + { + "id": 7333, + "properties": { + "inverted": "false", + "power": "6" + } + }, + { + "id": 7334, + "properties": { + "inverted": "false", + "power": "7" + } + }, + { + "id": 7335, + "properties": { + "inverted": "false", + "power": "8" + } + }, + { + "id": 7336, + "properties": { + "inverted": "false", + "power": "9" + } + }, + { + "id": 7337, + "properties": { + "inverted": "false", + "power": "10" + } + }, + { + "id": 7338, + "properties": { + "inverted": "false", + "power": "11" + } + }, + { + "id": 7339, + "properties": { + "inverted": "false", + "power": "12" + } + }, + { + "id": 7340, + "properties": { + "inverted": "false", + "power": "13" + } + }, + { + "id": 7341, + "properties": { + "inverted": "false", + "power": "14" + } + }, + { + "id": 7342, + "properties": { + "inverted": "false", + "power": "15" + } + } + ] + }, + "minecraft:dead_brain_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10403, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10404, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_block": { + "states": [ + { + "default": true, + "id": 10392 + } + ] + }, + "minecraft:dead_brain_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10423, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10424, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10449, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 10450, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 10451, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 10452, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 10453, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 10454, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 10455, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 10456, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10405, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10406, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_block": { + "states": [ + { + "default": true, + "id": 10393 + } + ] + }, + "minecraft:dead_bubble_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10425, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10426, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10457, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 10458, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 10459, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 10460, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 10461, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 10462, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 10463, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 10464, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bush": { + "states": [ + { + "default": true, + "id": 1598 + } + ] + }, + "minecraft:dead_fire_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10407, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10408, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_block": { + "states": [ + { + "default": true, + "id": 10394 + } + ] + }, + "minecraft:dead_fire_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10427, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10428, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10465, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 10466, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 10467, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 10468, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 10469, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 10470, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 10471, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 10472, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10409, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10410, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_block": { + "states": [ + { + "default": true, + "id": 10395 + } + ] + }, + "minecraft:dead_horn_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10429, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10430, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10473, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 10474, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 10475, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 10476, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 10477, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 10478, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 10479, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 10480, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10401, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10402, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_block": { + "states": [ + { + "default": true, + "id": 10391 + } + ] + }, + "minecraft:dead_tube_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10421, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10422, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10441, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 10442, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 10443, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 10444, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 10445, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 10446, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 10447, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 10448, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 19778, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 19779, + "properties": { + "axis": "y" + } + }, + { + "id": 19780, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:deepslate_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21095, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21096, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21097, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21098, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21099, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21100, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21015, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21016, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21017, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21018, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21019, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21020, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21021, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21022, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21023, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21024, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21025, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21026, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21027, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21028, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21029, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21030, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21031, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21032, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21033, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21034, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21035, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21036, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21037, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21038, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21039, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21040, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21041, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21042, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21043, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21044, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21045, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21046, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21047, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21048, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21049, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21050, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21051, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21052, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21053, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21054, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21055, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21056, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21057, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21058, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21059, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21060, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21061, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21062, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21063, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21064, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21065, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21066, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21067, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21068, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21069, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21070, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21071, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21072, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21073, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21074, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21075, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21076, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21077, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21078, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21079, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21080, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21081, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21082, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21083, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21084, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21085, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21086, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21087, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21088, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21089, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21090, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21091, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21092, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21093, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21094, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 21101, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21102, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21103, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 21104, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21105, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21106, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21107, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21108, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21109, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21110, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21111, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21112, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21113, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21114, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21115, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21116, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21117, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21118, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21119, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21120, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21121, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21122, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21123, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21124, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21125, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21126, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21127, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21128, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21129, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21130, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21131, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21132, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21133, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21134, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21135, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21136, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21137, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21138, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21139, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21140, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21141, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21142, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21143, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21144, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21145, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21146, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21147, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21148, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21149, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21150, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21151, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21152, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21153, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21154, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21155, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21156, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21157, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21158, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21159, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21160, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21161, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21162, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21163, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21164, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21165, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21166, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21167, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21168, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21169, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21170, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21171, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21172, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21173, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21174, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21175, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21176, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21177, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21178, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21179, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21180, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21181, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21182, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21183, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21184, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21185, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21186, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21187, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21188, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21189, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21190, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21191, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21192, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21193, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21194, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21195, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21196, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21197, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21198, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21199, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21200, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21201, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21202, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21203, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21204, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21205, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21206, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21207, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21208, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21209, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21210, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21211, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21212, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21213, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21214, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21215, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21216, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21217, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21218, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21219, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21220, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21221, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21222, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21223, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21224, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21225, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21226, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21227, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21228, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21229, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21230, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21231, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21232, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21233, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21234, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21235, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21236, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21237, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21238, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21239, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21240, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21241, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21242, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21243, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21244, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21245, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21246, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21247, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21248, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21249, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21250, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21251, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21252, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21253, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21254, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21255, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21256, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21257, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21258, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21259, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21260, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21261, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21262, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21263, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21264, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21265, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21266, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21267, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21268, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21269, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21270, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21271, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21272, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21273, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21274, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21275, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21276, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21277, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21278, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21279, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21280, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21281, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21282, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21283, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21284, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21285, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21286, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21287, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21288, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21289, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21290, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21291, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21292, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21293, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21294, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21295, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21296, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21297, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21298, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21299, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21300, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21301, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21302, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21303, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21304, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21305, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21306, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21307, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21308, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21309, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21310, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21311, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21312, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21313, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21314, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21315, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21316, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21317, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21318, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21319, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21320, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21321, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21322, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21323, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21324, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21325, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21326, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21327, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21328, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21329, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21330, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21331, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21332, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21333, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21334, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21335, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21336, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21337, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21338, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21339, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21340, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21341, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21342, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21343, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21344, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21345, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21346, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21347, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21348, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21349, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21350, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21351, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21352, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21353, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21354, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21355, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21356, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21357, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21358, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21359, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21360, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21361, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21362, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21363, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21364, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21365, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21366, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21367, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21368, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21369, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21370, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21371, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21372, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21373, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21374, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21375, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21376, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21377, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21378, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21379, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21380, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21381, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21382, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21383, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21384, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21385, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21386, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21387, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21388, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21389, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21390, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21391, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21392, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21393, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21394, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21395, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21396, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21397, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21398, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21399, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21400, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21401, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21402, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21403, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21404, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21405, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21406, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21407, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21408, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21409, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21410, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21411, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21412, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21413, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21414, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21415, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21416, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21417, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21418, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21419, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21420, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21421, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21422, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21423, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21424, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:deepslate_bricks": { + "states": [ + { + "default": true, + "id": 21014 + } + ] + }, + "minecraft:deepslate_coal_ore": { + "states": [ + { + "default": true, + "id": 115 + } + ] + }, + "minecraft:deepslate_copper_ore": { + "states": [ + { + "default": true, + "id": 18913 + } + ] + }, + "minecraft:deepslate_diamond_ore": { + "states": [ + { + "default": true, + "id": 3609 + } + ] + }, + "minecraft:deepslate_emerald_ore": { + "states": [ + { + "default": true, + "id": 5842 + } + ] + }, + "minecraft:deepslate_gold_ore": { + "states": [ + { + "default": true, + "id": 111 + } + ] + }, + "minecraft:deepslate_iron_ore": { + "states": [ + { + "default": true, + "id": 113 + } + ] + }, + "minecraft:deepslate_lapis_ore": { + "states": [ + { + "default": true, + "id": 462 + } + ] + }, + "minecraft:deepslate_redstone_ore": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4194, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 4195, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:deepslate_tile_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20684, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 20685, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 20686, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20687, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 20688, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 20689, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20604, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20605, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20606, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20607, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20608, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20609, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20610, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20611, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20612, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20613, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20614, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20615, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20616, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20617, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20618, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20619, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20620, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20621, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20622, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20623, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20624, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20625, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20626, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20627, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20628, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20629, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20630, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20631, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20632, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20633, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20634, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20635, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20636, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20637, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20638, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20639, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20640, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20641, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20642, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20643, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20644, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20645, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20646, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20647, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20648, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20649, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20650, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20651, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20652, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20653, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20654, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20655, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20656, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20657, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20658, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20659, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20660, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20661, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20662, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20663, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20664, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20665, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20666, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20667, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20668, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20669, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20670, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20671, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20672, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20673, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20674, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20675, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20676, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20677, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20678, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20679, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20680, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20681, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20682, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20683, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 20690, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20691, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20692, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 20693, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20694, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20695, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20696, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20697, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20698, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20699, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20700, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20701, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20702, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20703, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20704, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20705, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20706, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20707, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20708, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20709, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20710, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20711, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20712, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20713, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20714, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20715, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20716, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20717, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20718, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20719, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20720, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20721, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20722, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20723, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20724, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20725, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20726, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20727, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20728, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20729, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20730, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20731, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20732, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20733, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20734, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20735, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20736, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20737, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20738, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20739, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20740, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20741, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20742, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20743, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20744, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20745, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20746, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20747, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20748, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20749, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20750, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20751, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20752, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20753, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20754, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20755, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20756, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20757, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20758, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20759, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20760, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20761, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20762, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20763, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20764, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20765, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20766, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20767, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20768, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20769, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20770, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20771, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20772, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20773, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20774, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20775, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20776, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20777, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20778, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20779, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20780, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20781, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20782, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20783, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20784, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20785, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20786, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20787, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20788, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20789, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20790, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20791, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20792, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20793, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20794, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20795, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20796, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20797, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20798, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20799, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20800, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20801, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20802, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20803, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20804, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20805, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20806, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20807, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20808, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20809, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20810, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20811, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20812, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20813, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20814, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20815, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20816, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20817, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20818, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20819, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20820, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20821, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20822, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20823, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20824, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20825, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20826, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20827, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20828, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20829, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20830, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20831, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20832, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20833, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20834, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20835, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20836, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20837, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20838, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20839, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20840, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20841, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20842, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20843, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20844, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20845, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20846, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20847, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20848, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20849, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20850, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20851, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20852, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20853, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20854, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20855, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20856, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20857, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20858, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20859, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20860, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20861, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20862, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20863, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20864, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20865, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20866, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20867, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20868, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20869, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20870, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20871, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20872, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20873, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20874, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20875, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20876, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20877, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20878, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20879, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20880, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20881, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20882, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20883, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20884, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20885, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20886, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20887, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20888, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20889, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20890, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20891, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20892, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20893, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20894, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20895, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20896, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20897, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20898, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20899, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20900, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20901, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20902, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20903, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20904, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20905, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20906, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20907, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20908, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20909, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20910, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20911, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20912, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20913, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20914, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20915, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20916, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20917, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20918, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20919, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20920, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20921, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20922, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20923, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20924, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20925, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20926, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20927, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20928, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20929, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20930, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20931, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20932, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20933, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20934, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20935, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20936, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20937, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20938, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20939, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20940, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20941, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20942, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20943, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20944, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20945, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20946, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20947, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20948, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20949, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20950, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20951, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20952, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20953, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20954, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20955, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20956, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20957, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20958, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20959, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20960, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20961, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20962, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20963, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20964, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20965, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20966, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20967, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20968, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20969, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20970, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20971, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20972, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20973, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20974, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20975, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20976, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20977, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20978, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20979, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20980, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20981, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20982, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20983, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20984, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20985, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20986, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20987, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20988, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20989, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20990, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20991, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20992, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20993, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20994, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20995, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20996, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20997, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20998, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20999, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21000, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21001, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21002, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21003, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21004, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21005, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21006, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21007, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21008, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21009, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21010, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21011, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21012, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21013, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:deepslate_tiles": { + "states": [ + { + "default": true, + "id": 20603 + } + ] + }, + "minecraft:detector_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1559, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 1560, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1561, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1562, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1563, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1564, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1565, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1566, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1567, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1568, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1569, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1570, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 1571, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 1572, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1573, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1574, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1575, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1576, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1577, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1578, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1579, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1580, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1581, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1582, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diamond_block": { + "states": [ + { + "default": true, + "id": 3610 + } + ] + }, + "minecraft:diamond_ore": { + "states": [ + { + "default": true, + "id": 3608 + } + ] + }, + "minecraft:diorite": { + "states": [ + { + "default": true, + "id": 4 + } + ] + }, + "minecraft:diorite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11742, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11743, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11744, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11745, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11746, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11747, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11590, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11591, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11592, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11593, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11594, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11595, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11596, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11597, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11598, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11599, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11600, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11601, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11602, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11603, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11604, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11605, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11606, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11607, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11608, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11609, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11610, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11611, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11612, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11613, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11614, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11615, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11616, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11617, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11618, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11619, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11620, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11621, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11622, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11623, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11624, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11625, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11626, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11627, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11628, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11629, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11630, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11631, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11632, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11633, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11634, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11635, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11636, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11637, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11638, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11639, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11640, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11641, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11642, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11643, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11644, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11645, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11646, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11647, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11648, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11649, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11650, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11651, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11652, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11653, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11654, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11655, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11656, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11657, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11658, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11659, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11660, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11661, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11662, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11663, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11664, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11665, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11666, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11667, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11668, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11669, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 15636, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15637, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15638, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 15639, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15640, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15641, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15642, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15643, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15644, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15645, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15646, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15647, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15648, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15649, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15650, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15651, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15652, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15653, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15654, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15655, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15656, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15657, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15658, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15659, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15660, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15661, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15662, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15663, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15664, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15665, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15666, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15667, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15668, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15669, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15670, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15671, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15672, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15673, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15674, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15675, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15676, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15677, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15678, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15679, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15680, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15681, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15682, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15683, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15684, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15685, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15686, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15687, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15688, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15689, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15690, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15691, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15692, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15693, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15694, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15695, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15696, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15697, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15698, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15699, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15700, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15701, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15702, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15703, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15704, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15705, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15706, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15707, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15708, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15709, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15710, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15711, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15712, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15713, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15714, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15715, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15716, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15717, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15718, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15719, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15720, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15721, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15722, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15723, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15724, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15725, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15726, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15727, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15728, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15729, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15730, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15731, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15732, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15733, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15734, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15735, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15736, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15737, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15738, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15739, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15740, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15741, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15742, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15743, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15744, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15745, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15746, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15747, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15748, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15749, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15750, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15751, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15752, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15753, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15754, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15755, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15756, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15757, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15758, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15759, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15760, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15761, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15762, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15763, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15764, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15765, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15766, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15767, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15768, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15769, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15770, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15771, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15772, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15773, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15774, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15775, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15776, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15777, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15778, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15779, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15780, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15781, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15782, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15783, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15784, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15785, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15786, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15787, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15788, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15789, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15790, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15791, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15792, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15793, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15794, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15795, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15796, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15797, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15798, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15799, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15800, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15801, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15802, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15803, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15804, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15805, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15806, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15807, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15808, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15809, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15810, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15811, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15812, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15813, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15814, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15815, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15816, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15817, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15818, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15819, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15820, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15821, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15822, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15823, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15824, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15825, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15826, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15827, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15828, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15829, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15830, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15831, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15832, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15833, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15834, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15835, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15836, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15837, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15838, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15839, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15840, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15841, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15842, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15843, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15844, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15845, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15846, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15847, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15848, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15849, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15850, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15851, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15852, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15853, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15854, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15855, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15856, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15857, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15858, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15859, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15860, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15861, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15862, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15863, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15864, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15865, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15866, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15867, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15868, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15869, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15870, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15871, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15872, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15873, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15874, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15875, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15876, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15877, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15878, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15879, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15880, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15881, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15882, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15883, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15884, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15885, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15886, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15887, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15888, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15889, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15890, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15891, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15892, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15893, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15894, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15895, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15896, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15897, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15898, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15899, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15900, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15901, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15902, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15903, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15904, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15905, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15906, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15907, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15908, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15909, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15910, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15911, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15912, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15913, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15914, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15915, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15916, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15917, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15918, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15919, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15920, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15921, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15922, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15923, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15924, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15925, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15926, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15927, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15928, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15929, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15930, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15931, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15932, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15933, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15934, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15935, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15936, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15937, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15938, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15939, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15940, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15941, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15942, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15943, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15944, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15945, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15946, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15947, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15948, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15949, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15950, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15951, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15952, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15953, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15954, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15955, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15956, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15957, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15958, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15959, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:dirt": { + "states": [ + { + "default": true, + "id": 10 + } + ] + }, + "minecraft:dirt_path": { + "states": [ + { + "default": true, + "id": 10104 + } + ] + }, + "minecraft:dispenser": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 464, + "properties": { + "facing": "north", + "triggered": "true" + } + }, + { + "default": true, + "id": 465, + "properties": { + "facing": "north", + "triggered": "false" + } + }, + { + "id": 466, + "properties": { + "facing": "east", + "triggered": "true" + } + }, + { + "id": 467, + "properties": { + "facing": "east", + "triggered": "false" + } + }, + { + "id": 468, + "properties": { + "facing": "south", + "triggered": "true" + } + }, + { + "id": 469, + "properties": { + "facing": "south", + "triggered": "false" + } + }, + { + "id": 470, + "properties": { + "facing": "west", + "triggered": "true" + } + }, + { + "id": 471, + "properties": { + "facing": "west", + "triggered": "false" + } + }, + { + "id": 472, + "properties": { + "facing": "up", + "triggered": "true" + } + }, + { + "id": 473, + "properties": { + "facing": "up", + "triggered": "false" + } + }, + { + "id": 474, + "properties": { + "facing": "down", + "triggered": "true" + } + }, + { + "id": 475, + "properties": { + "facing": "down", + "triggered": "false" + } + } + ] + }, + "minecraft:dragon_egg": { + "states": [ + { + "default": true, + "id": 5746 + } + ] + }, + "minecraft:dragon_head": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 7207, + "properties": { + "rotation": "0" + } + }, + { + "id": 7208, + "properties": { + "rotation": "1" + } + }, + { + "id": 7209, + "properties": { + "rotation": "2" + } + }, + { + "id": 7210, + "properties": { + "rotation": "3" + } + }, + { + "id": 7211, + "properties": { + "rotation": "4" + } + }, + { + "id": 7212, + "properties": { + "rotation": "5" + } + }, + { + "id": 7213, + "properties": { + "rotation": "6" + } + }, + { + "id": 7214, + "properties": { + "rotation": "7" + } + }, + { + "id": 7215, + "properties": { + "rotation": "8" + } + }, + { + "id": 7216, + "properties": { + "rotation": "9" + } + }, + { + "id": 7217, + "properties": { + "rotation": "10" + } + }, + { + "id": 7218, + "properties": { + "rotation": "11" + } + }, + { + "id": 7219, + "properties": { + "rotation": "12" + } + }, + { + "id": 7220, + "properties": { + "rotation": "13" + } + }, + { + "id": 7221, + "properties": { + "rotation": "14" + } + }, + { + "id": 7222, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:dragon_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7223, + "properties": { + "facing": "north" + } + }, + { + "id": 7224, + "properties": { + "facing": "south" + } + }, + { + "id": 7225, + "properties": { + "facing": "west" + } + }, + { + "id": 7226, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:dried_kelp_block": { + "states": [ + { + "default": true, + "id": 10378 + } + ] + }, + "minecraft:dripstone_block": { + "states": [ + { + "default": true, + "id": 19658 + } + ] + }, + "minecraft:dropper": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7464, + "properties": { + "facing": "north", + "triggered": "true" + } + }, + { + "default": true, + "id": 7465, + "properties": { + "facing": "north", + "triggered": "false" + } + }, + { + "id": 7466, + "properties": { + "facing": "east", + "triggered": "true" + } + }, + { + "id": 7467, + "properties": { + "facing": "east", + "triggered": "false" + } + }, + { + "id": 7468, + "properties": { + "facing": "south", + "triggered": "true" + } + }, + { + "id": 7469, + "properties": { + "facing": "south", + "triggered": "false" + } + }, + { + "id": 7470, + "properties": { + "facing": "west", + "triggered": "true" + } + }, + { + "id": 7471, + "properties": { + "facing": "west", + "triggered": "false" + } + }, + { + "id": 7472, + "properties": { + "facing": "up", + "triggered": "true" + } + }, + { + "id": 7473, + "properties": { + "facing": "up", + "triggered": "false" + } + }, + { + "id": 7474, + "properties": { + "facing": "down", + "triggered": "true" + } + }, + { + "id": 7475, + "properties": { + "facing": "down", + "triggered": "false" + } + } + ] + }, + "minecraft:emerald_block": { + "states": [ + { + "default": true, + "id": 5995 + } + ] + }, + "minecraft:emerald_ore": { + "states": [ + { + "default": true, + "id": 5841 + } + ] + }, + "minecraft:enchanting_table": { + "states": [ + { + "default": true, + "id": 5719 + } + ] + }, + "minecraft:end_gateway": { + "states": [ + { + "default": true, + "id": 10105 + } + ] + }, + "minecraft:end_portal": { + "states": [ + { + "default": true, + "id": 5736 + } + ] + }, + "minecraft:end_portal_frame": { + "properties": { + "eye": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 5737, + "properties": { + "eye": "true", + "facing": "north" + } + }, + { + "id": 5738, + "properties": { + "eye": "true", + "facing": "south" + } + }, + { + "id": 5739, + "properties": { + "eye": "true", + "facing": "west" + } + }, + { + "id": 5740, + "properties": { + "eye": "true", + "facing": "east" + } + }, + { + "default": true, + "id": 5741, + "properties": { + "eye": "false", + "facing": "north" + } + }, + { + "id": 5742, + "properties": { + "eye": "false", + "facing": "south" + } + }, + { + "id": 5743, + "properties": { + "eye": "false", + "facing": "west" + } + }, + { + "id": 5744, + "properties": { + "eye": "false", + "facing": "east" + } + } + ] + }, + "minecraft:end_rod": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 9939, + "properties": { + "facing": "north" + } + }, + { + "id": 9940, + "properties": { + "facing": "east" + } + }, + { + "id": 9941, + "properties": { + "facing": "south" + } + }, + { + "id": 9942, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 9943, + "properties": { + "facing": "up" + } + }, + { + "id": 9944, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:end_stone": { + "states": [ + { + "default": true, + "id": 5745 + } + ] + }, + "minecraft:end_stone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11700, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11701, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11702, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11703, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11704, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11705, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:end_stone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10950, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10951, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10952, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10953, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10954, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10955, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10956, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10957, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10958, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10959, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10960, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10961, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10962, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10963, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10964, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10965, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10966, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10967, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10968, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10969, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10970, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10971, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10972, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10973, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10974, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10975, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10976, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10977, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10978, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10979, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10980, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10981, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10982, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10983, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10984, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10985, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10986, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10987, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10988, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10989, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10990, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10991, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10992, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10993, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10994, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10995, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10996, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10997, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10998, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10999, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11000, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11001, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11002, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11003, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11004, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11005, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11006, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11007, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11008, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11009, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11010, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11011, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11012, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11013, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11014, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11015, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11016, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11017, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11018, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11019, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11020, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11021, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11022, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11023, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11024, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11025, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11026, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11027, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11028, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11029, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:end_stone_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 15312, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15313, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15314, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 15315, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15316, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15317, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15318, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15319, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15320, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15321, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15322, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15323, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15324, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15325, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15326, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15327, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15328, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15329, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15330, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15331, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15332, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15333, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15334, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15335, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15336, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15337, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15338, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15339, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15340, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15341, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15342, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15343, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15344, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15345, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15346, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15347, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15348, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15349, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15350, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15351, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15352, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15353, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15354, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15355, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15356, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15357, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15358, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15359, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15360, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15361, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15362, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15363, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15364, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15365, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15366, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15367, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15368, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15369, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15370, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15371, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15372, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15373, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15374, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15375, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15376, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15377, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15378, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15379, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15380, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15381, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15382, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15383, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15384, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15385, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15386, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15387, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15388, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15389, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15390, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15391, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15392, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15393, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15394, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15395, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15396, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15397, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15398, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15399, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15400, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15401, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15402, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15403, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15404, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15405, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15406, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15407, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15408, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15409, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15410, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15411, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15412, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15413, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15414, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15415, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15416, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15417, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15418, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15419, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15420, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15421, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15422, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15423, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15424, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15425, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15426, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15427, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15428, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15429, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15430, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15431, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15432, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15433, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15434, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15435, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15436, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15437, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15438, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15439, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15440, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15441, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15442, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15443, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15444, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15445, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15446, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15447, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15448, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15449, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15450, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15451, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15452, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15453, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15454, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15455, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15456, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15457, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15458, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15459, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15460, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15461, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15462, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15463, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15464, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15465, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15466, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15467, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15468, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15469, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15470, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15471, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15472, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15473, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15474, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15475, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15476, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15477, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15478, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15479, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15480, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15481, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15482, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15483, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15484, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15485, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15486, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15487, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15488, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15489, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15490, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15491, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15492, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15493, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15494, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15495, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15496, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15497, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15498, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15499, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15500, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15501, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15502, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15503, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15504, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15505, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15506, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15507, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15508, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15509, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15510, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15511, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15512, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15513, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15514, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15515, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15516, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15517, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15518, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15519, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15520, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15521, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15522, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15523, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15524, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15525, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15526, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15527, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15528, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15529, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15530, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15531, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15532, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15533, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15534, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15535, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15536, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15537, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15538, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15539, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15540, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15541, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15542, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15543, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15544, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15545, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15546, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15547, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15548, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15549, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15550, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15551, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15552, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15553, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15554, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15555, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15556, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15557, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15558, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15559, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15560, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15561, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15562, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15563, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15564, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15565, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15566, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15567, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15568, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15569, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15570, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15571, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15572, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15573, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15574, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15575, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15576, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15577, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15578, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15579, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15580, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15581, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15582, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15583, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15584, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15585, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15586, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15587, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15588, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15589, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15590, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15591, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15592, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15593, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15594, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15595, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15596, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15597, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15598, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15599, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15600, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15601, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15602, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15603, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15604, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15605, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15606, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15607, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15608, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15609, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15610, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15611, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15612, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15613, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15614, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15615, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15616, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15617, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15618, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15619, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15620, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15621, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15622, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15623, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15624, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15625, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15626, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15627, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15628, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15629, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15630, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15631, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15632, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15633, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15634, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15635, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:end_stone_bricks": { + "states": [ + { + "default": true, + "id": 10099 + } + ] + }, + "minecraft:ender_chest": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5843, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5844, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5845, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5846, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5847, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5848, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5849, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5850, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper": { + "states": [ + { + "default": true, + "id": 18910 + } + ] + }, + "minecraft:exposed_cut_copper": { + "states": [ + { + "default": true, + "id": 18916 + } + ] + }, + "minecraft:exposed_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19250, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 19251, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 19252, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19253, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 19254, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 19255, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19078, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19079, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19080, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19081, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19082, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19083, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19084, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19085, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19086, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19087, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19088, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19089, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19090, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19091, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19092, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19093, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19094, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19095, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19096, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19097, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19098, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19099, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19100, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19101, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19102, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19103, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19104, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19105, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19106, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19107, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19108, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19109, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19110, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19111, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19112, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19113, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19114, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19115, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19116, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19117, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19118, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19119, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19120, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19121, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19122, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19123, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19124, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19125, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19126, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19127, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19128, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19129, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19130, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19131, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19132, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19133, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19134, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19135, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19136, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19137, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19138, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19139, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19140, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19141, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19142, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19143, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19144, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19145, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19146, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19147, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19148, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19149, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19150, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19151, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19152, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19153, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19154, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19155, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19156, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19157, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:farmland": { + "properties": { + "moisture": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 3620, + "properties": { + "moisture": "0" + } + }, + { + "id": 3621, + "properties": { + "moisture": "1" + } + }, + { + "id": 3622, + "properties": { + "moisture": "2" + } + }, + { + "id": 3623, + "properties": { + "moisture": "3" + } + }, + { + "id": 3624, + "properties": { + "moisture": "4" + } + }, + { + "id": 3625, + "properties": { + "moisture": "5" + } + }, + { + "id": 3626, + "properties": { + "moisture": "6" + } + }, + { + "id": 3627, + "properties": { + "moisture": "7" + } + } + ] + }, + "minecraft:fern": { + "states": [ + { + "default": true, + "id": 1597 + } + ] + }, + "minecraft:fire": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1694, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1695, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1696, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1697, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1698, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1699, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1700, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1701, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1702, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1703, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1704, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1705, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1706, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1707, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1708, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1709, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1710, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1711, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1712, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1713, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1714, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1715, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1716, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1717, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1718, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1719, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1720, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1721, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1722, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1723, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1724, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 1725, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1726, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1727, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1728, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1729, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1730, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1731, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1732, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1733, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1734, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1735, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1736, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1737, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1738, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1739, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1740, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1741, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1742, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1743, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1744, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1745, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1746, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1747, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1748, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1749, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1750, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1751, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1752, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1753, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1754, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1755, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1756, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1757, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1758, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1759, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1760, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1761, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1762, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1763, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1764, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1765, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1766, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1767, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1768, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1769, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1770, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1771, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1772, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1773, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1774, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1775, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1776, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1777, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1778, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1779, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1780, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1781, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1782, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1783, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1784, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1785, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1786, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1787, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1788, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1789, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1790, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1791, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1792, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1793, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1794, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1795, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1796, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1797, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1798, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1799, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1800, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1801, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1802, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1803, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1804, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1805, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1806, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1807, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1808, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1809, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1810, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1811, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1812, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1813, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1814, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1815, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1816, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1817, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1818, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1819, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1820, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1821, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1822, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1823, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1824, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1825, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1826, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1827, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1828, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1829, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1830, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1831, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1832, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1833, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1834, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1835, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1836, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1837, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1838, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1839, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1840, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1841, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1842, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1843, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1844, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1845, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1846, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1847, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1848, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1849, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1850, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1851, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1852, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1853, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1854, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1855, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1856, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1857, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1858, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1859, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1860, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1861, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1862, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1863, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1864, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1865, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1866, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1867, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1868, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1869, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1870, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1871, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1872, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1873, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1874, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1875, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1876, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1877, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1878, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1879, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1880, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1881, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1882, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1883, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1884, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1885, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1886, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1887, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1888, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1889, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1890, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1891, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1892, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1893, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1894, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1895, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1896, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1897, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1898, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1899, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1900, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1901, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1902, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1903, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1904, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1905, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1906, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1907, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1908, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1909, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1910, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1911, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1912, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1913, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1914, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1915, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1916, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1917, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1918, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1919, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1920, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1921, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1922, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1923, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1924, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1925, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1926, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1927, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1928, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1929, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1930, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1931, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1932, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1933, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1934, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1935, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1936, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1937, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1938, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1939, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1940, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1941, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1942, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1943, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1944, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1945, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1946, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1947, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1948, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1949, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1950, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1951, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1952, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1953, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1954, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1955, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1956, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1957, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1958, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1959, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1960, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1961, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1962, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1963, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1964, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1965, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1966, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1967, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1968, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1969, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1970, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1971, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1972, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1973, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1974, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1975, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1976, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1977, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1978, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1979, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1980, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1981, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1982, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1983, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1984, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1985, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1986, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1987, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1988, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1989, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1990, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1991, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 1992, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 1993, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 1994, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 1995, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 1996, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 1997, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 1998, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 1999, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2000, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2001, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2002, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2003, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2004, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2005, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2006, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2007, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2008, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2009, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2010, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2011, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2012, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2013, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2014, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2015, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2016, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2017, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2018, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2019, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2020, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2021, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2022, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2023, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2024, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2025, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2026, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2027, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2028, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2029, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2030, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2031, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2032, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2033, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2034, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2035, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2036, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2037, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2038, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2039, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2040, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2041, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2042, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2043, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2044, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2045, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2046, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2047, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2048, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2049, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2050, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2051, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2052, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2053, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2054, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2055, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2056, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2057, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2058, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2059, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2060, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2061, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2062, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2063, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2064, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2065, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2066, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2067, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2068, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2069, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2070, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2071, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2072, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2073, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2074, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2075, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2076, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2077, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2078, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2079, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2080, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2081, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2082, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2083, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2084, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2085, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2086, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2087, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2088, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2089, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2090, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2091, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2092, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2093, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2094, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2095, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2096, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2097, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2098, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2099, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2100, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2101, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2102, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2103, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2104, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2105, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2106, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2107, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2108, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2109, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2110, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2111, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2112, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2113, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2114, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2115, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2116, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2117, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2118, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2119, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2120, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2121, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2122, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2123, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2124, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2125, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2126, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2127, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2128, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2129, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2130, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2131, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2132, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2133, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2134, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2135, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2136, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2137, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2138, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2139, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2140, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2141, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2142, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2143, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2144, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2145, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2146, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2147, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2148, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2149, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2150, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2151, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2152, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2153, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2154, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2155, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2156, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2157, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2158, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2159, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2160, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2161, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2162, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2163, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2164, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2165, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2166, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2167, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2168, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2169, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2170, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2171, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2172, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2173, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2174, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2175, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2176, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2177, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2178, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2179, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2180, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2181, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2182, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2183, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2184, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2185, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2186, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2187, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2188, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2189, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2190, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2191, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2192, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2193, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2194, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2195, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2196, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2197, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2198, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2199, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2200, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2201, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2202, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2203, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2204, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2205, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:fire_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10417, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10418, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_block": { + "states": [ + { + "default": true, + "id": 10399 + } + ] + }, + "minecraft:fire_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10437, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10438, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10505, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 10506, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 10507, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 10508, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 10509, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 10510, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 10511, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 10512, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:fletching_table": { + "states": [ + { + "default": true, + "id": 16025 + } + ] + }, + "minecraft:flower_pot": { + "states": [ + { + "default": true, + "id": 6897 + } + ] + }, + "minecraft:flowering_azalea": { + "states": [ + { + "default": true, + "id": 19715 + } + ] + }, + "minecraft:flowering_azalea_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 430, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 431, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 432, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 433, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 434, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 435, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 436, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 437, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 438, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 439, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 440, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 441, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 442, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 443, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 444, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 445, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 446, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 447, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 448, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 449, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 450, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 451, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 452, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 453, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 454, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 455, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 456, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 457, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:frogspawn": { + "states": [ + { + "default": true, + "id": 21446 + } + ] + }, + "minecraft:frosted_ice": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 10130, + "properties": { + "age": "0" + } + }, + { + "id": 10131, + "properties": { + "age": "1" + } + }, + { + "id": 10132, + "properties": { + "age": "2" + } + }, + { + "id": 10133, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:furnace": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3628, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 3629, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 3630, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 3631, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 3632, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 3633, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 3634, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 3635, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:gilded_blackstone": { + "states": [ + { + "default": true, + "id": 17873 + } + ] + }, + "minecraft:glass": { + "states": [ + { + "default": true, + "id": 460 + } + ] + }, + "minecraft:glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5110, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5111, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5112, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5113, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5114, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5115, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5116, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5117, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5118, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5119, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5120, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5121, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5122, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5123, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5124, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5125, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5126, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5127, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5128, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5129, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5130, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5131, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5132, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5133, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5134, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5135, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5136, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5137, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5138, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5139, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5140, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 5141, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:glow_lichen": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5199, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5200, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5201, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5202, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5203, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5204, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5205, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5206, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5207, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5208, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5209, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5210, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5211, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5212, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5213, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5214, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5215, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5216, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5217, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5218, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5219, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5220, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5221, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5222, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5223, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5224, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5225, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5226, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5227, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5228, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5229, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5230, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5231, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5232, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5233, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5234, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5235, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5236, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5237, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5238, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5239, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5240, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5241, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5242, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5243, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5244, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5245, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5246, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5247, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5248, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5249, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5250, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5251, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5252, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5253, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5254, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5255, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5256, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5257, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5258, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5259, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5260, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5261, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5262, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5263, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5264, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5265, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5266, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5267, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5268, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5269, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5270, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5271, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5272, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5273, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5274, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5275, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5276, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5277, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5278, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5279, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5280, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5281, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5282, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5283, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5284, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5285, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5286, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5287, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5288, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5289, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5290, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5291, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5292, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5293, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5294, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5295, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5296, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5297, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5298, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5299, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5300, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5301, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5302, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5303, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5304, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5305, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5306, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5307, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5308, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5309, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5310, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5311, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5312, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5313, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5314, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5315, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5316, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5317, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5318, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5319, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5320, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5321, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5322, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5323, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5324, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5325, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 5326, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:glowstone": { + "states": [ + { + "default": true, + "id": 4322 + } + ] + }, + "minecraft:gold_block": { + "states": [ + { + "default": true, + "id": 1681 + } + ] + }, + "minecraft:gold_ore": { + "states": [ + { + "default": true, + "id": 110 + } + ] + }, + "minecraft:granite": { + "states": [ + { + "default": true, + "id": 2 + } + ] + }, + "minecraft:granite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11718, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11719, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11720, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11721, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11722, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11723, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:granite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11270, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11271, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11272, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11273, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11274, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11275, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11276, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11277, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11278, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11279, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11280, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11281, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11282, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11283, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11284, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11285, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11286, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11287, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11288, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11289, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11290, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11291, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11292, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11293, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11294, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11295, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11296, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11297, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11298, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11299, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11300, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11301, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11302, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11303, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11304, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11305, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11306, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11307, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11308, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11309, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11310, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11311, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11312, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11313, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11314, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11315, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11316, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11317, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11318, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11319, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11320, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11321, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11322, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11323, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11324, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11325, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11326, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11327, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11328, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11329, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11330, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11331, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11332, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11333, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11334, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11335, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11336, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11337, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11338, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11339, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11340, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11341, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11342, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11343, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11344, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11345, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11346, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11347, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11348, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11349, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:granite_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 13044, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13045, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13046, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 13047, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13048, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13049, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13050, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13051, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13052, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13053, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13054, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13055, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13056, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13057, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13058, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13059, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13060, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13061, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13062, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13063, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13064, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13065, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13066, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13067, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13068, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13069, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13070, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13071, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13072, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13073, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13074, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13075, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13076, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13077, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13078, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13079, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13080, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13081, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13082, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13083, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13084, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13085, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13086, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13087, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13088, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13089, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13090, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13091, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13092, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13093, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13094, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13095, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13096, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13097, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13098, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13099, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13100, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13101, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13102, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13103, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13104, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13105, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13106, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13107, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13108, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13109, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13110, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13111, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13112, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13113, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13114, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13115, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13116, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13117, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13118, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13119, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13120, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13121, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13122, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13123, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13124, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13125, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13126, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13127, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13128, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13129, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13130, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13131, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13132, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13133, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13134, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13135, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13136, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13137, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13138, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13139, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13140, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13141, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13142, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13143, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13144, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13145, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13146, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13147, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13148, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13149, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13150, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13151, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13152, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13153, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13154, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13155, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13156, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13157, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13158, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13159, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13160, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13161, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13162, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13163, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13164, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13165, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13166, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13167, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13168, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13169, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13170, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13171, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13172, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13173, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13174, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13175, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13176, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13177, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13178, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13179, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13180, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13181, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13182, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13183, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13184, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13185, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13186, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13187, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13188, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13189, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13190, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13191, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13192, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13193, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13194, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13195, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13196, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13197, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13198, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13199, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13200, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13201, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13202, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13203, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13204, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13205, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13206, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13207, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13208, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13209, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13210, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13211, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13212, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13213, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13214, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13215, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13216, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13217, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13218, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13219, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13220, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13221, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13222, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13223, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13224, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13225, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13226, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13227, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13228, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13229, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13230, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13231, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13232, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13233, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13234, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13235, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13236, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13237, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13238, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13239, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13240, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13241, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13242, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13243, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13244, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13245, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13246, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13247, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13248, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13249, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13250, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13251, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13252, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13253, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13254, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13255, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13256, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13257, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13258, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13259, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13260, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13261, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13262, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13263, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13264, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13265, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13266, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13267, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13268, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13269, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13270, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13271, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13272, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13273, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13274, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13275, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13276, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13277, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13278, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13279, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13280, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13281, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13282, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13283, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13284, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13285, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13286, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13287, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13288, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13289, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13290, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13291, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13292, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13293, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13294, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13295, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13296, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13297, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13298, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13299, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13300, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13301, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13302, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13303, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13304, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13305, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13306, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13307, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13308, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13309, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13310, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13311, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13312, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13313, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13314, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13315, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13316, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13317, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13318, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13319, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13320, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13321, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13322, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13323, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13324, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13325, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13326, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13327, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13328, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13329, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13330, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13331, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13332, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13333, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13334, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13335, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13336, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13337, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13338, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13339, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13340, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13341, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13342, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13343, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13344, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13345, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13346, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13347, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13348, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13349, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13350, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13351, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13352, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13353, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13354, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13355, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13356, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13357, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13358, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13359, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13360, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13361, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13362, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13363, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13364, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13365, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13366, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13367, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:grass": { + "states": [ + { + "default": true, + "id": 1596 + } + ] + }, + "minecraft:grass_block": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 9, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:gravel": { + "states": [ + { + "default": true, + "id": 109 + } + ] + }, + "minecraft:gray_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8750, + "properties": { + "rotation": "0" + } + }, + { + "id": 8751, + "properties": { + "rotation": "1" + } + }, + { + "id": 8752, + "properties": { + "rotation": "2" + } + }, + { + "id": 8753, + "properties": { + "rotation": "3" + } + }, + { + "id": 8754, + "properties": { + "rotation": "4" + } + }, + { + "id": 8755, + "properties": { + "rotation": "5" + } + }, + { + "id": 8756, + "properties": { + "rotation": "6" + } + }, + { + "id": 8757, + "properties": { + "rotation": "7" + } + }, + { + "id": 8758, + "properties": { + "rotation": "8" + } + }, + { + "id": 8759, + "properties": { + "rotation": "9" + } + }, + { + "id": 8760, + "properties": { + "rotation": "10" + } + }, + { + "id": 8761, + "properties": { + "rotation": "11" + } + }, + { + "id": 8762, + "properties": { + "rotation": "12" + } + }, + { + "id": 8763, + "properties": { + "rotation": "13" + } + }, + { + "id": 8764, + "properties": { + "rotation": "14" + } + }, + { + "id": 8765, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:gray_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1391, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1392, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1393, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1394, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1395, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1396, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1397, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1398, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1399, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1400, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1401, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1402, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1403, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1404, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1405, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1406, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:gray_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18441, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18442, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18443, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18444, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18445, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18446, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18447, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18448, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18449, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18450, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18451, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18452, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18453, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18454, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18455, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18456, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:gray_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18601, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18602, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:gray_carpet": { + "states": [ + { + "default": true, + "id": 8614 + } + ] + }, + "minecraft:gray_concrete": { + "states": [ + { + "default": true, + "id": 10326 + } + ] + }, + "minecraft:gray_concrete_powder": { + "states": [ + { + "default": true, + "id": 10342 + } + ] + }, + "minecraft:gray_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10283, + "properties": { + "facing": "north" + } + }, + { + "id": 10284, + "properties": { + "facing": "south" + } + }, + { + "id": 10285, + "properties": { + "facing": "west" + } + }, + { + "id": 10286, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:gray_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10201, + "properties": { + "facing": "north" + } + }, + { + "id": 10202, + "properties": { + "facing": "east" + } + }, + { + "id": 10203, + "properties": { + "facing": "south" + } + }, + { + "id": 10204, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10205, + "properties": { + "facing": "up" + } + }, + { + "id": 10206, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:gray_stained_glass": { + "states": [ + { + "default": true, + "id": 4411 + } + ] + }, + "minecraft:gray_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7716, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7717, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7718, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7719, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7720, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7721, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7722, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7723, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7724, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7725, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7726, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7727, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7728, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7729, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7730, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7731, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7732, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7733, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7734, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7735, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7736, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7737, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7738, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7739, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7740, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7741, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7742, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7743, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7744, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7745, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7746, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7747, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:gray_terracotta": { + "states": [ + { + "default": true, + "id": 7483 + } + ] + }, + "minecraft:gray_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8922, + "properties": { + "facing": "north" + } + }, + { + "id": 8923, + "properties": { + "facing": "south" + } + }, + { + "id": 8924, + "properties": { + "facing": "west" + } + }, + { + "id": 8925, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:gray_wool": { + "states": [ + { + "default": true, + "id": 1645 + } + ] + }, + "minecraft:green_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8846, + "properties": { + "rotation": "0" + } + }, + { + "id": 8847, + "properties": { + "rotation": "1" + } + }, + { + "id": 8848, + "properties": { + "rotation": "2" + } + }, + { + "id": 8849, + "properties": { + "rotation": "3" + } + }, + { + "id": 8850, + "properties": { + "rotation": "4" + } + }, + { + "id": 8851, + "properties": { + "rotation": "5" + } + }, + { + "id": 8852, + "properties": { + "rotation": "6" + } + }, + { + "id": 8853, + "properties": { + "rotation": "7" + } + }, + { + "id": 8854, + "properties": { + "rotation": "8" + } + }, + { + "id": 8855, + "properties": { + "rotation": "9" + } + }, + { + "id": 8856, + "properties": { + "rotation": "10" + } + }, + { + "id": 8857, + "properties": { + "rotation": "11" + } + }, + { + "id": 8858, + "properties": { + "rotation": "12" + } + }, + { + "id": 8859, + "properties": { + "rotation": "13" + } + }, + { + "id": 8860, + "properties": { + "rotation": "14" + } + }, + { + "id": 8861, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:green_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1487, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1488, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1489, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1490, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1491, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1492, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1493, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1494, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1495, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1496, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1497, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1498, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1499, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1500, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1501, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1502, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:green_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18537, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18538, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18539, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18540, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18541, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18542, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18543, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18544, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18545, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18546, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18547, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18548, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18549, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18550, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18551, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18552, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:green_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18613, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18614, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:green_carpet": { + "states": [ + { + "default": true, + "id": 8620 + } + ] + }, + "minecraft:green_concrete": { + "states": [ + { + "default": true, + "id": 10332 + } + ] + }, + "minecraft:green_concrete_powder": { + "states": [ + { + "default": true, + "id": 10348 + } + ] + }, + "minecraft:green_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10307, + "properties": { + "facing": "north" + } + }, + { + "id": 10308, + "properties": { + "facing": "south" + } + }, + { + "id": 10309, + "properties": { + "facing": "west" + } + }, + { + "id": 10310, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:green_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10237, + "properties": { + "facing": "north" + } + }, + { + "id": 10238, + "properties": { + "facing": "east" + } + }, + { + "id": 10239, + "properties": { + "facing": "south" + } + }, + { + "id": 10240, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10241, + "properties": { + "facing": "up" + } + }, + { + "id": 10242, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:green_stained_glass": { + "states": [ + { + "default": true, + "id": 4417 + } + ] + }, + "minecraft:green_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7908, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7909, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7910, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7911, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7912, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7913, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7914, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7915, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7916, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7917, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7918, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7919, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7920, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7921, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7922, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7923, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7924, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7925, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7926, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7927, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7928, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7929, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7930, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7931, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7932, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7933, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7934, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7935, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7936, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7937, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7938, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7939, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:green_terracotta": { + "states": [ + { + "default": true, + "id": 7489 + } + ] + }, + "minecraft:green_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8946, + "properties": { + "facing": "north" + } + }, + { + "id": 8947, + "properties": { + "facing": "south" + } + }, + { + "id": 8948, + "properties": { + "facing": "west" + } + }, + { + "id": 8949, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:green_wool": { + "states": [ + { + "default": true, + "id": 1651 + } + ] + }, + "minecraft:grindstone": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 16026, + "properties": { + "face": "floor", + "facing": "north" + } + }, + { + "id": 16027, + "properties": { + "face": "floor", + "facing": "south" + } + }, + { + "id": 16028, + "properties": { + "face": "floor", + "facing": "west" + } + }, + { + "id": 16029, + "properties": { + "face": "floor", + "facing": "east" + } + }, + { + "default": true, + "id": 16030, + "properties": { + "face": "wall", + "facing": "north" + } + }, + { + "id": 16031, + "properties": { + "face": "wall", + "facing": "south" + } + }, + { + "id": 16032, + "properties": { + "face": "wall", + "facing": "west" + } + }, + { + "id": 16033, + "properties": { + "face": "wall", + "facing": "east" + } + }, + { + "id": 16034, + "properties": { + "face": "ceiling", + "facing": "north" + } + }, + { + "id": 16035, + "properties": { + "face": "ceiling", + "facing": "south" + } + }, + { + "id": 16036, + "properties": { + "face": "ceiling", + "facing": "west" + } + }, + { + "id": 16037, + "properties": { + "face": "ceiling", + "facing": "east" + } + } + ] + }, + "minecraft:hanging_roots": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19774, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19775, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:hay_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 8604, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 8605, + "properties": { + "axis": "y" + } + }, + { + "id": 8606, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:heavy_weighted_pressure_plate": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 7279, + "properties": { + "power": "0" + } + }, + { + "id": 7280, + "properties": { + "power": "1" + } + }, + { + "id": 7281, + "properties": { + "power": "2" + } + }, + { + "id": 7282, + "properties": { + "power": "3" + } + }, + { + "id": 7283, + "properties": { + "power": "4" + } + }, + { + "id": 7284, + "properties": { + "power": "5" + } + }, + { + "id": 7285, + "properties": { + "power": "6" + } + }, + { + "id": 7286, + "properties": { + "power": "7" + } + }, + { + "id": 7287, + "properties": { + "power": "8" + } + }, + { + "id": 7288, + "properties": { + "power": "9" + } + }, + { + "id": 7289, + "properties": { + "power": "10" + } + }, + { + "id": 7290, + "properties": { + "power": "11" + } + }, + { + "id": 7291, + "properties": { + "power": "12" + } + }, + { + "id": 7292, + "properties": { + "power": "13" + } + }, + { + "id": 7293, + "properties": { + "power": "14" + } + }, + { + "id": 7294, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:honey_block": { + "states": [ + { + "default": true, + "id": 17033 + } + ] + }, + "minecraft:honeycomb_block": { + "states": [ + { + "default": true, + "id": 17034 + } + ] + }, + "minecraft:hopper": { + "properties": { + "enabled": [ + "true", + "false" + ], + "facing": [ + "down", + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7345, + "properties": { + "enabled": "true", + "facing": "down" + } + }, + { + "id": 7346, + "properties": { + "enabled": "true", + "facing": "north" + } + }, + { + "id": 7347, + "properties": { + "enabled": "true", + "facing": "south" + } + }, + { + "id": 7348, + "properties": { + "enabled": "true", + "facing": "west" + } + }, + { + "id": 7349, + "properties": { + "enabled": "true", + "facing": "east" + } + }, + { + "id": 7350, + "properties": { + "enabled": "false", + "facing": "down" + } + }, + { + "id": 7351, + "properties": { + "enabled": "false", + "facing": "north" + } + }, + { + "id": 7352, + "properties": { + "enabled": "false", + "facing": "south" + } + }, + { + "id": 7353, + "properties": { + "enabled": "false", + "facing": "west" + } + }, + { + "id": 7354, + "properties": { + "enabled": "false", + "facing": "east" + } + } + ] + }, + "minecraft:horn_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10419, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10420, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:horn_coral_block": { + "states": [ + { + "default": true, + "id": 10400 + } + ] + }, + "minecraft:horn_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10439, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10440, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:horn_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10513, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 10514, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 10515, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 10516, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 10517, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 10518, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 10519, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 10520, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:ice": { + "states": [ + { + "default": true, + "id": 4238 + } + ] + }, + "minecraft:infested_chiseled_stone_bricks": { + "states": [ + { + "default": true, + "id": 4879 + } + ] + }, + "minecraft:infested_cobblestone": { + "states": [ + { + "default": true, + "id": 4875 + } + ] + }, + "minecraft:infested_cracked_stone_bricks": { + "states": [ + { + "default": true, + "id": 4878 + } + ] + }, + "minecraft:infested_deepslate": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 21428, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 21429, + "properties": { + "axis": "y" + } + }, + { + "id": 21430, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:infested_mossy_stone_bricks": { + "states": [ + { + "default": true, + "id": 4877 + } + ] + }, + "minecraft:infested_stone": { + "states": [ + { + "default": true, + "id": 4874 + } + ] + }, + "minecraft:infested_stone_bricks": { + "states": [ + { + "default": true, + "id": 4876 + } + ] + }, + "minecraft:iron_bars": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5072, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5073, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5074, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5075, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5076, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5077, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5078, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5079, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5080, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5081, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5082, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5083, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5084, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5085, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5086, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5087, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5088, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5089, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5090, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5091, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5092, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5093, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5094, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5095, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5096, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5097, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5098, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5099, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5100, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5101, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5102, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 5103, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:iron_block": { + "states": [ + { + "default": true, + "id": 1682 + } + ] + }, + "minecraft:iron_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4114, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4115, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4116, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4117, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4118, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4119, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4120, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4121, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4122, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4123, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4124, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 4125, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4126, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4127, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4128, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4129, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4130, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4131, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4132, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4133, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4134, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4135, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4136, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4137, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4138, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4139, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4140, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4141, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4142, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4143, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4144, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4145, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4146, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4147, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4148, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4149, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4150, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4151, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4152, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4153, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4154, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4155, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4156, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4157, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4158, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4159, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4160, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4161, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4162, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4163, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4164, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4165, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4166, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4167, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4168, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4169, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4170, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4171, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4172, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4173, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4174, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4175, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4176, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4177, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:iron_ore": { + "states": [ + { + "default": true, + "id": 112 + } + ] + }, + "minecraft:iron_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8278, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8279, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8280, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8281, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8282, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8283, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8284, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8285, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8286, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8287, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8288, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8289, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8290, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8291, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8292, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8293, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8294, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8295, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8296, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8297, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8298, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8299, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8300, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8301, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8302, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8303, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8304, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8305, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8306, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8307, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8308, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8309, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8310, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8311, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8312, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8313, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8314, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8315, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8316, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8317, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8318, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8319, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8320, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8321, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8322, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8323, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8324, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8325, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8326, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8327, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8328, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8329, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8330, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8331, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8332, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8333, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8334, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8335, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8336, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8337, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 8338, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 8339, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 8340, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 8341, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jack_o_lantern": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 4329, + "properties": { + "facing": "north" + } + }, + { + "id": 4330, + "properties": { + "facing": "south" + } + }, + { + "id": 4331, + "properties": { + "facing": "west" + } + }, + { + "id": 4332, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:jigsaw": { + "properties": { + "orientation": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ] + }, + "states": [ + { + "id": 16948, + "properties": { + "orientation": "down_east" + } + }, + { + "id": 16949, + "properties": { + "orientation": "down_north" + } + }, + { + "id": 16950, + "properties": { + "orientation": "down_south" + } + }, + { + "id": 16951, + "properties": { + "orientation": "down_west" + } + }, + { + "id": 16952, + "properties": { + "orientation": "up_east" + } + }, + { + "id": 16953, + "properties": { + "orientation": "up_north" + } + }, + { + "id": 16954, + "properties": { + "orientation": "up_south" + } + }, + { + "id": 16955, + "properties": { + "orientation": "up_west" + } + }, + { + "id": 16956, + "properties": { + "orientation": "west_up" + } + }, + { + "id": 16957, + "properties": { + "orientation": "east_up" + } + }, + { + "default": true, + "id": 16958, + "properties": { + "orientation": "north_up" + } + }, + { + "id": 16959, + "properties": { + "orientation": "south_up" + } + } + ] + }, + "minecraft:jukebox": { + "properties": { + "has_record": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4273, + "properties": { + "has_record": "true" + } + }, + { + "default": true, + "id": 4274, + "properties": { + "has_record": "false" + } + } + ] + }, + "minecraft:jungle_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7011, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 7012, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7013, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7014, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7015, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7016, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7017, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7018, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 7019, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 7020, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7021, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7022, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7023, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7024, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7025, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7026, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 7027, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 7028, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7029, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7030, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7031, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7032, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7033, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7034, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9683, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9684, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9685, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9686, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9687, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9688, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9689, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9690, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9691, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9692, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9693, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 9694, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9695, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9696, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9697, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9698, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9699, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9700, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9701, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9702, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9703, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9704, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9705, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9706, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9707, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9708, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9709, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9710, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9711, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9712, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9713, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9714, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9715, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9716, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9717, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9718, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9719, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9720, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9721, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9722, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9723, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9724, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9725, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9726, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9727, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9728, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9729, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9730, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9731, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9732, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9733, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9734, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9735, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9736, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9737, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9738, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9739, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9740, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9741, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9742, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9743, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9744, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9745, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9746, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9427, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9428, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9429, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9430, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9431, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9432, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9433, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9434, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9435, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9436, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9437, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9438, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9439, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9440, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9441, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9442, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9443, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9444, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9445, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9446, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9447, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9448, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9449, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9450, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9451, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9452, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9453, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9454, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9455, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9456, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9457, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9458, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:jungle_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9235, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9236, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9237, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9238, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9239, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9240, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9241, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 9242, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9243, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9244, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9245, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9246, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9247, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9248, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9249, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9250, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9251, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9252, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9253, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9254, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9255, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9256, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9257, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9258, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9259, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9260, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9261, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9262, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9263, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9264, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9265, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9266, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 290, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 291, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 292, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 293, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 294, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 295, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 296, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 297, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 298, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 299, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 300, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 301, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 302, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 303, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 304, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 305, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 306, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 307, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 308, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 309, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 310, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 311, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 312, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 313, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 314, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 315, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 316, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 317, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 126, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 127, + "properties": { + "axis": "y" + } + }, + { + "id": 128, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:jungle_planks": { + "states": [ + { + "default": true, + "id": 18 + } + ] + }, + "minecraft:jungle_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4184, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 4185, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:jungle_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 28, + "properties": { + "stage": "0" + } + }, + { + "id": 29, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:jungle_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3764, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3765, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 3766, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 3767, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 3768, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 3769, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 3770, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 3771, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 3772, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 3773, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 3774, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 3775, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 3776, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 3777, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 3778, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 3779, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 3780, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 3781, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 3782, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 3783, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 3784, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 3785, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 3786, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 3787, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 3788, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 3789, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 3790, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 3791, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 3792, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 3793, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 3794, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 3795, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9059, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9060, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9061, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9062, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9063, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9064, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6156, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6157, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6158, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6159, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6160, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6161, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6162, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6163, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6164, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6165, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6166, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6167, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6168, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6169, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6170, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6171, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6172, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6173, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6174, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6175, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6176, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6177, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6178, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6179, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6180, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6181, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6182, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6183, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6184, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6185, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6186, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6187, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6188, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6189, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6190, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6191, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6192, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6193, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6194, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6195, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6196, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6197, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6198, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6199, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6200, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6201, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6202, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6203, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6204, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6205, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6206, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6207, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6208, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6209, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6210, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6211, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6212, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6213, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6214, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6215, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6216, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6217, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6218, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6219, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6220, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6221, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6222, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6223, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6224, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6225, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6226, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6227, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6228, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6229, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6230, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6231, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6232, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6233, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6234, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6235, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4612, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4613, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4614, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4615, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4616, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4617, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4618, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4619, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4620, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4621, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4622, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4623, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4624, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4625, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4626, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4627, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4628, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4629, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4630, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4631, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4632, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4633, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4634, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4635, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4636, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4637, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4638, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4639, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4640, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4641, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4642, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4643, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4644, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4645, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4646, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4647, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4648, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4649, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4650, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4651, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4652, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4653, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4654, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4655, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4656, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4657, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4658, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4659, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4660, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4661, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4662, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4663, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4664, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4665, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4666, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4667, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4668, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4669, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4670, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4671, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4672, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4673, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4674, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4675, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4064, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4065, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4066, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4067, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4068, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4069, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4070, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4071, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 173, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 174, + "properties": { + "axis": "y" + } + }, + { + "id": 175, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:kelp": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + }, + "states": [ + { + "default": true, + "id": 10351, + "properties": { + "age": "0" + } + }, + { + "id": 10352, + "properties": { + "age": "1" + } + }, + { + "id": 10353, + "properties": { + "age": "2" + } + }, + { + "id": 10354, + "properties": { + "age": "3" + } + }, + { + "id": 10355, + "properties": { + "age": "4" + } + }, + { + "id": 10356, + "properties": { + "age": "5" + } + }, + { + "id": 10357, + "properties": { + "age": "6" + } + }, + { + "id": 10358, + "properties": { + "age": "7" + } + }, + { + "id": 10359, + "properties": { + "age": "8" + } + }, + { + "id": 10360, + "properties": { + "age": "9" + } + }, + { + "id": 10361, + "properties": { + "age": "10" + } + }, + { + "id": 10362, + "properties": { + "age": "11" + } + }, + { + "id": 10363, + "properties": { + "age": "12" + } + }, + { + "id": 10364, + "properties": { + "age": "13" + } + }, + { + "id": 10365, + "properties": { + "age": "14" + } + }, + { + "id": 10366, + "properties": { + "age": "15" + } + }, + { + "id": 10367, + "properties": { + "age": "16" + } + }, + { + "id": 10368, + "properties": { + "age": "17" + } + }, + { + "id": 10369, + "properties": { + "age": "18" + } + }, + { + "id": 10370, + "properties": { + "age": "19" + } + }, + { + "id": 10371, + "properties": { + "age": "20" + } + }, + { + "id": 10372, + "properties": { + "age": "21" + } + }, + { + "id": 10373, + "properties": { + "age": "22" + } + }, + { + "id": 10374, + "properties": { + "age": "23" + } + }, + { + "id": 10375, + "properties": { + "age": "24" + } + }, + { + "id": 10376, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:kelp_plant": { + "states": [ + { + "default": true, + "id": 10377 + } + ] + }, + "minecraft:ladder": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3924, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3925, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 3926, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 3927, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 3928, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 3929, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 3930, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 3931, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lantern": { + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16091, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 16092, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 16093, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16094, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lapis_block": { + "states": [ + { + "default": true, + "id": 463 + } + ] + }, + "minecraft:lapis_ore": { + "states": [ + { + "default": true, + "id": 461 + } + ] + }, + "minecraft:large_amethyst_bud": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18633, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 18634, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 18635, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 18636, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 18637, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 18638, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 18639, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 18640, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 18641, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18642, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 18643, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 18644, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:large_fern": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 8636, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 8637, + "properties": { + "half": "lower" + } } ] }, @@ -471,1897 +90382,2774 @@ }, "states": [ { + "default": true, + "id": 91, "properties": { "level": "0" - }, - "id": 50, - "default": true + } }, { + "id": 92, "properties": { "level": "1" - }, - "id": 51 + } }, { + "id": 93, "properties": { "level": "2" - }, - "id": 52 + } }, { + "id": 94, "properties": { "level": "3" - }, - "id": 53 + } }, { + "id": 95, "properties": { "level": "4" - }, - "id": 54 + } }, { + "id": 96, "properties": { "level": "5" - }, - "id": 55 + } }, { + "id": 97, "properties": { "level": "6" - }, - "id": 56 + } }, { + "id": 98, "properties": { "level": "7" - }, - "id": 57 + } }, { + "id": 99, "properties": { "level": "8" - }, - "id": 58 + } }, { + "id": 100, "properties": { "level": "9" - }, - "id": 59 + } }, { + "id": 101, "properties": { "level": "10" - }, - "id": 60 + } }, { + "id": 102, "properties": { "level": "11" - }, - "id": 61 + } }, { + "id": 103, "properties": { "level": "12" - }, - "id": 62 + } }, { + "id": 104, "properties": { "level": "13" - }, - "id": 63 + } }, { + "id": 105, "properties": { "level": "14" - }, - "id": 64 + } }, { + "id": 106, "properties": { "level": "15" - }, - "id": 65 + } } ] }, - "minecraft:sand": { + "minecraft:lava_cauldron": { "states": [ { - "id": 66, - "default": true + "default": true, + "id": 5732 } ] }, - "minecraft:red_sand": { - "states": [ - { - "id": 67, - "default": true - } - ] - }, - "minecraft:gravel": { - "states": [ - { - "id": 68, - "default": true - } - ] - }, - "minecraft:gold_ore": { - "states": [ - { - "id": 69, - "default": true - } - ] - }, - "minecraft:deepslate_gold_ore": { - "states": [ - { - "id": 70, - "default": true - } - ] - }, - "minecraft:iron_ore": { - "states": [ - { - "id": 71, - "default": true - } - ] - }, - "minecraft:deepslate_iron_ore": { - "states": [ - { - "id": 72, - "default": true - } - ] - }, - "minecraft:coal_ore": { - "states": [ - { - "id": 73, - "default": true - } - ] - }, - "minecraft:deepslate_coal_ore": { - "states": [ - { - "id": 74, - "default": true - } - ] - }, - "minecraft:nether_gold_ore": { - "states": [ - { - "id": 75, - "default": true - } - ] - }, - "minecraft:oak_log": { + "minecraft:lectern": { "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 76 - }, - { - "properties": { - "axis": "y" - }, - "id": 77, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 78 - } - ] - }, - "minecraft:spruce_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 79 - }, - { - "properties": { - "axis": "y" - }, - "id": 80, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 81 - } - ] - }, - "minecraft:birch_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 82 - }, - { - "properties": { - "axis": "y" - }, - "id": 83, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 84 - } - ] - }, - "minecraft:jungle_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 85 - }, - { - "properties": { - "axis": "y" - }, - "id": 86, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 87 - } - ] - }, - "minecraft:acacia_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 88 - }, - { - "properties": { - "axis": "y" - }, - "id": 89, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 90 - } - ] - }, - "minecraft:dark_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 91 - }, - { - "properties": { - "axis": "y" - }, - "id": 92, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 93 - } - ] - }, - "minecraft:stripped_spruce_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 94 - }, - { - "properties": { - "axis": "y" - }, - "id": 95, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 96 - } - ] - }, - "minecraft:stripped_birch_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 97 - }, - { - "properties": { - "axis": "y" - }, - "id": 98, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 99 - } - ] - }, - "minecraft:stripped_jungle_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 100 - }, - { - "properties": { - "axis": "y" - }, - "id": 101, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 102 - } - ] - }, - "minecraft:stripped_acacia_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 103 - }, - { - "properties": { - "axis": "y" - }, - "id": 104, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 105 - } - ] - }, - "minecraft:stripped_dark_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 106 - }, - { - "properties": { - "axis": "y" - }, - "id": 107, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 108 - } - ] - }, - "minecraft:stripped_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 109 - }, - { - "properties": { - "axis": "y" - }, - "id": 110, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 111 - } - ] - }, - "minecraft:oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 112 - }, - { - "properties": { - "axis": "y" - }, - "id": 113, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 114 - } - ] - }, - "minecraft:spruce_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 115 - }, - { - "properties": { - "axis": "y" - }, - "id": 116, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 117 - } - ] - }, - "minecraft:birch_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 118 - }, - { - "properties": { - "axis": "y" - }, - "id": 119, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 120 - } - ] - }, - "minecraft:jungle_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 121 - }, - { - "properties": { - "axis": "y" - }, - "id": 122, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 123 - } - ] - }, - "minecraft:acacia_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 124 - }, - { - "properties": { - "axis": "y" - }, - "id": 125, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 126 - } - ] - }, - "minecraft:dark_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 127 - }, - { - "properties": { - "axis": "y" - }, - "id": 128, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 129 - } - ] - }, - "minecraft:stripped_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 130 - }, - { - "properties": { - "axis": "y" - }, - "id": 131, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 132 - } - ] - }, - "minecraft:stripped_spruce_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 133 - }, - { - "properties": { - "axis": "y" - }, - "id": 134, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 135 - } - ] - }, - "minecraft:stripped_birch_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 136 - }, - { - "properties": { - "axis": "y" - }, - "id": 137, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 138 - } - ] - }, - "minecraft:stripped_jungle_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 139 - }, - { - "properties": { - "axis": "y" - }, - "id": 140, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 141 - } - ] - }, - "minecraft:stripped_acacia_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 142 - }, - { - "properties": { - "axis": "y" - }, - "id": 143, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 144 - } - ] - }, - "minecraft:stripped_dark_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 145 - }, - { - "properties": { - "axis": "y" - }, - "id": 146, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 147 - } - ] - }, - "minecraft:oak_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" + "facing": [ + "north", + "south", + "west", + "east" ], - "persistent": [ + "has_book": [ + "true", + "false" + ], + "powered": [ "true", "false" ] }, "states": [ { + "id": 16038, "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 148 + "facing": "north", + "has_book": "true", + "powered": "true" + } }, { + "id": 16039, "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 149 + "facing": "north", + "has_book": "true", + "powered": "false" + } }, { + "id": 16040, "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 150 + "facing": "north", + "has_book": "false", + "powered": "true" + } }, { + "default": true, + "id": 16041, "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 151 + "facing": "north", + "has_book": "false", + "powered": "false" + } }, { + "id": 16042, "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 152 + "facing": "south", + "has_book": "true", + "powered": "true" + } }, { + "id": 16043, "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 153 + "facing": "south", + "has_book": "true", + "powered": "false" + } }, { + "id": 16044, "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 154 + "facing": "south", + "has_book": "false", + "powered": "true" + } }, { + "id": 16045, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 155 + "facing": "south", + "has_book": "false", + "powered": "false" + } }, { + "id": 16046, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 156 + "facing": "west", + "has_book": "true", + "powered": "true" + } }, { + "id": 16047, "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 157 + "facing": "west", + "has_book": "true", + "powered": "false" + } }, { + "id": 16048, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 158 + "facing": "west", + "has_book": "false", + "powered": "true" + } }, { + "id": 16049, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 159 + "facing": "west", + "has_book": "false", + "powered": "false" + } }, { + "id": 16050, "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 160 + "facing": "east", + "has_book": "true", + "powered": "true" + } }, { + "id": 16051, "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 161, - "default": true + "facing": "east", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 16052, + "properties": { + "facing": "east", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 16053, + "properties": { + "facing": "east", + "has_book": "false", + "powered": "false" + } } ] }, - "minecraft:spruce_leaves": { + "minecraft:lever": { "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" + "face": [ + "floor", + "wall", + "ceiling" ], - "persistent": [ + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ "true", "false" ] }, "states": [ { + "id": 4088, "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 162 + "face": "floor", + "facing": "north", + "powered": "true" + } }, { + "id": 4089, "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 163 + "face": "floor", + "facing": "north", + "powered": "false" + } }, { + "id": 4090, "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 164 + "face": "floor", + "facing": "south", + "powered": "true" + } }, { + "id": 4091, "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 165 + "face": "floor", + "facing": "south", + "powered": "false" + } }, { + "id": 4092, "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 166 + "face": "floor", + "facing": "west", + "powered": "true" + } }, { + "id": 4093, "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 167 + "face": "floor", + "facing": "west", + "powered": "false" + } }, { + "id": 4094, "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 168 + "face": "floor", + "facing": "east", + "powered": "true" + } }, { + "id": 4095, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 169 + "face": "floor", + "facing": "east", + "powered": "false" + } }, { + "id": 4096, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 170 + "face": "wall", + "facing": "north", + "powered": "true" + } }, { + "default": true, + "id": 4097, "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 171 + "face": "wall", + "facing": "north", + "powered": "false" + } }, { + "id": 4098, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 172 + "face": "wall", + "facing": "south", + "powered": "true" + } }, { + "id": 4099, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 173 + "face": "wall", + "facing": "south", + "powered": "false" + } }, { + "id": 4100, "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 174 + "face": "wall", + "facing": "west", + "powered": "true" + } }, { + "id": 4101, "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 175, - "default": true + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 4102, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 4103, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 4104, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 4105, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 4106, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 4107, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 4108, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 4109, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 4110, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 4111, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } } ] }, - "minecraft:birch_leaves": { + "minecraft:light": { "properties": { - "distance": [ + "level": [ + "0", "1", "2", "3", "4", "5", "6", - "7" + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ], - "persistent": [ + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 8246, "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 176 + "level": "0", + "waterlogged": "true" + } }, { + "id": 8247, "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 177 + "level": "0", + "waterlogged": "false" + } }, { + "id": 8248, "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 178 + "level": "1", + "waterlogged": "true" + } }, { + "id": 8249, "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 179 + "level": "1", + "waterlogged": "false" + } }, { + "id": 8250, "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 180 + "level": "2", + "waterlogged": "true" + } }, { + "id": 8251, "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 181 + "level": "2", + "waterlogged": "false" + } }, { + "id": 8252, "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 182 + "level": "3", + "waterlogged": "true" + } }, { + "id": 8253, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 183 + "level": "3", + "waterlogged": "false" + } }, { + "id": 8254, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 184 + "level": "4", + "waterlogged": "true" + } }, { + "id": 8255, "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 185 + "level": "4", + "waterlogged": "false" + } }, { + "id": 8256, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 186 + "level": "5", + "waterlogged": "true" + } }, { + "id": 8257, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 187 + "level": "5", + "waterlogged": "false" + } }, { + "id": 8258, "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 188 + "level": "6", + "waterlogged": "true" + } }, { + "id": 8259, "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 189, - "default": true + "level": "6", + "waterlogged": "false" + } + }, + { + "id": 8260, + "properties": { + "level": "7", + "waterlogged": "true" + } + }, + { + "id": 8261, + "properties": { + "level": "7", + "waterlogged": "false" + } + }, + { + "id": 8262, + "properties": { + "level": "8", + "waterlogged": "true" + } + }, + { + "id": 8263, + "properties": { + "level": "8", + "waterlogged": "false" + } + }, + { + "id": 8264, + "properties": { + "level": "9", + "waterlogged": "true" + } + }, + { + "id": 8265, + "properties": { + "level": "9", + "waterlogged": "false" + } + }, + { + "id": 8266, + "properties": { + "level": "10", + "waterlogged": "true" + } + }, + { + "id": 8267, + "properties": { + "level": "10", + "waterlogged": "false" + } + }, + { + "id": 8268, + "properties": { + "level": "11", + "waterlogged": "true" + } + }, + { + "id": 8269, + "properties": { + "level": "11", + "waterlogged": "false" + } + }, + { + "id": 8270, + "properties": { + "level": "12", + "waterlogged": "true" + } + }, + { + "id": 8271, + "properties": { + "level": "12", + "waterlogged": "false" + } + }, + { + "id": 8272, + "properties": { + "level": "13", + "waterlogged": "true" + } + }, + { + "id": 8273, + "properties": { + "level": "13", + "waterlogged": "false" + } + }, + { + "id": 8274, + "properties": { + "level": "14", + "waterlogged": "true" + } + }, + { + "id": 8275, + "properties": { + "level": "14", + "waterlogged": "false" + } + }, + { + "id": 8276, + "properties": { + "level": "15", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8277, + "properties": { + "level": "15", + "waterlogged": "false" + } } ] }, - "minecraft:jungle_leaves": { + "minecraft:light_blue_banner": { "properties": { - "distance": [ + "rotation": [ + "0", "1", "2", "3", "4", "5", "6", - "7" + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8686, + "properties": { + "rotation": "0" + } + }, + { + "id": 8687, + "properties": { + "rotation": "1" + } + }, + { + "id": 8688, + "properties": { + "rotation": "2" + } + }, + { + "id": 8689, + "properties": { + "rotation": "3" + } + }, + { + "id": 8690, + "properties": { + "rotation": "4" + } + }, + { + "id": 8691, + "properties": { + "rotation": "5" + } + }, + { + "id": 8692, + "properties": { + "rotation": "6" + } + }, + { + "id": 8693, + "properties": { + "rotation": "7" + } + }, + { + "id": 8694, + "properties": { + "rotation": "8" + } + }, + { + "id": 8695, + "properties": { + "rotation": "9" + } + }, + { + "id": 8696, + "properties": { + "rotation": "10" + } + }, + { + "id": 8697, + "properties": { + "rotation": "11" + } + }, + { + "id": 8698, + "properties": { + "rotation": "12" + } + }, + { + "id": 8699, + "properties": { + "rotation": "13" + } + }, + { + "id": 8700, + "properties": { + "rotation": "14" + } + }, + { + "id": 8701, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:light_blue_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" ], - "persistent": [ + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1327, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1328, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1329, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1330, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1331, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1332, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1333, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1334, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1335, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1336, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1337, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1338, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1339, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1340, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1341, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1342, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_blue_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 18377, "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 190 + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18378, "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 191 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18379, "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 192 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18380, "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 193 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18381, "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 194 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18382, "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 195 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18383, "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 196 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18384, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 197 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18385, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 198 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18386, "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 199 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18387, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 200 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18388, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 201 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18389, "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 202 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18390, "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 203, - "default": true + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18391, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18392, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } } ] }, - "minecraft:acacia_leaves": { + "minecraft:light_blue_candle_cake": { "properties": { - "distance": [ + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18593, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18594, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:light_blue_carpet": { + "states": [ + { + "default": true, + "id": 8610 + } + ] + }, + "minecraft:light_blue_concrete": { + "states": [ + { + "default": true, + "id": 10322 + } + ] + }, + "minecraft:light_blue_concrete_powder": { + "states": [ + { + "default": true, + "id": 10338 + } + ] + }, + "minecraft:light_blue_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10267, + "properties": { + "facing": "north" + } + }, + { + "id": 10268, + "properties": { + "facing": "south" + } + }, + { + "id": 10269, + "properties": { + "facing": "west" + } + }, + { + "id": 10270, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_blue_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10177, + "properties": { + "facing": "north" + } + }, + { + "id": 10178, + "properties": { + "facing": "east" + } + }, + { + "id": 10179, + "properties": { + "facing": "south" + } + }, + { + "id": 10180, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10181, + "properties": { + "facing": "up" + } + }, + { + "id": 10182, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:light_blue_stained_glass": { + "states": [ + { + "default": true, + "id": 4407 + } + ] + }, + "minecraft:light_blue_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7588, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7589, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7590, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7591, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7592, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7593, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7594, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7595, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7596, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7597, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7598, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7599, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7600, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7601, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7602, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7603, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7604, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7605, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7606, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7607, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7608, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7609, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7610, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7611, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7612, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7613, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7614, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7615, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7616, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7617, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7618, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7619, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:light_blue_terracotta": { + "states": [ + { + "default": true, + "id": 7479 + } + ] + }, + "minecraft:light_blue_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8906, + "properties": { + "facing": "north" + } + }, + { + "id": 8907, + "properties": { + "facing": "south" + } + }, + { + "id": 8908, + "properties": { + "facing": "west" + } + }, + { + "id": 8909, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_blue_wool": { + "states": [ + { + "default": true, + "id": 1641 + } + ] + }, + "minecraft:light_gray_banner": { + "properties": { + "rotation": [ + "0", "1", "2", "3", "4", "5", "6", - "7" + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8766, + "properties": { + "rotation": "0" + } + }, + { + "id": 8767, + "properties": { + "rotation": "1" + } + }, + { + "id": 8768, + "properties": { + "rotation": "2" + } + }, + { + "id": 8769, + "properties": { + "rotation": "3" + } + }, + { + "id": 8770, + "properties": { + "rotation": "4" + } + }, + { + "id": 8771, + "properties": { + "rotation": "5" + } + }, + { + "id": 8772, + "properties": { + "rotation": "6" + } + }, + { + "id": 8773, + "properties": { + "rotation": "7" + } + }, + { + "id": 8774, + "properties": { + "rotation": "8" + } + }, + { + "id": 8775, + "properties": { + "rotation": "9" + } + }, + { + "id": 8776, + "properties": { + "rotation": "10" + } + }, + { + "id": 8777, + "properties": { + "rotation": "11" + } + }, + { + "id": 8778, + "properties": { + "rotation": "12" + } + }, + { + "id": 8779, + "properties": { + "rotation": "13" + } + }, + { + "id": 8780, + "properties": { + "rotation": "14" + } + }, + { + "id": 8781, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:light_gray_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" ], - "persistent": [ + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1407, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1408, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1409, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1410, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1411, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1412, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1413, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1414, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1415, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1416, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1417, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1418, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1419, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1420, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1421, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1422, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_gray_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 18457, "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 204 + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18458, "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 205 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18459, "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 206 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18460, "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 207 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18461, "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 208 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18462, "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 209 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18463, "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 210 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18464, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 211 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18465, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 212 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18466, "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 213 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18467, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 214 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18468, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 215 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18469, "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 216 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18470, "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 217, - "default": true + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18471, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18472, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } } ] }, - "minecraft:dark_oak_leaves": { + "minecraft:light_gray_candle_cake": { "properties": { - "distance": [ + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18603, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18604, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:light_gray_carpet": { + "states": [ + { + "default": true, + "id": 8615 + } + ] + }, + "minecraft:light_gray_concrete": { + "states": [ + { + "default": true, + "id": 10327 + } + ] + }, + "minecraft:light_gray_concrete_powder": { + "states": [ + { + "default": true, + "id": 10343 + } + ] + }, + "minecraft:light_gray_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10287, + "properties": { + "facing": "north" + } + }, + { + "id": 10288, + "properties": { + "facing": "south" + } + }, + { + "id": 10289, + "properties": { + "facing": "west" + } + }, + { + "id": 10290, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10207, + "properties": { + "facing": "north" + } + }, + { + "id": 10208, + "properties": { + "facing": "east" + } + }, + { + "id": 10209, + "properties": { + "facing": "south" + } + }, + { + "id": 10210, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10211, + "properties": { + "facing": "up" + } + }, + { + "id": 10212, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:light_gray_stained_glass": { + "states": [ + { + "default": true, + "id": 4412 + } + ] + }, + "minecraft:light_gray_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7748, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7749, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7750, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7751, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7752, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7753, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7754, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7755, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7756, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7757, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7758, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7759, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7760, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7761, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7762, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7763, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7764, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7765, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7766, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7767, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7768, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7769, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7770, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7771, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7772, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7773, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7774, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7775, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7776, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7777, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7778, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7779, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:light_gray_terracotta": { + "states": [ + { + "default": true, + "id": 7484 + } + ] + }, + "minecraft:light_gray_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8926, + "properties": { + "facing": "north" + } + }, + { + "id": 8927, + "properties": { + "facing": "south" + } + }, + { + "id": 8928, + "properties": { + "facing": "west" + } + }, + { + "id": 8929, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_wool": { + "states": [ + { + "default": true, + "id": 1646 + } + ] + }, + "minecraft:light_weighted_pressure_plate": { + "properties": { + "power": [ + "0", "1", "2", "3", "4", "5", "6", - "7" - ], - "persistent": [ - "true", - "false" + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] }, "states": [ { + "default": true, + "id": 7263, "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 218 + "power": "0" + } }, { + "id": 7264, "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 219 + "power": "1" + } }, { + "id": 7265, "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 220 + "power": "2" + } }, { + "id": 7266, "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 221 + "power": "3" + } }, { + "id": 7267, "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 222 + "power": "4" + } }, { + "id": 7268, "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 223 + "power": "5" + } }, { + "id": 7269, "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 224 + "power": "6" + } }, { + "id": 7270, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 225 + "power": "7" + } }, { + "id": 7271, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 226 + "power": "8" + } }, { + "id": 7272, "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 227 + "power": "9" + } }, { + "id": 7273, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 228 + "power": "10" + } }, { + "id": 7274, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 229 + "power": "11" + } }, { + "id": 7275, "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 230 + "power": "12" + } }, { + "id": 7276, "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 231, - "default": true + "power": "13" + } + }, + { + "id": 7277, + "properties": { + "power": "14" + } + }, + { + "id": 7278, + "properties": { + "power": "15" + } } ] }, - "minecraft:azalea_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 232 - }, - { - "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 233 - }, - { - "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 234 - }, - { - "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 235 - }, - { - "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 236 - }, - { - "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 237 - }, - { - "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 238 - }, - { - "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 239 - }, - { - "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 240 - }, - { - "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 241 - }, - { - "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 242 - }, - { - "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 243 - }, - { - "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 244 - }, - { - "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 245, - "default": true - } - ] - }, - "minecraft:flowering_azalea_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 246 - }, - { - "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 247 - }, - { - "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 248 - }, - { - "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 249 - }, - { - "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 250 - }, - { - "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 251 - }, - { - "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 252 - }, - { - "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 253 - }, - { - "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 254 - }, - { - "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 255 - }, - { - "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 256 - }, - { - "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 257 - }, - { - "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 258 - }, - { - "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 259, - "default": true - } - ] - }, - "minecraft:sponge": { - "states": [ - { - "id": 260, - "default": true - } - ] - }, - "minecraft:wet_sponge": { - "states": [ - { - "id": 261, - "default": true - } - ] - }, - "minecraft:glass": { - "states": [ - { - "id": 262, - "default": true - } - ] - }, - "minecraft:lapis_ore": { - "states": [ - { - "id": 263, - "default": true - } - ] - }, - "minecraft:deepslate_lapis_ore": { - "states": [ - { - "id": 264, - "default": true - } - ] - }, - "minecraft:lapis_block": { - "states": [ - { - "id": 265, - "default": true - } - ] - }, - "minecraft:dispenser": { + "minecraft:lightning_rod": { "properties": { "facing": [ "north", @@ -2371,120 +93159,25514 @@ "up", "down" ], - "triggered": [ + "powered": [ + "true", + "false" + ], + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 19614, "properties": { "facing": "north", - "triggered": "true" - }, - "id": 266 + "powered": "true", + "waterlogged": "true" + } }, { + "id": 19615, "properties": { "facing": "north", - "triggered": "false" - }, - "id": 267, - "default": true + "powered": "true", + "waterlogged": "false" + } }, { + "id": 19616, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19617, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19618, "properties": { "facing": "east", - "triggered": "true" - }, - "id": 268 + "powered": "true", + "waterlogged": "true" + } }, { + "id": 19619, "properties": { "facing": "east", - "triggered": "false" - }, - "id": 269 + "powered": "true", + "waterlogged": "false" + } }, { + "id": 19620, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19621, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19622, "properties": { "facing": "south", - "triggered": "true" - }, - "id": 270 + "powered": "true", + "waterlogged": "true" + } }, { + "id": 19623, "properties": { "facing": "south", - "triggered": "false" - }, - "id": 271 + "powered": "true", + "waterlogged": "false" + } }, { + "id": 19624, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19625, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19626, "properties": { "facing": "west", - "triggered": "true" - }, - "id": 272 + "powered": "true", + "waterlogged": "true" + } }, { + "id": 19627, "properties": { "facing": "west", - "triggered": "false" - }, - "id": 273 + "powered": "true", + "waterlogged": "false" + } }, { + "id": 19628, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19629, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19630, "properties": { "facing": "up", - "triggered": "true" - }, - "id": 274 + "powered": "true", + "waterlogged": "true" + } }, { + "id": 19631, "properties": { "facing": "up", - "triggered": "false" - }, - "id": 275 + "powered": "true", + "waterlogged": "false" + } }, { + "id": 19632, "properties": { - "facing": "down", - "triggered": "true" - }, - "id": 276 + "facing": "up", + "powered": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 19633, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 19634, "properties": { "facing": "down", - "triggered": "false" - }, - "id": 277 + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 19635, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 19636, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 19637, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } } ] }, - "minecraft:sandstone": { + "minecraft:lilac": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, "states": [ { - "id": 278, - "default": true + "id": 8628, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 8629, + "properties": { + "half": "lower" + } } ] }, - "minecraft:chiseled_sandstone": { + "minecraft:lily_of_the_valley": { "states": [ { - "id": 279, - "default": true + "default": true, + "id": 1678 } ] }, - "minecraft:cut_sandstone": { + "minecraft:lily_pad": { "states": [ { - "id": 280, - "default": true + "default": true, + "id": 5601 + } + ] + }, + "minecraft:lime_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8718, + "properties": { + "rotation": "0" + } + }, + { + "id": 8719, + "properties": { + "rotation": "1" + } + }, + { + "id": 8720, + "properties": { + "rotation": "2" + } + }, + { + "id": 8721, + "properties": { + "rotation": "3" + } + }, + { + "id": 8722, + "properties": { + "rotation": "4" + } + }, + { + "id": 8723, + "properties": { + "rotation": "5" + } + }, + { + "id": 8724, + "properties": { + "rotation": "6" + } + }, + { + "id": 8725, + "properties": { + "rotation": "7" + } + }, + { + "id": 8726, + "properties": { + "rotation": "8" + } + }, + { + "id": 8727, + "properties": { + "rotation": "9" + } + }, + { + "id": 8728, + "properties": { + "rotation": "10" + } + }, + { + "id": 8729, + "properties": { + "rotation": "11" + } + }, + { + "id": 8730, + "properties": { + "rotation": "12" + } + }, + { + "id": 8731, + "properties": { + "rotation": "13" + } + }, + { + "id": 8732, + "properties": { + "rotation": "14" + } + }, + { + "id": 8733, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:lime_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1359, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1360, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1361, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1362, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1363, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1364, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1365, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1366, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1367, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1368, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1369, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1370, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1371, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1372, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1373, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1374, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:lime_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18409, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18410, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18411, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18412, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18413, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18414, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18415, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18416, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18417, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18418, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18419, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18420, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18421, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18422, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18423, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18424, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lime_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18597, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18598, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:lime_carpet": { + "states": [ + { + "default": true, + "id": 8612 + } + ] + }, + "minecraft:lime_concrete": { + "states": [ + { + "default": true, + "id": 10324 + } + ] + }, + "minecraft:lime_concrete_powder": { + "states": [ + { + "default": true, + "id": 10340 + } + ] + }, + "minecraft:lime_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10275, + "properties": { + "facing": "north" + } + }, + { + "id": 10276, + "properties": { + "facing": "south" + } + }, + { + "id": 10277, + "properties": { + "facing": "west" + } + }, + { + "id": 10278, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:lime_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10189, + "properties": { + "facing": "north" + } + }, + { + "id": 10190, + "properties": { + "facing": "east" + } + }, + { + "id": 10191, + "properties": { + "facing": "south" + } + }, + { + "id": 10192, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10193, + "properties": { + "facing": "up" + } + }, + { + "id": 10194, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:lime_stained_glass": { + "states": [ + { + "default": true, + "id": 4409 + } + ] + }, + "minecraft:lime_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7652, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7653, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7654, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7655, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7656, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7657, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7658, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7659, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7660, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7661, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7662, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7663, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7664, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7665, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7666, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7667, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7668, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7669, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7670, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7671, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7672, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7673, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7674, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7675, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7676, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7677, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7678, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7679, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7680, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7681, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7682, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7683, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:lime_terracotta": { + "states": [ + { + "default": true, + "id": 7481 + } + ] + }, + "minecraft:lime_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8914, + "properties": { + "facing": "north" + } + }, + { + "id": 8915, + "properties": { + "facing": "south" + } + }, + { + "id": 8916, + "properties": { + "facing": "west" + } + }, + { + "id": 8917, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:lime_wool": { + "states": [ + { + "default": true, + "id": 1643 + } + ] + }, + "minecraft:lodestone": { + "states": [ + { + "default": true, + "id": 17047 + } + ] + }, + "minecraft:loom": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15992, + "properties": { + "facing": "north" + } + }, + { + "id": 15993, + "properties": { + "facing": "south" + } + }, + { + "id": 15994, + "properties": { + "facing": "west" + } + }, + { + "id": 15995, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8670, + "properties": { + "rotation": "0" + } + }, + { + "id": 8671, + "properties": { + "rotation": "1" + } + }, + { + "id": 8672, + "properties": { + "rotation": "2" + } + }, + { + "id": 8673, + "properties": { + "rotation": "3" + } + }, + { + "id": 8674, + "properties": { + "rotation": "4" + } + }, + { + "id": 8675, + "properties": { + "rotation": "5" + } + }, + { + "id": 8676, + "properties": { + "rotation": "6" + } + }, + { + "id": 8677, + "properties": { + "rotation": "7" + } + }, + { + "id": 8678, + "properties": { + "rotation": "8" + } + }, + { + "id": 8679, + "properties": { + "rotation": "9" + } + }, + { + "id": 8680, + "properties": { + "rotation": "10" + } + }, + { + "id": 8681, + "properties": { + "rotation": "11" + } + }, + { + "id": 8682, + "properties": { + "rotation": "12" + } + }, + { + "id": 8683, + "properties": { + "rotation": "13" + } + }, + { + "id": 8684, + "properties": { + "rotation": "14" + } + }, + { + "id": 8685, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:magenta_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1311, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1312, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1313, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1314, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1315, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1316, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1317, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1318, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1319, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1320, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1321, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1322, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1323, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1324, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1325, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1326, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:magenta_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18361, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18362, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18363, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18364, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18365, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18366, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18367, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18368, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18369, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18370, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18371, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18372, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18373, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18374, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18375, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18376, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:magenta_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18591, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18592, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:magenta_carpet": { + "states": [ + { + "default": true, + "id": 8609 + } + ] + }, + "minecraft:magenta_concrete": { + "states": [ + { + "default": true, + "id": 10321 + } + ] + }, + "minecraft:magenta_concrete_powder": { + "states": [ + { + "default": true, + "id": 10337 + } + ] + }, + "minecraft:magenta_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10263, + "properties": { + "facing": "north" + } + }, + { + "id": 10264, + "properties": { + "facing": "south" + } + }, + { + "id": 10265, + "properties": { + "facing": "west" + } + }, + { + "id": 10266, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10171, + "properties": { + "facing": "north" + } + }, + { + "id": 10172, + "properties": { + "facing": "east" + } + }, + { + "id": 10173, + "properties": { + "facing": "south" + } + }, + { + "id": 10174, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10175, + "properties": { + "facing": "up" + } + }, + { + "id": 10176, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:magenta_stained_glass": { + "states": [ + { + "default": true, + "id": 4406 + } + ] + }, + "minecraft:magenta_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7556, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7557, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7558, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7559, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7560, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7561, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7562, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7563, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7564, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7565, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7566, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7567, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7568, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7569, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7570, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7571, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7572, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7573, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7574, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7575, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7576, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7577, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7578, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7579, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7580, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7581, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7582, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7583, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7584, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7585, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7586, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7587, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:magenta_terracotta": { + "states": [ + { + "default": true, + "id": 7478 + } + ] + }, + "minecraft:magenta_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8902, + "properties": { + "facing": "north" + } + }, + { + "id": 8903, + "properties": { + "facing": "south" + } + }, + { + "id": 8904, + "properties": { + "facing": "west" + } + }, + { + "id": 8905, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_wool": { + "states": [ + { + "default": true, + "id": 1640 + } + ] + }, + "minecraft:magma_block": { + "states": [ + { + "default": true, + "id": 10134 + } + ] + }, + "minecraft:mangrove_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7083, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 7084, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7085, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7086, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7087, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7088, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7089, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7090, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 7091, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 7092, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7093, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7094, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7095, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7096, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7097, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7098, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 7099, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 7100, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7101, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7102, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7103, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7104, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7105, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7106, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9875, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9876, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9877, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9878, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9879, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9880, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9881, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9882, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9883, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9884, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9885, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 9886, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9887, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9888, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9889, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9890, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9891, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9892, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9893, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9894, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9895, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9896, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9897, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9898, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9899, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9900, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9901, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9902, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9903, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9904, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9905, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9906, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9907, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9908, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9909, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9910, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9911, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9912, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9913, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9914, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9915, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9916, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9917, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9918, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9919, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9920, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9921, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9922, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9923, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9924, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9925, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9926, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9927, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9928, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9929, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9930, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9931, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9932, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9933, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9934, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9935, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9936, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9937, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9938, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9523, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9524, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9525, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9526, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9527, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9528, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9529, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9530, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9531, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9532, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9533, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9534, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9535, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9536, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9537, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9538, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9539, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9540, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9541, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9542, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9543, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9544, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9545, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9546, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9547, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9548, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9549, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9550, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9551, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9552, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9553, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9554, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:mangrove_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9331, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9332, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9333, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9334, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9335, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9336, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9337, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 9338, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9339, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9340, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9341, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9342, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9343, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9344, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9345, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9346, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9347, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9348, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9349, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9350, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9351, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9352, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9353, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9354, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9355, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9356, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9357, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9358, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9359, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9360, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9361, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9362, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 374, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 375, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 376, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 377, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 378, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 379, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 380, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 381, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 382, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 383, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 384, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 385, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 386, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 387, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 388, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 389, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 390, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 391, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 392, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 393, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 394, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 395, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 396, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 397, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 398, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 399, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 400, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 401, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 135, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 136, + "properties": { + "axis": "y" + } + }, + { + "id": 137, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:mangrove_planks": { + "states": [ + { + "default": true, + "id": 21 + } + ] + }, + "minecraft:mangrove_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4190, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 4191, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_propagule": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4" + ], + "hanging": [ + "true", + "false" + ], + "stage": [ + "0", + "1" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 34, + "properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 35, + "properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 36, + "properties": { + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 37, + "properties": { + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 38, + "properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 39, + "properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 40, + "properties": { + "age": "0", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 41, + "properties": { + "age": "0", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 42, + "properties": { + "age": "1", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 43, + "properties": { + "age": "1", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 44, + "properties": { + "age": "1", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 45, + "properties": { + "age": "1", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 46, + "properties": { + "age": "1", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 47, + "properties": { + "age": "1", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 48, + "properties": { + "age": "1", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 49, + "properties": { + "age": "1", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 50, + "properties": { + "age": "2", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 51, + "properties": { + "age": "2", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 52, + "properties": { + "age": "2", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 53, + "properties": { + "age": "2", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 54, + "properties": { + "age": "2", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 55, + "properties": { + "age": "2", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 56, + "properties": { + "age": "2", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 57, + "properties": { + "age": "2", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 58, + "properties": { + "age": "3", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 59, + "properties": { + "age": "3", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 60, + "properties": { + "age": "3", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 61, + "properties": { + "age": "3", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 62, + "properties": { + "age": "3", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 63, + "properties": { + "age": "3", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 64, + "properties": { + "age": "3", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 65, + "properties": { + "age": "3", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 66, + "properties": { + "age": "4", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 67, + "properties": { + "age": "4", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 68, + "properties": { + "age": "4", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 69, + "properties": { + "age": "4", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 70, + "properties": { + "age": "4", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 71, + "properties": { + "age": "4", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 72, + "properties": { + "age": "4", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 73, + "properties": { + "age": "4", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_roots": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 138, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 139, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3828, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3829, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 3830, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 3831, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 3832, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 3833, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 3834, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 3835, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 3836, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 3837, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 3838, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 3839, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 3840, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 3841, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 3842, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 3843, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 3844, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 3845, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 3846, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 3847, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 3848, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 3849, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 3850, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 3851, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 3852, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 3853, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 3854, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 3855, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 3856, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 3857, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 3858, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 3859, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9077, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9078, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9079, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9080, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9081, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9082, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8164, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8165, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8166, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8167, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8168, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8169, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8170, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8171, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8172, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8173, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8174, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8175, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8176, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8177, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8178, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8179, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8180, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8181, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8182, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8183, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8184, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8185, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8186, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8187, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8188, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8189, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8190, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8191, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8192, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8193, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8194, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8195, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8196, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8197, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8198, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8199, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8200, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8201, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8202, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8203, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8204, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8205, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8206, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8207, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8208, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8209, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8210, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8211, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8212, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8213, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8214, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8215, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8216, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8217, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8218, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8219, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8220, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8221, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8222, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8223, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8224, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8225, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8226, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8227, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8228, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8229, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8230, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8231, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8232, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8233, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8234, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8235, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8236, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8237, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8238, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8239, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8240, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8241, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8242, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8243, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4804, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4805, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4806, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4807, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4808, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4809, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4810, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4811, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4812, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4813, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4814, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4815, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4816, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4817, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4818, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4819, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4820, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4821, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4822, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4823, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4824, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4825, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4826, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4827, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4828, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4829, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4830, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4831, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4832, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4833, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4834, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4835, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4836, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4837, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4838, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4839, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4840, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4841, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4842, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4843, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4844, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4845, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4846, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4847, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4848, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4849, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4850, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4851, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4852, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4853, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4854, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4855, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4856, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4857, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4858, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4859, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4860, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4861, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4862, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4863, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4864, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4865, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4866, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4867, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4080, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4081, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4082, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4083, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4084, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4085, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4086, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4087, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 182, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 183, + "properties": { + "axis": "y" + } + }, + { + "id": 184, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:medium_amethyst_bud": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18645, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 18646, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 18647, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 18648, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 18649, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 18650, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 18651, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 18652, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 18653, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18654, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 18655, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 18656, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:melon": { + "states": [ + { + "default": true, + "id": 5142 + } + ] + }, + "minecraft:melon_stem": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 5159, + "properties": { + "age": "0" + } + }, + { + "id": 5160, + "properties": { + "age": "1" + } + }, + { + "id": 5161, + "properties": { + "age": "2" + } + }, + { + "id": 5162, + "properties": { + "age": "3" + } + }, + { + "id": 5163, + "properties": { + "age": "4" + } + }, + { + "id": 5164, + "properties": { + "age": "5" + } + }, + { + "id": 5165, + "properties": { + "age": "6" + } + }, + { + "id": 5166, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:moss_block": { + "states": [ + { + "default": true, + "id": 19717 + } + ] + }, + "minecraft:moss_carpet": { + "states": [ + { + "default": true, + "id": 19716 + } + ] + }, + "minecraft:mossy_cobblestone": { + "states": [ + { + "default": true, + "id": 1687 + } + ] + }, + "minecraft:mossy_cobblestone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11694, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11695, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11696, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11697, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11698, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11699, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_cobblestone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10870, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10871, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10872, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10873, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10874, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10875, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10876, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10877, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10878, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10879, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10880, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10881, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10882, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10883, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10884, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10885, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10886, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10887, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10888, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10889, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10890, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10891, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10892, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10893, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10894, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10895, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10896, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10897, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10898, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10899, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10900, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10901, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10902, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10903, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10904, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10905, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10906, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10907, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10908, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10909, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10910, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10911, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10912, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10913, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10914, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10915, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10916, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10917, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10918, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10919, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10920, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10921, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10922, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10923, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10924, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10925, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10926, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10927, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10928, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10929, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10930, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10931, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10932, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10933, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10934, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10935, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10936, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10937, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10938, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10939, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10940, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10941, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10942, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10943, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10944, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10945, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10946, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10947, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10948, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10949, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_cobblestone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 6573, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6574, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6575, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 6576, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6577, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6578, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6579, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6580, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6581, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6582, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6583, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6584, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6585, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6586, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6587, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6588, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6589, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6590, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6591, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6592, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6593, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6594, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6595, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6596, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6597, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6598, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6599, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6600, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6601, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6602, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6603, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6604, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6605, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6606, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6607, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6608, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6609, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6610, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6611, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6612, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6613, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6614, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6615, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6616, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6617, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6618, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6619, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6620, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6621, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6622, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6623, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6624, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6625, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6626, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6627, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6628, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6629, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6630, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6631, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6632, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6633, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6634, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6635, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6636, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6637, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6638, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6639, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6640, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6641, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6642, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6643, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6644, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6645, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6646, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6647, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6648, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6649, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6650, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6651, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6652, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6653, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6654, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6655, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6656, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6657, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6658, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6659, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6660, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6661, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6662, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6663, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6664, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6665, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6666, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6667, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6668, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6669, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6670, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6671, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6672, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6673, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6674, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6675, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6676, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6677, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6678, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6679, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6680, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6681, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6682, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6683, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6684, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6685, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6686, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6687, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6688, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6689, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6690, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6691, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6692, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6693, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6694, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6695, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6696, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6697, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6698, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6699, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6700, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6701, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6702, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6703, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6704, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6705, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6706, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6707, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6708, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6709, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6710, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6711, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6712, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6713, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6714, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6715, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6716, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6717, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6718, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6719, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6720, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6721, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6722, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6723, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6724, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6725, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6726, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6727, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6728, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6729, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6730, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6731, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6732, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6733, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6734, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6735, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6736, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6737, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6738, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6739, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6740, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6741, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6742, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6743, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6744, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6745, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6746, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6747, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6748, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6749, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6750, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6751, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6752, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6753, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6754, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6755, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6756, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6757, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6758, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6759, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6760, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6761, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6762, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6763, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6764, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6765, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6766, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6767, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6768, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6769, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6770, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6771, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6772, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6773, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6774, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6775, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6776, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6777, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6778, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6779, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6780, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6781, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6782, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6783, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6784, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6785, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6786, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6787, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6788, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6789, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6790, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6791, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6792, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6793, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6794, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6795, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6796, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6797, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6798, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6799, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6800, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6801, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6802, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6803, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6804, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6805, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6806, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6807, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6808, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6809, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6810, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6811, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6812, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6813, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6814, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6815, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6816, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6817, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6818, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6819, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6820, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6821, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6822, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6823, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6824, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6825, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6826, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6827, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6828, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6829, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6830, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6831, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6832, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6833, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6834, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6835, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6836, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6837, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6838, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6839, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6840, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6841, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6842, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6843, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6844, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6845, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6846, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6847, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6848, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6849, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6850, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6851, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6852, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6853, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6854, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6855, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6856, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6857, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6858, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6859, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6860, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6861, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6862, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6863, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6864, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6865, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6866, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6867, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6868, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6869, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6870, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6871, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6872, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6873, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6874, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6875, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6876, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6877, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6878, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6879, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6880, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6881, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6882, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6883, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6884, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6885, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6886, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6887, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6888, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6889, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6890, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6891, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6892, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6893, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6894, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6895, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6896, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mossy_stone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11682, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11683, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11684, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11685, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11686, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11687, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_stone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10710, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10711, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10712, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10713, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10714, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10715, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10716, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10717, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10718, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10719, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10720, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10721, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10722, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10723, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10724, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10725, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10726, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10727, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10728, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10729, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10730, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10731, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10732, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10733, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10734, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10735, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10736, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10737, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10738, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10739, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10740, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10741, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10742, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10743, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10744, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10745, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10746, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10747, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10748, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10749, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10750, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10751, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10752, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10753, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10754, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10755, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10756, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10757, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10758, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10759, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10760, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10761, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10762, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10763, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10764, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10765, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10766, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10767, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10768, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10769, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10770, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10771, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10772, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10773, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10774, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10775, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10776, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10777, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10778, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10779, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10780, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10781, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10782, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10783, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10784, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10785, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10786, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10787, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10788, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10789, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_stone_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 12720, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12721, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12722, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 12723, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12724, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12725, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12726, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12727, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12728, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12729, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12730, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12731, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12732, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12733, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12734, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12735, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12736, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12737, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12738, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12739, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12740, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12741, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12742, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12743, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12744, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12745, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12746, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12747, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12748, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12749, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12750, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12751, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12752, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12753, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12754, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12755, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12756, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12757, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12758, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12759, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12760, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12761, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12762, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12763, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12764, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12765, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12766, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12767, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12768, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12769, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12770, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12771, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12772, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12773, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12774, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12775, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12776, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12777, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12778, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12779, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12780, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12781, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12782, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12783, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12784, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12785, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12786, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12787, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12788, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12789, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12790, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12791, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12792, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12793, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12794, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12795, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12796, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12797, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12798, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12799, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12800, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12801, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12802, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12803, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12804, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12805, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12806, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12807, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12808, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12809, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12810, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12811, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12812, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12813, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12814, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12815, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12816, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12817, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12818, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12819, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12820, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12821, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12822, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12823, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12824, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12825, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12826, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12827, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12828, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12829, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12830, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12831, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12832, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12833, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12834, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12835, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12836, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12837, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12838, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12839, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12840, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12841, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12842, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12843, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12844, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12845, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12846, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12847, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12848, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12849, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12850, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12851, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12852, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12853, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12854, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12855, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12856, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12857, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12858, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12859, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12860, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12861, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12862, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12863, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12864, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12865, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12866, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12867, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12868, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12869, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12870, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12871, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12872, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12873, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12874, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12875, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12876, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12877, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12878, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12879, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12880, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12881, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12882, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12883, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12884, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12885, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12886, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12887, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12888, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12889, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12890, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12891, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12892, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12893, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12894, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12895, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12896, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12897, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12898, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12899, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12900, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12901, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12902, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12903, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12904, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12905, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12906, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12907, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12908, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12909, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12910, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12911, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12912, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12913, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12914, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12915, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12916, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12917, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12918, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12919, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12920, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12921, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12922, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12923, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12924, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12925, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12926, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12927, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12928, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12929, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12930, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12931, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12932, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12933, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12934, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12935, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12936, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12937, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12938, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12939, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12940, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12941, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12942, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12943, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12944, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12945, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12946, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12947, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12948, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12949, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12950, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12951, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12952, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12953, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12954, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12955, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12956, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12957, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12958, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12959, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12960, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12961, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12962, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12963, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12964, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12965, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12966, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12967, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12968, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12969, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12970, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12971, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12972, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12973, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12974, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12975, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12976, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12977, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12978, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12979, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12980, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12981, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12982, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12983, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12984, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12985, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12986, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12987, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12988, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12989, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12990, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12991, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12992, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12993, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12994, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12995, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12996, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12997, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12998, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12999, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13000, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13001, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13002, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13003, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13004, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13005, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13006, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13007, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13008, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13009, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13010, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13011, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13012, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13013, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13014, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13015, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13016, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13017, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13018, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13019, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13020, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13021, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13022, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13023, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13024, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13025, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13026, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13027, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13028, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13029, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13030, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13031, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13032, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13033, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13034, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13035, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13036, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13037, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13038, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13039, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13040, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13041, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13042, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13043, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mossy_stone_bricks": { + "states": [ + { + "default": true, + "id": 4869 + } + ] + }, + "minecraft:moving_piston": { + "properties": { + "type": [ + "normal", + "sticky" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "default": true, + "id": 1654, + "properties": { + "type": "normal", + "facing": "north" + } + }, + { + "id": 1655, + "properties": { + "type": "sticky", + "facing": "north" + } + }, + { + "id": 1656, + "properties": { + "type": "normal", + "facing": "east" + } + }, + { + "id": 1657, + "properties": { + "type": "sticky", + "facing": "east" + } + }, + { + "id": 1658, + "properties": { + "type": "normal", + "facing": "south" + } + }, + { + "id": 1659, + "properties": { + "type": "sticky", + "facing": "south" + } + }, + { + "id": 1660, + "properties": { + "type": "normal", + "facing": "west" + } + }, + { + "id": 1661, + "properties": { + "type": "sticky", + "facing": "west" + } + }, + { + "id": 1662, + "properties": { + "type": "normal", + "facing": "up" + } + }, + { + "id": 1663, + "properties": { + "type": "sticky", + "facing": "up" + } + }, + { + "id": 1664, + "properties": { + "type": "normal", + "facing": "down" + } + }, + { + "id": 1665, + "properties": { + "type": "sticky", + "facing": "down" + } + } + ] + }, + "minecraft:mud": { + "states": [ + { + "default": true, + "id": 19777 + } + ] + }, + "minecraft:mud_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9131, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9132, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9133, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9134, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9135, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9136, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mud_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5519, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5520, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5521, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5522, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5523, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5524, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5525, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5526, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5527, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5528, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5529, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5530, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5531, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5532, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5533, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5534, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5535, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5536, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5537, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5538, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5539, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5540, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5541, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5542, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5543, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5544, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5545, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5546, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5547, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5548, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5549, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5550, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5551, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5552, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5553, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5554, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5555, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5556, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5557, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5558, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5559, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5560, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5561, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5562, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5563, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5564, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5565, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5566, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5567, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5568, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5569, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5570, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5571, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5572, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5573, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5574, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5575, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5576, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5577, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5578, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5579, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5580, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5581, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5582, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5583, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5584, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5585, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5586, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5587, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5588, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5589, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5590, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5591, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5592, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5593, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5594, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5595, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5596, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5597, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5598, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mud_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 13692, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13693, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13694, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 13695, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13696, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13697, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13698, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13699, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13700, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13701, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13702, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13703, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13704, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13705, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13706, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13707, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13708, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13709, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13710, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13711, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13712, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13713, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13714, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13715, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13716, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13717, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13718, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13719, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13720, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13721, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13722, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13723, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13724, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13725, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13726, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13727, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13728, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13729, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13730, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13731, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13732, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13733, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13734, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13735, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13736, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13737, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13738, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13739, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13740, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13741, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13742, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13743, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13744, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13745, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13746, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13747, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13748, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13749, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13750, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13751, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13752, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13753, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13754, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13755, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13756, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13757, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13758, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13759, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13760, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13761, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13762, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13763, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13764, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13765, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13766, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13767, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13768, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13769, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13770, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13771, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13772, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13773, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13774, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13775, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13776, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13777, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13778, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13779, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13780, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13781, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13782, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13783, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13784, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13785, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13786, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13787, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13788, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13789, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13790, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13791, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13792, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13793, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13794, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13795, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13796, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13797, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13798, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13799, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13800, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13801, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13802, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13803, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13804, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13805, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13806, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13807, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13808, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13809, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13810, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13811, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13812, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13813, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13814, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13815, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13816, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13817, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13818, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13819, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13820, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13821, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13822, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13823, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13824, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13825, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13826, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13827, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13828, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13829, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13830, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13831, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13832, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13833, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13834, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13835, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13836, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13837, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13838, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13839, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13840, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13841, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13842, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13843, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13844, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13845, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13846, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13847, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13848, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13849, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13850, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13851, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13852, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13853, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13854, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13855, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13856, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13857, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13858, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13859, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13860, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13861, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13862, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13863, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13864, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13865, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13866, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13867, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13868, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13869, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13870, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13871, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13872, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13873, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13874, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13875, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13876, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13877, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13878, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13879, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13880, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13881, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13882, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13883, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13884, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13885, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13886, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13887, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13888, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13889, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13890, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13891, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13892, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13893, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13894, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13895, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13896, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13897, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13898, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13899, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13900, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13901, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13902, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13903, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13904, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13905, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13906, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13907, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13908, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13909, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13910, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13911, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13912, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13913, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13914, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13915, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13916, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13917, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13918, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13919, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13920, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13921, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13922, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13923, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13924, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13925, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13926, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13927, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13928, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13929, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13930, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13931, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13932, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13933, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13934, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13935, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13936, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13937, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13938, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13939, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13940, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13941, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13942, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13943, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13944, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13945, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13946, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13947, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13948, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13949, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13950, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13951, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13952, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13953, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13954, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13955, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13956, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13957, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13958, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13959, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13960, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13961, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13962, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13963, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13964, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13965, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13966, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13967, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13968, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13969, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13970, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13971, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13972, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13973, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13974, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13975, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13976, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13977, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13978, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13979, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13980, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13981, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13982, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13983, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13984, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13985, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13986, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13987, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13988, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13989, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13990, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13991, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13992, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13993, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13994, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13995, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13996, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13997, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13998, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13999, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14000, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14001, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14002, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14003, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14004, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14005, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14006, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14007, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14008, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14009, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14010, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14011, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14012, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14013, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14014, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14015, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mud_bricks": { + "states": [ + { + "default": true, + "id": 4873 + } + ] + }, + "minecraft:muddy_mangrove_roots": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 140, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 141, + "properties": { + "axis": "y" + } + }, + { + "id": 142, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:mushroom_stem": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 5008, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 5009, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 5010, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 5011, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 5012, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 5013, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 5014, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 5015, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 5016, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 5017, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 5018, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 5019, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 5020, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 5021, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 5022, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 5023, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 5024, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 5025, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 5026, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 5027, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 5028, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 5029, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 5030, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 5031, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 5032, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 5033, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 5034, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 5035, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 5036, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 5037, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 5038, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 5039, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 5040, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 5041, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 5042, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 5043, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 5044, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 5045, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 5046, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 5047, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 5048, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 5049, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 5050, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 5051, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 5052, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 5053, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 5054, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 5055, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 5056, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 5057, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 5058, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 5059, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 5060, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 5061, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 5062, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 5063, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 5064, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 5065, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 5066, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 5067, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 5068, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 5069, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 5070, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 5071, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:mycelium": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5599, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 5600, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:nether_brick_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5603, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5604, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5605, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5606, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5607, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5608, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5609, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5610, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5611, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5612, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5613, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5614, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5615, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5616, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5617, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5618, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5619, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5620, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5621, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5622, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5623, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5624, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5625, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5626, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5627, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5628, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5629, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5630, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5631, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5632, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5633, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 5634, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:nether_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9137, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9138, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9139, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9140, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9141, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9142, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:nether_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5635, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5636, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5637, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5638, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5639, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5640, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5641, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5642, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5643, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5644, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5645, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5646, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5647, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5648, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5649, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5650, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5651, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5652, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5653, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5654, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5655, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5656, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5657, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5658, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5659, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5660, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5661, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5662, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5663, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5664, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5665, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5666, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5667, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5668, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5669, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5670, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5671, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5672, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5673, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5674, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5675, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5676, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5677, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5678, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5679, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5680, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5681, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5682, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5683, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5684, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5685, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5686, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5687, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5688, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5689, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5690, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5691, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5692, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5693, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5694, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5695, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5696, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5697, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5698, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5699, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5700, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5701, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5702, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5703, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5704, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5705, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5706, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5707, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5708, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5709, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5710, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5711, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5712, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5713, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5714, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:nether_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14016, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14017, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14018, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 14019, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14020, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14021, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14022, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14023, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14024, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14025, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14026, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14027, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14028, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14029, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14030, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14031, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14032, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14033, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14034, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14035, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14036, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14037, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14038, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14039, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14040, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14041, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14042, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14043, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14044, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14045, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14046, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14047, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14048, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14049, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14050, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14051, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14052, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14053, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14054, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14055, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14056, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14057, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14058, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14059, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14060, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14061, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14062, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14063, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14064, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14065, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14066, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14067, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14068, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14069, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14070, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14071, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14072, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14073, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14074, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14075, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14076, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14077, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14078, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14079, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14080, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14081, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14082, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14083, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14084, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14085, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14086, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14087, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14088, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14089, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14090, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14091, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14092, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14093, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14094, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14095, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14096, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14097, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14098, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14099, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14100, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14101, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14102, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14103, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14104, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14105, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14106, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14107, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14108, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14109, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14110, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14111, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14112, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14113, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14114, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14115, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14116, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14117, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14118, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14119, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14120, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14121, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14122, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14123, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14124, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14125, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14126, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14127, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14128, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14129, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14130, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14131, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14132, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14133, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14134, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14135, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14136, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14137, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14138, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14139, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14140, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14141, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14142, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14143, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14144, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14145, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14146, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14147, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14148, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14149, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14150, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14151, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14152, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14153, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14154, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14155, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14156, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14157, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14158, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14159, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14160, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14161, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14162, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14163, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14164, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14165, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14166, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14167, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14168, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14169, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14170, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14171, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14172, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14173, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14174, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14175, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14176, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14177, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14178, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14179, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14180, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14181, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14182, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14183, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14184, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14185, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14186, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14187, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14188, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14189, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14190, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14191, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14192, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14193, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14194, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14195, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14196, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14197, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14198, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14199, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14200, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14201, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14202, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14203, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14204, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14205, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14206, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14207, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14208, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14209, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14210, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14211, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14212, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14213, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14214, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14215, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14216, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14217, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14218, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14219, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14220, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14221, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14222, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14223, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14224, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14225, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14226, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14227, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14228, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14229, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14230, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14231, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14232, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14233, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14234, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14235, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14236, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14237, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14238, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14239, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14240, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14241, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14242, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14243, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14244, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14245, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14246, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14247, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14248, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14249, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14250, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14251, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14252, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14253, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14254, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14255, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14256, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14257, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14258, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14259, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14260, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14261, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14262, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14263, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14264, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14265, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14266, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14267, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14268, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14269, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14270, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14271, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14272, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14273, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14274, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14275, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14276, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14277, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14278, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14279, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14280, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14281, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14282, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14283, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14284, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14285, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14286, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14287, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14288, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14289, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14290, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14291, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14292, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14293, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14294, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14295, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14296, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14297, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14298, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14299, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14300, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14301, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14302, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14303, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14304, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14305, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14306, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14307, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14308, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14309, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14310, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14311, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14312, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14313, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14314, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14315, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14316, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14317, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14318, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14319, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14320, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14321, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14322, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14323, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14324, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14325, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14326, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14327, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14328, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14329, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14330, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14331, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14332, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14333, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14334, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14335, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14336, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14337, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14338, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14339, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:nether_bricks": { + "states": [ + { + "default": true, + "id": 5602 + } + ] + }, + "minecraft:nether_gold_ore": { + "states": [ + { + "default": true, + "id": 116 + } + ] + }, + "minecraft:nether_portal": { + "properties": { + "axis": [ + "x", + "z" + ] + }, + "states": [ + { + "default": true, + "id": 4323, + "properties": { + "axis": "x" + } + }, + { + "id": 4324, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:nether_quartz_ore": { + "states": [ + { + "default": true, + "id": 7344 + } + ] + }, + "minecraft:nether_sprouts": { + "states": [ + { + "default": true, + "id": 16183 + } + ] + }, + "minecraft:nether_wart": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 5715, + "properties": { + "age": "0" + } + }, + { + "id": 5716, + "properties": { + "age": "1" + } + }, + { + "id": 5717, + "properties": { + "age": "2" + } + }, + { + "id": 5718, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:nether_wart_block": { + "states": [ + { + "default": true, + "id": 10135 + } + ] + }, + "minecraft:netherite_block": { + "states": [ + { + "default": true, + "id": 17035 + } + ] + }, + "minecraft:netherrack": { + "states": [ + { + "default": true, + "id": 4308 } ] }, @@ -2542,10176 +118724,8286 @@ }, "states": [ { + "id": 479, "properties": { "instrument": "harp", "note": "0", "powered": "true" - }, - "id": 281 + } }, { + "default": true, + "id": 480, "properties": { "instrument": "harp", "note": "0", "powered": "false" - }, - "id": 282, - "default": true + } }, { + "id": 481, "properties": { "instrument": "harp", "note": "1", "powered": "true" - }, - "id": 283 + } }, { + "id": 482, "properties": { "instrument": "harp", "note": "1", "powered": "false" - }, - "id": 284 + } }, { + "id": 483, "properties": { "instrument": "harp", "note": "2", "powered": "true" - }, - "id": 285 + } }, { + "id": 484, "properties": { "instrument": "harp", "note": "2", "powered": "false" - }, - "id": 286 + } }, { + "id": 485, "properties": { "instrument": "harp", "note": "3", "powered": "true" - }, - "id": 287 + } }, { + "id": 486, "properties": { "instrument": "harp", "note": "3", "powered": "false" - }, - "id": 288 + } }, { + "id": 487, "properties": { "instrument": "harp", "note": "4", "powered": "true" - }, - "id": 289 + } }, { + "id": 488, "properties": { "instrument": "harp", "note": "4", "powered": "false" - }, - "id": 290 + } }, { + "id": 489, "properties": { "instrument": "harp", "note": "5", "powered": "true" - }, - "id": 291 + } }, { + "id": 490, "properties": { "instrument": "harp", "note": "5", "powered": "false" - }, - "id": 292 + } }, { + "id": 491, "properties": { "instrument": "harp", "note": "6", "powered": "true" - }, - "id": 293 + } }, { + "id": 492, "properties": { "instrument": "harp", "note": "6", "powered": "false" - }, - "id": 294 + } }, { + "id": 493, "properties": { "instrument": "harp", "note": "7", "powered": "true" - }, - "id": 295 + } }, { + "id": 494, "properties": { "instrument": "harp", "note": "7", "powered": "false" - }, - "id": 296 + } }, { + "id": 495, "properties": { "instrument": "harp", "note": "8", "powered": "true" - }, - "id": 297 + } }, { + "id": 496, "properties": { "instrument": "harp", "note": "8", "powered": "false" - }, - "id": 298 + } }, { + "id": 497, "properties": { "instrument": "harp", "note": "9", "powered": "true" - }, - "id": 299 + } }, { + "id": 498, "properties": { "instrument": "harp", "note": "9", "powered": "false" - }, - "id": 300 + } }, { + "id": 499, "properties": { "instrument": "harp", "note": "10", "powered": "true" - }, - "id": 301 + } }, { + "id": 500, "properties": { "instrument": "harp", "note": "10", "powered": "false" - }, - "id": 302 + } }, { + "id": 501, "properties": { "instrument": "harp", "note": "11", "powered": "true" - }, - "id": 303 + } }, { + "id": 502, "properties": { "instrument": "harp", "note": "11", "powered": "false" - }, - "id": 304 + } }, { + "id": 503, "properties": { "instrument": "harp", "note": "12", "powered": "true" - }, - "id": 305 + } }, { + "id": 504, "properties": { "instrument": "harp", "note": "12", "powered": "false" - }, - "id": 306 + } }, { + "id": 505, "properties": { "instrument": "harp", "note": "13", "powered": "true" - }, - "id": 307 + } }, { + "id": 506, "properties": { "instrument": "harp", "note": "13", "powered": "false" - }, - "id": 308 + } }, { + "id": 507, "properties": { "instrument": "harp", "note": "14", "powered": "true" - }, - "id": 309 + } }, { + "id": 508, "properties": { "instrument": "harp", "note": "14", "powered": "false" - }, - "id": 310 + } }, { + "id": 509, "properties": { "instrument": "harp", "note": "15", "powered": "true" - }, - "id": 311 + } }, { + "id": 510, "properties": { "instrument": "harp", "note": "15", "powered": "false" - }, - "id": 312 + } }, { + "id": 511, "properties": { "instrument": "harp", "note": "16", "powered": "true" - }, - "id": 313 + } }, { + "id": 512, "properties": { "instrument": "harp", "note": "16", "powered": "false" - }, - "id": 314 + } }, { + "id": 513, "properties": { "instrument": "harp", "note": "17", "powered": "true" - }, - "id": 315 + } }, { + "id": 514, "properties": { "instrument": "harp", "note": "17", "powered": "false" - }, - "id": 316 + } }, { + "id": 515, "properties": { "instrument": "harp", "note": "18", "powered": "true" - }, - "id": 317 + } }, { + "id": 516, "properties": { "instrument": "harp", "note": "18", "powered": "false" - }, - "id": 318 + } }, { + "id": 517, "properties": { "instrument": "harp", "note": "19", "powered": "true" - }, - "id": 319 + } }, { + "id": 518, "properties": { "instrument": "harp", "note": "19", "powered": "false" - }, - "id": 320 + } }, { + "id": 519, "properties": { "instrument": "harp", "note": "20", "powered": "true" - }, - "id": 321 + } }, { + "id": 520, "properties": { "instrument": "harp", "note": "20", "powered": "false" - }, - "id": 322 + } }, { + "id": 521, "properties": { "instrument": "harp", "note": "21", "powered": "true" - }, - "id": 323 + } }, { + "id": 522, "properties": { "instrument": "harp", "note": "21", "powered": "false" - }, - "id": 324 + } }, { + "id": 523, "properties": { "instrument": "harp", "note": "22", "powered": "true" - }, - "id": 325 + } }, { + "id": 524, "properties": { "instrument": "harp", "note": "22", "powered": "false" - }, - "id": 326 + } }, { + "id": 525, "properties": { "instrument": "harp", "note": "23", "powered": "true" - }, - "id": 327 + } }, { + "id": 526, "properties": { "instrument": "harp", "note": "23", "powered": "false" - }, - "id": 328 + } }, { + "id": 527, "properties": { "instrument": "harp", "note": "24", "powered": "true" - }, - "id": 329 + } }, { + "id": 528, "properties": { "instrument": "harp", "note": "24", "powered": "false" - }, - "id": 330 + } }, { + "id": 529, "properties": { "instrument": "basedrum", "note": "0", "powered": "true" - }, - "id": 331 + } }, { + "id": 530, "properties": { "instrument": "basedrum", "note": "0", "powered": "false" - }, - "id": 332 + } }, { + "id": 531, "properties": { "instrument": "basedrum", "note": "1", "powered": "true" - }, - "id": 333 + } }, { + "id": 532, "properties": { "instrument": "basedrum", "note": "1", "powered": "false" - }, - "id": 334 + } }, { + "id": 533, "properties": { "instrument": "basedrum", "note": "2", "powered": "true" - }, - "id": 335 + } }, { + "id": 534, "properties": { "instrument": "basedrum", "note": "2", "powered": "false" - }, - "id": 336 + } }, { + "id": 535, "properties": { "instrument": "basedrum", "note": "3", "powered": "true" - }, - "id": 337 + } }, { + "id": 536, "properties": { "instrument": "basedrum", "note": "3", "powered": "false" - }, - "id": 338 + } }, { + "id": 537, "properties": { "instrument": "basedrum", "note": "4", "powered": "true" - }, - "id": 339 + } }, { + "id": 538, "properties": { "instrument": "basedrum", "note": "4", "powered": "false" - }, - "id": 340 + } }, { + "id": 539, "properties": { "instrument": "basedrum", "note": "5", "powered": "true" - }, - "id": 341 + } }, { + "id": 540, "properties": { "instrument": "basedrum", "note": "5", "powered": "false" - }, - "id": 342 + } }, { + "id": 541, "properties": { "instrument": "basedrum", "note": "6", "powered": "true" - }, - "id": 343 + } }, { + "id": 542, "properties": { "instrument": "basedrum", "note": "6", "powered": "false" - }, - "id": 344 + } }, { + "id": 543, "properties": { "instrument": "basedrum", "note": "7", "powered": "true" - }, - "id": 345 + } }, { + "id": 544, "properties": { "instrument": "basedrum", "note": "7", "powered": "false" - }, - "id": 346 + } }, { + "id": 545, "properties": { "instrument": "basedrum", "note": "8", "powered": "true" - }, - "id": 347 + } }, { + "id": 546, "properties": { "instrument": "basedrum", "note": "8", "powered": "false" - }, - "id": 348 + } }, { + "id": 547, "properties": { "instrument": "basedrum", "note": "9", "powered": "true" - }, - "id": 349 + } }, { + "id": 548, "properties": { "instrument": "basedrum", "note": "9", "powered": "false" - }, - "id": 350 + } }, { + "id": 549, "properties": { "instrument": "basedrum", "note": "10", "powered": "true" - }, - "id": 351 + } }, { + "id": 550, "properties": { "instrument": "basedrum", "note": "10", "powered": "false" - }, - "id": 352 + } }, { + "id": 551, "properties": { "instrument": "basedrum", "note": "11", "powered": "true" - }, - "id": 353 + } }, { + "id": 552, "properties": { "instrument": "basedrum", "note": "11", "powered": "false" - }, - "id": 354 + } }, { + "id": 553, "properties": { "instrument": "basedrum", "note": "12", "powered": "true" - }, - "id": 355 + } }, { + "id": 554, "properties": { "instrument": "basedrum", "note": "12", "powered": "false" - }, - "id": 356 + } }, { + "id": 555, "properties": { "instrument": "basedrum", "note": "13", "powered": "true" - }, - "id": 357 + } }, { + "id": 556, "properties": { "instrument": "basedrum", "note": "13", "powered": "false" - }, - "id": 358 + } }, { + "id": 557, "properties": { "instrument": "basedrum", "note": "14", "powered": "true" - }, - "id": 359 + } }, { + "id": 558, "properties": { "instrument": "basedrum", "note": "14", "powered": "false" - }, - "id": 360 + } }, { + "id": 559, "properties": { "instrument": "basedrum", "note": "15", "powered": "true" - }, - "id": 361 + } }, { + "id": 560, "properties": { "instrument": "basedrum", "note": "15", "powered": "false" - }, - "id": 362 + } }, { + "id": 561, "properties": { "instrument": "basedrum", "note": "16", "powered": "true" - }, - "id": 363 + } }, { + "id": 562, "properties": { "instrument": "basedrum", "note": "16", "powered": "false" - }, - "id": 364 + } }, { + "id": 563, "properties": { "instrument": "basedrum", "note": "17", "powered": "true" - }, - "id": 365 + } }, { + "id": 564, "properties": { "instrument": "basedrum", "note": "17", "powered": "false" - }, - "id": 366 + } }, { + "id": 565, "properties": { "instrument": "basedrum", "note": "18", "powered": "true" - }, - "id": 367 + } }, { + "id": 566, "properties": { "instrument": "basedrum", "note": "18", "powered": "false" - }, - "id": 368 + } }, { + "id": 567, "properties": { "instrument": "basedrum", "note": "19", "powered": "true" - }, - "id": 369 + } }, { + "id": 568, "properties": { "instrument": "basedrum", "note": "19", "powered": "false" - }, - "id": 370 + } }, { + "id": 569, "properties": { "instrument": "basedrum", "note": "20", "powered": "true" - }, - "id": 371 + } }, { + "id": 570, "properties": { "instrument": "basedrum", "note": "20", "powered": "false" - }, - "id": 372 + } }, { + "id": 571, "properties": { "instrument": "basedrum", "note": "21", "powered": "true" - }, - "id": 373 + } }, { + "id": 572, "properties": { "instrument": "basedrum", "note": "21", "powered": "false" - }, - "id": 374 + } }, { + "id": 573, "properties": { "instrument": "basedrum", "note": "22", "powered": "true" - }, - "id": 375 + } }, { + "id": 574, "properties": { "instrument": "basedrum", "note": "22", "powered": "false" - }, - "id": 376 + } }, { + "id": 575, "properties": { "instrument": "basedrum", "note": "23", "powered": "true" - }, - "id": 377 + } }, { + "id": 576, "properties": { "instrument": "basedrum", "note": "23", "powered": "false" - }, - "id": 378 + } }, { + "id": 577, "properties": { "instrument": "basedrum", "note": "24", "powered": "true" - }, - "id": 379 + } }, { + "id": 578, "properties": { "instrument": "basedrum", "note": "24", "powered": "false" - }, - "id": 380 + } }, { + "id": 579, "properties": { "instrument": "snare", "note": "0", "powered": "true" - }, - "id": 381 + } }, { + "id": 580, "properties": { "instrument": "snare", "note": "0", "powered": "false" - }, - "id": 382 + } }, { + "id": 581, "properties": { "instrument": "snare", "note": "1", "powered": "true" - }, - "id": 383 + } }, { + "id": 582, "properties": { "instrument": "snare", "note": "1", "powered": "false" - }, - "id": 384 + } }, { + "id": 583, "properties": { "instrument": "snare", "note": "2", "powered": "true" - }, - "id": 385 + } }, { + "id": 584, "properties": { "instrument": "snare", "note": "2", "powered": "false" - }, - "id": 386 + } }, { + "id": 585, "properties": { "instrument": "snare", "note": "3", "powered": "true" - }, - "id": 387 + } }, { + "id": 586, "properties": { "instrument": "snare", "note": "3", "powered": "false" - }, - "id": 388 + } }, { + "id": 587, "properties": { "instrument": "snare", "note": "4", "powered": "true" - }, - "id": 389 + } }, { + "id": 588, "properties": { "instrument": "snare", "note": "4", "powered": "false" - }, - "id": 390 + } }, { + "id": 589, "properties": { "instrument": "snare", "note": "5", "powered": "true" - }, - "id": 391 + } }, { + "id": 590, "properties": { "instrument": "snare", "note": "5", "powered": "false" - }, - "id": 392 + } }, { + "id": 591, "properties": { "instrument": "snare", "note": "6", "powered": "true" - }, - "id": 393 + } }, { + "id": 592, "properties": { "instrument": "snare", "note": "6", "powered": "false" - }, - "id": 394 + } }, { + "id": 593, "properties": { "instrument": "snare", "note": "7", "powered": "true" - }, - "id": 395 + } }, { + "id": 594, "properties": { "instrument": "snare", "note": "7", "powered": "false" - }, - "id": 396 + } }, { + "id": 595, "properties": { "instrument": "snare", "note": "8", "powered": "true" - }, - "id": 397 + } }, { + "id": 596, "properties": { "instrument": "snare", "note": "8", "powered": "false" - }, - "id": 398 + } }, { + "id": 597, "properties": { "instrument": "snare", "note": "9", "powered": "true" - }, - "id": 399 + } }, { + "id": 598, "properties": { "instrument": "snare", "note": "9", "powered": "false" - }, - "id": 400 + } }, { + "id": 599, "properties": { "instrument": "snare", "note": "10", "powered": "true" - }, - "id": 401 + } }, { + "id": 600, "properties": { "instrument": "snare", "note": "10", "powered": "false" - }, - "id": 402 + } }, { + "id": 601, "properties": { "instrument": "snare", "note": "11", "powered": "true" - }, - "id": 403 + } }, { + "id": 602, "properties": { "instrument": "snare", "note": "11", "powered": "false" - }, - "id": 404 + } }, { + "id": 603, "properties": { "instrument": "snare", "note": "12", "powered": "true" - }, - "id": 405 + } }, { + "id": 604, "properties": { "instrument": "snare", "note": "12", "powered": "false" - }, - "id": 406 + } }, { + "id": 605, "properties": { "instrument": "snare", "note": "13", "powered": "true" - }, - "id": 407 + } }, { + "id": 606, "properties": { "instrument": "snare", "note": "13", "powered": "false" - }, - "id": 408 + } }, { + "id": 607, "properties": { "instrument": "snare", "note": "14", "powered": "true" - }, - "id": 409 + } }, { + "id": 608, "properties": { "instrument": "snare", "note": "14", "powered": "false" - }, - "id": 410 + } }, { + "id": 609, "properties": { "instrument": "snare", "note": "15", "powered": "true" - }, - "id": 411 + } }, { + "id": 610, "properties": { "instrument": "snare", "note": "15", "powered": "false" - }, - "id": 412 + } }, { + "id": 611, "properties": { "instrument": "snare", "note": "16", "powered": "true" - }, - "id": 413 + } }, { + "id": 612, "properties": { "instrument": "snare", "note": "16", "powered": "false" - }, - "id": 414 + } }, { + "id": 613, "properties": { "instrument": "snare", "note": "17", "powered": "true" - }, - "id": 415 + } }, { + "id": 614, "properties": { "instrument": "snare", "note": "17", "powered": "false" - }, - "id": 416 + } }, { + "id": 615, "properties": { "instrument": "snare", "note": "18", "powered": "true" - }, - "id": 417 + } }, { + "id": 616, "properties": { "instrument": "snare", "note": "18", "powered": "false" - }, - "id": 418 + } }, { + "id": 617, "properties": { "instrument": "snare", "note": "19", "powered": "true" - }, - "id": 419 + } }, { + "id": 618, "properties": { "instrument": "snare", "note": "19", "powered": "false" - }, - "id": 420 + } }, { + "id": 619, "properties": { "instrument": "snare", "note": "20", "powered": "true" - }, - "id": 421 + } }, { + "id": 620, "properties": { "instrument": "snare", "note": "20", "powered": "false" - }, - "id": 422 + } }, { + "id": 621, "properties": { "instrument": "snare", "note": "21", "powered": "true" - }, - "id": 423 + } }, { + "id": 622, "properties": { "instrument": "snare", "note": "21", "powered": "false" - }, - "id": 424 + } }, { + "id": 623, "properties": { "instrument": "snare", "note": "22", "powered": "true" - }, - "id": 425 + } }, { + "id": 624, "properties": { "instrument": "snare", "note": "22", "powered": "false" - }, - "id": 426 + } }, { + "id": 625, "properties": { "instrument": "snare", "note": "23", "powered": "true" - }, - "id": 427 + } }, { + "id": 626, "properties": { "instrument": "snare", "note": "23", "powered": "false" - }, - "id": 428 + } }, { + "id": 627, "properties": { "instrument": "snare", "note": "24", "powered": "true" - }, - "id": 429 + } }, { + "id": 628, "properties": { "instrument": "snare", "note": "24", "powered": "false" - }, - "id": 430 + } }, { + "id": 629, "properties": { "instrument": "hat", "note": "0", "powered": "true" - }, - "id": 431 + } }, { + "id": 630, "properties": { "instrument": "hat", "note": "0", "powered": "false" - }, - "id": 432 + } }, { + "id": 631, "properties": { "instrument": "hat", "note": "1", "powered": "true" - }, - "id": 433 + } }, { + "id": 632, "properties": { "instrument": "hat", "note": "1", "powered": "false" - }, - "id": 434 + } }, { + "id": 633, "properties": { "instrument": "hat", "note": "2", "powered": "true" - }, - "id": 435 + } }, { + "id": 634, "properties": { "instrument": "hat", "note": "2", "powered": "false" - }, - "id": 436 + } }, { + "id": 635, "properties": { "instrument": "hat", "note": "3", "powered": "true" - }, - "id": 437 + } }, { + "id": 636, "properties": { "instrument": "hat", "note": "3", "powered": "false" - }, - "id": 438 + } }, { + "id": 637, "properties": { "instrument": "hat", "note": "4", "powered": "true" - }, - "id": 439 + } }, { + "id": 638, "properties": { "instrument": "hat", "note": "4", "powered": "false" - }, - "id": 440 + } }, { + "id": 639, "properties": { "instrument": "hat", "note": "5", "powered": "true" - }, - "id": 441 + } }, { + "id": 640, "properties": { "instrument": "hat", "note": "5", "powered": "false" - }, - "id": 442 + } }, { + "id": 641, "properties": { "instrument": "hat", "note": "6", "powered": "true" - }, - "id": 443 + } }, { + "id": 642, "properties": { "instrument": "hat", "note": "6", "powered": "false" - }, - "id": 444 + } }, { + "id": 643, "properties": { "instrument": "hat", "note": "7", "powered": "true" - }, - "id": 445 + } }, { + "id": 644, "properties": { "instrument": "hat", "note": "7", "powered": "false" - }, - "id": 446 + } }, { + "id": 645, "properties": { "instrument": "hat", "note": "8", "powered": "true" - }, - "id": 447 + } }, { + "id": 646, "properties": { "instrument": "hat", "note": "8", "powered": "false" - }, - "id": 448 + } }, { + "id": 647, "properties": { "instrument": "hat", "note": "9", "powered": "true" - }, - "id": 449 + } }, { + "id": 648, "properties": { "instrument": "hat", "note": "9", "powered": "false" - }, - "id": 450 + } }, { + "id": 649, "properties": { "instrument": "hat", "note": "10", "powered": "true" - }, - "id": 451 + } }, { + "id": 650, "properties": { "instrument": "hat", "note": "10", "powered": "false" - }, - "id": 452 + } }, { + "id": 651, "properties": { "instrument": "hat", "note": "11", "powered": "true" - }, - "id": 453 + } }, { + "id": 652, "properties": { "instrument": "hat", "note": "11", "powered": "false" - }, - "id": 454 + } }, { + "id": 653, "properties": { "instrument": "hat", "note": "12", "powered": "true" - }, - "id": 455 + } }, { + "id": 654, "properties": { "instrument": "hat", "note": "12", "powered": "false" - }, - "id": 456 + } }, { + "id": 655, "properties": { "instrument": "hat", "note": "13", "powered": "true" - }, - "id": 457 + } }, { + "id": 656, "properties": { "instrument": "hat", "note": "13", "powered": "false" - }, - "id": 458 + } }, { + "id": 657, "properties": { "instrument": "hat", "note": "14", "powered": "true" - }, - "id": 459 + } }, { + "id": 658, "properties": { "instrument": "hat", "note": "14", "powered": "false" - }, - "id": 460 + } }, { + "id": 659, "properties": { "instrument": "hat", "note": "15", "powered": "true" - }, - "id": 461 + } }, { + "id": 660, "properties": { "instrument": "hat", "note": "15", "powered": "false" - }, - "id": 462 + } }, { + "id": 661, "properties": { "instrument": "hat", "note": "16", "powered": "true" - }, - "id": 463 + } }, { + "id": 662, "properties": { "instrument": "hat", "note": "16", "powered": "false" - }, - "id": 464 + } }, { + "id": 663, "properties": { "instrument": "hat", "note": "17", "powered": "true" - }, - "id": 465 + } }, { + "id": 664, "properties": { "instrument": "hat", "note": "17", "powered": "false" - }, - "id": 466 + } }, { + "id": 665, "properties": { "instrument": "hat", "note": "18", "powered": "true" - }, - "id": 467 + } }, { + "id": 666, "properties": { "instrument": "hat", "note": "18", "powered": "false" - }, - "id": 468 + } }, { + "id": 667, "properties": { "instrument": "hat", "note": "19", "powered": "true" - }, - "id": 469 + } }, { + "id": 668, "properties": { "instrument": "hat", "note": "19", "powered": "false" - }, - "id": 470 + } }, { + "id": 669, "properties": { "instrument": "hat", "note": "20", "powered": "true" - }, - "id": 471 + } }, { + "id": 670, "properties": { "instrument": "hat", "note": "20", "powered": "false" - }, - "id": 472 + } }, { + "id": 671, "properties": { "instrument": "hat", "note": "21", "powered": "true" - }, - "id": 473 + } }, { + "id": 672, "properties": { "instrument": "hat", "note": "21", "powered": "false" - }, - "id": 474 + } }, { + "id": 673, "properties": { "instrument": "hat", "note": "22", "powered": "true" - }, - "id": 475 + } }, { + "id": 674, "properties": { "instrument": "hat", "note": "22", "powered": "false" - }, - "id": 476 + } }, { + "id": 675, "properties": { "instrument": "hat", "note": "23", "powered": "true" - }, - "id": 477 + } }, { + "id": 676, "properties": { "instrument": "hat", "note": "23", "powered": "false" - }, - "id": 478 + } }, { + "id": 677, "properties": { "instrument": "hat", "note": "24", "powered": "true" - }, - "id": 479 + } }, { + "id": 678, "properties": { "instrument": "hat", "note": "24", "powered": "false" - }, - "id": 480 + } }, { + "id": 679, "properties": { "instrument": "bass", "note": "0", "powered": "true" - }, - "id": 481 + } }, { + "id": 680, "properties": { "instrument": "bass", "note": "0", "powered": "false" - }, - "id": 482 + } }, { + "id": 681, "properties": { "instrument": "bass", "note": "1", "powered": "true" - }, - "id": 483 + } }, { + "id": 682, "properties": { "instrument": "bass", "note": "1", "powered": "false" - }, - "id": 484 + } }, { + "id": 683, "properties": { "instrument": "bass", "note": "2", "powered": "true" - }, - "id": 485 + } }, { + "id": 684, "properties": { "instrument": "bass", "note": "2", "powered": "false" - }, - "id": 486 + } }, { + "id": 685, "properties": { "instrument": "bass", "note": "3", "powered": "true" - }, - "id": 487 + } }, { + "id": 686, "properties": { "instrument": "bass", "note": "3", "powered": "false" - }, - "id": 488 + } }, { + "id": 687, "properties": { "instrument": "bass", "note": "4", "powered": "true" - }, - "id": 489 + } }, { + "id": 688, "properties": { "instrument": "bass", "note": "4", "powered": "false" - }, - "id": 490 + } }, { + "id": 689, "properties": { "instrument": "bass", "note": "5", "powered": "true" - }, - "id": 491 + } }, { + "id": 690, "properties": { "instrument": "bass", "note": "5", "powered": "false" - }, - "id": 492 + } }, { + "id": 691, "properties": { "instrument": "bass", "note": "6", "powered": "true" - }, - "id": 493 + } }, { + "id": 692, "properties": { "instrument": "bass", "note": "6", "powered": "false" - }, - "id": 494 + } }, { + "id": 693, "properties": { "instrument": "bass", "note": "7", "powered": "true" - }, - "id": 495 + } }, { + "id": 694, "properties": { "instrument": "bass", "note": "7", "powered": "false" - }, - "id": 496 + } }, { + "id": 695, "properties": { "instrument": "bass", "note": "8", "powered": "true" - }, - "id": 497 + } }, { + "id": 696, "properties": { "instrument": "bass", "note": "8", "powered": "false" - }, - "id": 498 + } }, { + "id": 697, "properties": { "instrument": "bass", "note": "9", "powered": "true" - }, - "id": 499 + } }, { + "id": 698, "properties": { "instrument": "bass", "note": "9", "powered": "false" - }, - "id": 500 + } }, { + "id": 699, "properties": { "instrument": "bass", "note": "10", "powered": "true" - }, - "id": 501 + } }, { + "id": 700, "properties": { "instrument": "bass", "note": "10", "powered": "false" - }, - "id": 502 + } }, { + "id": 701, "properties": { "instrument": "bass", "note": "11", "powered": "true" - }, - "id": 503 + } }, { + "id": 702, "properties": { "instrument": "bass", "note": "11", "powered": "false" - }, - "id": 504 + } }, { + "id": 703, "properties": { "instrument": "bass", "note": "12", "powered": "true" - }, - "id": 505 + } }, { + "id": 704, "properties": { "instrument": "bass", "note": "12", "powered": "false" - }, - "id": 506 + } }, { + "id": 705, "properties": { "instrument": "bass", "note": "13", "powered": "true" - }, - "id": 507 + } }, { + "id": 706, "properties": { "instrument": "bass", "note": "13", "powered": "false" - }, - "id": 508 + } }, { + "id": 707, "properties": { "instrument": "bass", "note": "14", "powered": "true" - }, - "id": 509 + } }, { + "id": 708, "properties": { "instrument": "bass", "note": "14", "powered": "false" - }, - "id": 510 + } }, { + "id": 709, "properties": { "instrument": "bass", "note": "15", "powered": "true" - }, - "id": 511 + } }, { + "id": 710, "properties": { "instrument": "bass", "note": "15", "powered": "false" - }, - "id": 512 + } }, { + "id": 711, "properties": { "instrument": "bass", "note": "16", "powered": "true" - }, - "id": 513 + } }, { + "id": 712, "properties": { "instrument": "bass", "note": "16", "powered": "false" - }, - "id": 514 + } }, { + "id": 713, "properties": { "instrument": "bass", "note": "17", "powered": "true" - }, - "id": 515 + } }, { + "id": 714, "properties": { "instrument": "bass", "note": "17", "powered": "false" - }, - "id": 516 + } }, { + "id": 715, "properties": { "instrument": "bass", "note": "18", "powered": "true" - }, - "id": 517 + } }, { + "id": 716, "properties": { "instrument": "bass", "note": "18", "powered": "false" - }, - "id": 518 + } }, { + "id": 717, "properties": { "instrument": "bass", "note": "19", "powered": "true" - }, - "id": 519 + } }, { + "id": 718, "properties": { "instrument": "bass", "note": "19", "powered": "false" - }, - "id": 520 + } }, { + "id": 719, "properties": { "instrument": "bass", "note": "20", "powered": "true" - }, - "id": 521 + } }, { + "id": 720, "properties": { "instrument": "bass", "note": "20", "powered": "false" - }, - "id": 522 + } }, { + "id": 721, "properties": { "instrument": "bass", "note": "21", "powered": "true" - }, - "id": 523 + } }, { + "id": 722, "properties": { "instrument": "bass", "note": "21", "powered": "false" - }, - "id": 524 + } }, { + "id": 723, "properties": { "instrument": "bass", "note": "22", "powered": "true" - }, - "id": 525 + } }, { + "id": 724, "properties": { "instrument": "bass", "note": "22", "powered": "false" - }, - "id": 526 + } }, { + "id": 725, "properties": { "instrument": "bass", "note": "23", "powered": "true" - }, - "id": 527 + } }, { + "id": 726, "properties": { "instrument": "bass", "note": "23", "powered": "false" - }, - "id": 528 + } }, { + "id": 727, "properties": { "instrument": "bass", "note": "24", "powered": "true" - }, - "id": 529 + } }, { + "id": 728, "properties": { "instrument": "bass", "note": "24", "powered": "false" - }, - "id": 530 + } }, { + "id": 729, "properties": { "instrument": "flute", "note": "0", "powered": "true" - }, - "id": 531 + } }, { + "id": 730, "properties": { "instrument": "flute", "note": "0", "powered": "false" - }, - "id": 532 + } }, { + "id": 731, "properties": { "instrument": "flute", "note": "1", "powered": "true" - }, - "id": 533 + } }, { + "id": 732, "properties": { "instrument": "flute", "note": "1", "powered": "false" - }, - "id": 534 + } }, { + "id": 733, "properties": { "instrument": "flute", "note": "2", "powered": "true" - }, - "id": 535 + } }, { + "id": 734, "properties": { "instrument": "flute", "note": "2", "powered": "false" - }, - "id": 536 + } }, { + "id": 735, "properties": { "instrument": "flute", "note": "3", "powered": "true" - }, - "id": 537 + } }, { + "id": 736, "properties": { "instrument": "flute", "note": "3", "powered": "false" - }, - "id": 538 + } }, { + "id": 737, "properties": { "instrument": "flute", "note": "4", "powered": "true" - }, - "id": 539 + } }, { + "id": 738, "properties": { "instrument": "flute", "note": "4", "powered": "false" - }, - "id": 540 + } }, { + "id": 739, "properties": { "instrument": "flute", "note": "5", "powered": "true" - }, - "id": 541 + } }, { + "id": 740, "properties": { "instrument": "flute", "note": "5", "powered": "false" - }, - "id": 542 + } }, { + "id": 741, "properties": { "instrument": "flute", "note": "6", "powered": "true" - }, - "id": 543 + } }, { + "id": 742, "properties": { "instrument": "flute", "note": "6", "powered": "false" - }, - "id": 544 + } }, { + "id": 743, "properties": { "instrument": "flute", "note": "7", "powered": "true" - }, - "id": 545 + } }, { + "id": 744, "properties": { "instrument": "flute", "note": "7", "powered": "false" - }, - "id": 546 + } }, { + "id": 745, "properties": { "instrument": "flute", "note": "8", "powered": "true" - }, - "id": 547 + } }, { + "id": 746, "properties": { "instrument": "flute", "note": "8", "powered": "false" - }, - "id": 548 + } }, { + "id": 747, "properties": { "instrument": "flute", "note": "9", "powered": "true" - }, - "id": 549 + } }, { + "id": 748, "properties": { "instrument": "flute", "note": "9", "powered": "false" - }, - "id": 550 + } }, { + "id": 749, "properties": { "instrument": "flute", "note": "10", "powered": "true" - }, - "id": 551 + } }, { + "id": 750, "properties": { "instrument": "flute", "note": "10", "powered": "false" - }, - "id": 552 + } }, { + "id": 751, "properties": { "instrument": "flute", "note": "11", "powered": "true" - }, - "id": 553 + } }, { + "id": 752, "properties": { "instrument": "flute", "note": "11", "powered": "false" - }, - "id": 554 + } }, { + "id": 753, "properties": { "instrument": "flute", "note": "12", "powered": "true" - }, - "id": 555 + } }, { + "id": 754, "properties": { "instrument": "flute", "note": "12", "powered": "false" - }, - "id": 556 + } }, { + "id": 755, "properties": { "instrument": "flute", "note": "13", "powered": "true" - }, - "id": 557 + } }, { + "id": 756, "properties": { "instrument": "flute", "note": "13", "powered": "false" - }, - "id": 558 + } }, { + "id": 757, "properties": { "instrument": "flute", "note": "14", "powered": "true" - }, - "id": 559 + } }, { + "id": 758, "properties": { "instrument": "flute", "note": "14", "powered": "false" - }, - "id": 560 + } }, { + "id": 759, "properties": { "instrument": "flute", "note": "15", "powered": "true" - }, - "id": 561 + } }, { + "id": 760, "properties": { "instrument": "flute", "note": "15", "powered": "false" - }, - "id": 562 + } }, { + "id": 761, "properties": { "instrument": "flute", "note": "16", "powered": "true" - }, - "id": 563 + } }, { + "id": 762, "properties": { "instrument": "flute", "note": "16", "powered": "false" - }, - "id": 564 + } }, { + "id": 763, "properties": { "instrument": "flute", "note": "17", "powered": "true" - }, - "id": 565 + } }, { + "id": 764, "properties": { "instrument": "flute", "note": "17", "powered": "false" - }, - "id": 566 + } }, { + "id": 765, "properties": { "instrument": "flute", "note": "18", "powered": "true" - }, - "id": 567 + } }, { + "id": 766, "properties": { "instrument": "flute", "note": "18", "powered": "false" - }, - "id": 568 + } }, { + "id": 767, "properties": { "instrument": "flute", "note": "19", "powered": "true" - }, - "id": 569 + } }, { + "id": 768, "properties": { "instrument": "flute", "note": "19", "powered": "false" - }, - "id": 570 + } }, { + "id": 769, "properties": { "instrument": "flute", "note": "20", "powered": "true" - }, - "id": 571 + } }, { + "id": 770, "properties": { "instrument": "flute", "note": "20", "powered": "false" - }, - "id": 572 + } }, { + "id": 771, "properties": { "instrument": "flute", "note": "21", "powered": "true" - }, - "id": 573 + } }, { + "id": 772, "properties": { "instrument": "flute", "note": "21", "powered": "false" - }, - "id": 574 + } }, { + "id": 773, "properties": { "instrument": "flute", "note": "22", "powered": "true" - }, - "id": 575 + } }, { + "id": 774, "properties": { "instrument": "flute", "note": "22", "powered": "false" - }, - "id": 576 + } }, { + "id": 775, "properties": { "instrument": "flute", "note": "23", "powered": "true" - }, - "id": 577 + } }, { + "id": 776, "properties": { "instrument": "flute", "note": "23", "powered": "false" - }, - "id": 578 + } }, { + "id": 777, "properties": { "instrument": "flute", "note": "24", "powered": "true" - }, - "id": 579 + } }, { + "id": 778, "properties": { "instrument": "flute", "note": "24", "powered": "false" - }, - "id": 580 + } }, { + "id": 779, "properties": { "instrument": "bell", "note": "0", "powered": "true" - }, - "id": 581 + } }, { + "id": 780, "properties": { "instrument": "bell", "note": "0", "powered": "false" - }, - "id": 582 + } }, { + "id": 781, "properties": { "instrument": "bell", "note": "1", "powered": "true" - }, - "id": 583 + } }, { + "id": 782, "properties": { "instrument": "bell", "note": "1", "powered": "false" - }, - "id": 584 + } }, { + "id": 783, "properties": { "instrument": "bell", "note": "2", "powered": "true" - }, - "id": 585 + } }, { + "id": 784, "properties": { "instrument": "bell", "note": "2", "powered": "false" - }, - "id": 586 + } }, { + "id": 785, "properties": { "instrument": "bell", "note": "3", "powered": "true" - }, - "id": 587 + } }, { + "id": 786, "properties": { "instrument": "bell", "note": "3", "powered": "false" - }, - "id": 588 + } }, { + "id": 787, "properties": { "instrument": "bell", "note": "4", "powered": "true" - }, - "id": 589 + } }, { + "id": 788, "properties": { "instrument": "bell", "note": "4", "powered": "false" - }, - "id": 590 + } }, { + "id": 789, "properties": { "instrument": "bell", "note": "5", "powered": "true" - }, - "id": 591 + } }, { + "id": 790, "properties": { "instrument": "bell", "note": "5", "powered": "false" - }, - "id": 592 + } }, { + "id": 791, "properties": { "instrument": "bell", "note": "6", "powered": "true" - }, - "id": 593 + } }, { + "id": 792, "properties": { "instrument": "bell", "note": "6", "powered": "false" - }, - "id": 594 + } }, { + "id": 793, "properties": { "instrument": "bell", "note": "7", "powered": "true" - }, - "id": 595 + } }, { + "id": 794, "properties": { "instrument": "bell", "note": "7", "powered": "false" - }, - "id": 596 + } }, { + "id": 795, "properties": { "instrument": "bell", "note": "8", "powered": "true" - }, - "id": 597 + } }, { + "id": 796, "properties": { "instrument": "bell", "note": "8", "powered": "false" - }, - "id": 598 + } }, { + "id": 797, "properties": { "instrument": "bell", "note": "9", "powered": "true" - }, - "id": 599 + } }, { + "id": 798, "properties": { "instrument": "bell", "note": "9", "powered": "false" - }, - "id": 600 + } }, { + "id": 799, "properties": { "instrument": "bell", "note": "10", "powered": "true" - }, - "id": 601 + } }, { + "id": 800, "properties": { "instrument": "bell", "note": "10", "powered": "false" - }, - "id": 602 + } }, { + "id": 801, "properties": { "instrument": "bell", "note": "11", "powered": "true" - }, - "id": 603 + } }, { + "id": 802, "properties": { "instrument": "bell", "note": "11", "powered": "false" - }, - "id": 604 + } }, { + "id": 803, "properties": { "instrument": "bell", "note": "12", "powered": "true" - }, - "id": 605 + } }, { + "id": 804, "properties": { "instrument": "bell", "note": "12", "powered": "false" - }, - "id": 606 + } }, { + "id": 805, "properties": { "instrument": "bell", "note": "13", "powered": "true" - }, - "id": 607 + } }, { + "id": 806, "properties": { "instrument": "bell", "note": "13", "powered": "false" - }, - "id": 608 + } }, { + "id": 807, "properties": { "instrument": "bell", "note": "14", "powered": "true" - }, - "id": 609 + } }, { + "id": 808, "properties": { "instrument": "bell", "note": "14", "powered": "false" - }, - "id": 610 + } }, { + "id": 809, "properties": { "instrument": "bell", "note": "15", "powered": "true" - }, - "id": 611 + } }, { + "id": 810, "properties": { "instrument": "bell", "note": "15", "powered": "false" - }, - "id": 612 + } }, { + "id": 811, "properties": { "instrument": "bell", "note": "16", "powered": "true" - }, - "id": 613 + } }, { + "id": 812, "properties": { "instrument": "bell", "note": "16", "powered": "false" - }, - "id": 614 + } }, { + "id": 813, "properties": { "instrument": "bell", "note": "17", "powered": "true" - }, - "id": 615 + } }, { + "id": 814, "properties": { "instrument": "bell", "note": "17", "powered": "false" - }, - "id": 616 + } }, { + "id": 815, "properties": { "instrument": "bell", "note": "18", "powered": "true" - }, - "id": 617 + } }, { + "id": 816, "properties": { "instrument": "bell", "note": "18", "powered": "false" - }, - "id": 618 + } }, { + "id": 817, "properties": { "instrument": "bell", "note": "19", "powered": "true" - }, - "id": 619 + } }, { + "id": 818, "properties": { "instrument": "bell", "note": "19", "powered": "false" - }, - "id": 620 + } }, { + "id": 819, "properties": { "instrument": "bell", "note": "20", "powered": "true" - }, - "id": 621 + } }, { + "id": 820, "properties": { "instrument": "bell", "note": "20", "powered": "false" - }, - "id": 622 + } }, { + "id": 821, "properties": { "instrument": "bell", "note": "21", "powered": "true" - }, - "id": 623 + } }, { + "id": 822, "properties": { "instrument": "bell", "note": "21", "powered": "false" - }, - "id": 624 + } }, { + "id": 823, "properties": { "instrument": "bell", "note": "22", "powered": "true" - }, - "id": 625 + } }, { + "id": 824, "properties": { "instrument": "bell", "note": "22", "powered": "false" - }, - "id": 626 + } }, { + "id": 825, "properties": { "instrument": "bell", "note": "23", "powered": "true" - }, - "id": 627 + } }, { + "id": 826, "properties": { "instrument": "bell", "note": "23", "powered": "false" - }, - "id": 628 + } }, { + "id": 827, "properties": { "instrument": "bell", "note": "24", "powered": "true" - }, - "id": 629 + } }, { + "id": 828, "properties": { "instrument": "bell", "note": "24", "powered": "false" - }, - "id": 630 + } }, { + "id": 829, "properties": { "instrument": "guitar", "note": "0", "powered": "true" - }, - "id": 631 + } }, { + "id": 830, "properties": { "instrument": "guitar", "note": "0", "powered": "false" - }, - "id": 632 + } }, { + "id": 831, "properties": { "instrument": "guitar", "note": "1", "powered": "true" - }, - "id": 633 + } }, { + "id": 832, "properties": { "instrument": "guitar", "note": "1", "powered": "false" - }, - "id": 634 + } }, { + "id": 833, "properties": { "instrument": "guitar", "note": "2", "powered": "true" - }, - "id": 635 + } }, { + "id": 834, "properties": { "instrument": "guitar", "note": "2", "powered": "false" - }, - "id": 636 + } }, { + "id": 835, "properties": { "instrument": "guitar", "note": "3", "powered": "true" - }, - "id": 637 + } }, { + "id": 836, "properties": { "instrument": "guitar", "note": "3", "powered": "false" - }, - "id": 638 + } }, { + "id": 837, "properties": { "instrument": "guitar", "note": "4", "powered": "true" - }, - "id": 639 + } }, { + "id": 838, "properties": { "instrument": "guitar", "note": "4", "powered": "false" - }, - "id": 640 + } }, { + "id": 839, "properties": { "instrument": "guitar", "note": "5", "powered": "true" - }, - "id": 641 + } }, { + "id": 840, "properties": { "instrument": "guitar", "note": "5", "powered": "false" - }, - "id": 642 + } }, { + "id": 841, "properties": { "instrument": "guitar", "note": "6", "powered": "true" - }, - "id": 643 + } }, { + "id": 842, "properties": { "instrument": "guitar", "note": "6", "powered": "false" - }, - "id": 644 + } }, { + "id": 843, "properties": { "instrument": "guitar", "note": "7", "powered": "true" - }, - "id": 645 + } }, { + "id": 844, "properties": { "instrument": "guitar", "note": "7", "powered": "false" - }, - "id": 646 + } }, { + "id": 845, "properties": { "instrument": "guitar", "note": "8", "powered": "true" - }, - "id": 647 + } }, { + "id": 846, "properties": { "instrument": "guitar", "note": "8", "powered": "false" - }, - "id": 648 + } }, { + "id": 847, "properties": { "instrument": "guitar", "note": "9", "powered": "true" - }, - "id": 649 + } }, { + "id": 848, "properties": { "instrument": "guitar", "note": "9", "powered": "false" - }, - "id": 650 + } }, { + "id": 849, "properties": { "instrument": "guitar", "note": "10", "powered": "true" - }, - "id": 651 + } }, { + "id": 850, "properties": { "instrument": "guitar", "note": "10", "powered": "false" - }, - "id": 652 + } }, { + "id": 851, "properties": { "instrument": "guitar", "note": "11", "powered": "true" - }, - "id": 653 + } }, { + "id": 852, "properties": { "instrument": "guitar", "note": "11", "powered": "false" - }, - "id": 654 + } }, { + "id": 853, "properties": { "instrument": "guitar", "note": "12", "powered": "true" - }, - "id": 655 + } }, { + "id": 854, "properties": { "instrument": "guitar", "note": "12", "powered": "false" - }, - "id": 656 + } }, { + "id": 855, "properties": { "instrument": "guitar", "note": "13", "powered": "true" - }, - "id": 657 + } }, { + "id": 856, "properties": { "instrument": "guitar", "note": "13", "powered": "false" - }, - "id": 658 + } }, { + "id": 857, "properties": { "instrument": "guitar", "note": "14", "powered": "true" - }, - "id": 659 + } }, { + "id": 858, "properties": { "instrument": "guitar", "note": "14", "powered": "false" - }, - "id": 660 + } }, { + "id": 859, "properties": { "instrument": "guitar", "note": "15", "powered": "true" - }, - "id": 661 + } }, { + "id": 860, "properties": { "instrument": "guitar", "note": "15", "powered": "false" - }, - "id": 662 + } }, { + "id": 861, "properties": { "instrument": "guitar", "note": "16", "powered": "true" - }, - "id": 663 + } }, { + "id": 862, "properties": { "instrument": "guitar", "note": "16", "powered": "false" - }, - "id": 664 + } }, { + "id": 863, "properties": { "instrument": "guitar", "note": "17", "powered": "true" - }, - "id": 665 + } }, { + "id": 864, "properties": { "instrument": "guitar", "note": "17", "powered": "false" - }, - "id": 666 + } }, { + "id": 865, "properties": { "instrument": "guitar", "note": "18", "powered": "true" - }, - "id": 667 + } }, { + "id": 866, "properties": { "instrument": "guitar", "note": "18", "powered": "false" - }, - "id": 668 + } }, { + "id": 867, "properties": { "instrument": "guitar", "note": "19", "powered": "true" - }, - "id": 669 + } }, { + "id": 868, "properties": { "instrument": "guitar", "note": "19", "powered": "false" - }, - "id": 670 + } }, { + "id": 869, "properties": { "instrument": "guitar", "note": "20", "powered": "true" - }, - "id": 671 + } }, { + "id": 870, "properties": { "instrument": "guitar", "note": "20", "powered": "false" - }, - "id": 672 + } }, { + "id": 871, "properties": { "instrument": "guitar", "note": "21", "powered": "true" - }, - "id": 673 + } }, { + "id": 872, "properties": { "instrument": "guitar", "note": "21", "powered": "false" - }, - "id": 674 + } }, { + "id": 873, "properties": { "instrument": "guitar", "note": "22", "powered": "true" - }, - "id": 675 + } }, { + "id": 874, "properties": { "instrument": "guitar", "note": "22", "powered": "false" - }, - "id": 676 + } }, { + "id": 875, "properties": { "instrument": "guitar", "note": "23", "powered": "true" - }, - "id": 677 + } }, { + "id": 876, "properties": { "instrument": "guitar", "note": "23", "powered": "false" - }, - "id": 678 + } }, { + "id": 877, "properties": { "instrument": "guitar", "note": "24", "powered": "true" - }, - "id": 679 + } }, { + "id": 878, "properties": { "instrument": "guitar", "note": "24", "powered": "false" - }, - "id": 680 + } }, { + "id": 879, "properties": { "instrument": "chime", "note": "0", "powered": "true" - }, - "id": 681 + } }, { + "id": 880, "properties": { "instrument": "chime", "note": "0", "powered": "false" - }, - "id": 682 + } }, { + "id": 881, "properties": { "instrument": "chime", "note": "1", "powered": "true" - }, - "id": 683 + } }, { + "id": 882, "properties": { "instrument": "chime", "note": "1", "powered": "false" - }, - "id": 684 + } }, { + "id": 883, "properties": { "instrument": "chime", "note": "2", "powered": "true" - }, - "id": 685 + } }, { + "id": 884, "properties": { "instrument": "chime", "note": "2", "powered": "false" - }, - "id": 686 + } }, { + "id": 885, "properties": { "instrument": "chime", "note": "3", "powered": "true" - }, - "id": 687 + } }, { + "id": 886, "properties": { "instrument": "chime", "note": "3", "powered": "false" - }, - "id": 688 + } }, { + "id": 887, "properties": { "instrument": "chime", "note": "4", "powered": "true" - }, - "id": 689 + } }, { + "id": 888, "properties": { "instrument": "chime", "note": "4", "powered": "false" - }, - "id": 690 + } }, { + "id": 889, "properties": { "instrument": "chime", "note": "5", "powered": "true" - }, - "id": 691 + } }, { + "id": 890, "properties": { "instrument": "chime", "note": "5", "powered": "false" - }, - "id": 692 + } }, { + "id": 891, "properties": { "instrument": "chime", "note": "6", "powered": "true" - }, - "id": 693 + } }, { + "id": 892, "properties": { "instrument": "chime", "note": "6", "powered": "false" - }, - "id": 694 + } }, { + "id": 893, "properties": { "instrument": "chime", "note": "7", "powered": "true" - }, - "id": 695 + } }, { + "id": 894, "properties": { "instrument": "chime", "note": "7", "powered": "false" - }, - "id": 696 + } }, { + "id": 895, "properties": { "instrument": "chime", "note": "8", "powered": "true" - }, - "id": 697 + } }, { + "id": 896, "properties": { "instrument": "chime", "note": "8", "powered": "false" - }, - "id": 698 + } }, { + "id": 897, "properties": { "instrument": "chime", "note": "9", "powered": "true" - }, - "id": 699 + } }, { + "id": 898, "properties": { "instrument": "chime", "note": "9", "powered": "false" - }, - "id": 700 + } }, { + "id": 899, "properties": { "instrument": "chime", "note": "10", "powered": "true" - }, - "id": 701 + } }, { + "id": 900, "properties": { "instrument": "chime", "note": "10", "powered": "false" - }, - "id": 702 + } }, { + "id": 901, "properties": { "instrument": "chime", "note": "11", "powered": "true" - }, - "id": 703 + } }, { + "id": 902, "properties": { "instrument": "chime", "note": "11", "powered": "false" - }, - "id": 704 + } }, { + "id": 903, "properties": { "instrument": "chime", "note": "12", "powered": "true" - }, - "id": 705 + } }, { + "id": 904, "properties": { "instrument": "chime", "note": "12", "powered": "false" - }, - "id": 706 + } }, { + "id": 905, "properties": { "instrument": "chime", "note": "13", "powered": "true" - }, - "id": 707 + } }, { + "id": 906, "properties": { "instrument": "chime", "note": "13", "powered": "false" - }, - "id": 708 + } }, { + "id": 907, "properties": { "instrument": "chime", "note": "14", "powered": "true" - }, - "id": 709 + } }, { + "id": 908, "properties": { "instrument": "chime", "note": "14", "powered": "false" - }, - "id": 710 + } }, { + "id": 909, "properties": { "instrument": "chime", "note": "15", "powered": "true" - }, - "id": 711 + } }, { + "id": 910, "properties": { "instrument": "chime", "note": "15", "powered": "false" - }, - "id": 712 + } }, { + "id": 911, "properties": { "instrument": "chime", "note": "16", "powered": "true" - }, - "id": 713 + } }, { + "id": 912, "properties": { "instrument": "chime", "note": "16", "powered": "false" - }, - "id": 714 + } }, { + "id": 913, "properties": { "instrument": "chime", "note": "17", "powered": "true" - }, - "id": 715 + } }, { + "id": 914, "properties": { "instrument": "chime", "note": "17", "powered": "false" - }, - "id": 716 + } }, { + "id": 915, "properties": { "instrument": "chime", "note": "18", "powered": "true" - }, - "id": 717 + } }, { + "id": 916, "properties": { "instrument": "chime", "note": "18", "powered": "false" - }, - "id": 718 + } }, { + "id": 917, "properties": { "instrument": "chime", "note": "19", "powered": "true" - }, - "id": 719 + } }, { + "id": 918, "properties": { "instrument": "chime", "note": "19", "powered": "false" - }, - "id": 720 + } }, { + "id": 919, "properties": { "instrument": "chime", "note": "20", "powered": "true" - }, - "id": 721 + } }, { + "id": 920, "properties": { "instrument": "chime", "note": "20", "powered": "false" - }, - "id": 722 + } }, { + "id": 921, "properties": { "instrument": "chime", "note": "21", "powered": "true" - }, - "id": 723 + } }, { + "id": 922, "properties": { "instrument": "chime", "note": "21", "powered": "false" - }, - "id": 724 + } }, { + "id": 923, "properties": { "instrument": "chime", "note": "22", "powered": "true" - }, - "id": 725 + } }, { + "id": 924, "properties": { "instrument": "chime", "note": "22", "powered": "false" - }, - "id": 726 + } }, { + "id": 925, "properties": { "instrument": "chime", "note": "23", "powered": "true" - }, - "id": 727 + } }, { + "id": 926, "properties": { "instrument": "chime", "note": "23", "powered": "false" - }, - "id": 728 + } }, { + "id": 927, "properties": { "instrument": "chime", "note": "24", "powered": "true" - }, - "id": 729 + } }, { + "id": 928, "properties": { "instrument": "chime", "note": "24", "powered": "false" - }, - "id": 730 + } }, { + "id": 929, "properties": { "instrument": "xylophone", "note": "0", "powered": "true" - }, - "id": 731 + } }, { + "id": 930, "properties": { "instrument": "xylophone", "note": "0", "powered": "false" - }, - "id": 732 + } }, { + "id": 931, "properties": { "instrument": "xylophone", "note": "1", "powered": "true" - }, - "id": 733 + } }, { + "id": 932, "properties": { "instrument": "xylophone", "note": "1", "powered": "false" - }, - "id": 734 + } }, { + "id": 933, "properties": { "instrument": "xylophone", "note": "2", "powered": "true" - }, - "id": 735 + } }, { + "id": 934, "properties": { "instrument": "xylophone", "note": "2", "powered": "false" - }, - "id": 736 + } }, { + "id": 935, "properties": { "instrument": "xylophone", "note": "3", "powered": "true" - }, - "id": 737 + } }, { + "id": 936, "properties": { "instrument": "xylophone", "note": "3", "powered": "false" - }, - "id": 738 + } }, { + "id": 937, "properties": { "instrument": "xylophone", "note": "4", "powered": "true" - }, - "id": 739 + } }, { + "id": 938, "properties": { "instrument": "xylophone", "note": "4", "powered": "false" - }, - "id": 740 + } }, { + "id": 939, "properties": { "instrument": "xylophone", "note": "5", "powered": "true" - }, - "id": 741 + } }, { + "id": 940, "properties": { "instrument": "xylophone", "note": "5", "powered": "false" - }, - "id": 742 + } }, { + "id": 941, "properties": { "instrument": "xylophone", "note": "6", "powered": "true" - }, - "id": 743 + } }, { + "id": 942, "properties": { "instrument": "xylophone", "note": "6", "powered": "false" - }, - "id": 744 + } }, { + "id": 943, "properties": { "instrument": "xylophone", "note": "7", "powered": "true" - }, - "id": 745 + } }, { + "id": 944, "properties": { "instrument": "xylophone", "note": "7", "powered": "false" - }, - "id": 746 + } }, { + "id": 945, "properties": { "instrument": "xylophone", "note": "8", "powered": "true" - }, - "id": 747 + } }, { + "id": 946, "properties": { "instrument": "xylophone", "note": "8", "powered": "false" - }, - "id": 748 + } }, { + "id": 947, "properties": { "instrument": "xylophone", "note": "9", "powered": "true" - }, - "id": 749 + } }, { + "id": 948, "properties": { "instrument": "xylophone", "note": "9", "powered": "false" - }, - "id": 750 + } }, { + "id": 949, "properties": { "instrument": "xylophone", "note": "10", "powered": "true" - }, - "id": 751 + } }, { + "id": 950, "properties": { "instrument": "xylophone", "note": "10", "powered": "false" - }, - "id": 752 + } }, { + "id": 951, "properties": { "instrument": "xylophone", "note": "11", "powered": "true" - }, - "id": 753 + } }, { + "id": 952, "properties": { "instrument": "xylophone", "note": "11", "powered": "false" - }, - "id": 754 + } }, { + "id": 953, "properties": { "instrument": "xylophone", "note": "12", "powered": "true" - }, - "id": 755 + } }, { + "id": 954, "properties": { "instrument": "xylophone", "note": "12", "powered": "false" - }, - "id": 756 + } }, { + "id": 955, "properties": { "instrument": "xylophone", "note": "13", "powered": "true" - }, - "id": 757 + } }, { + "id": 956, "properties": { "instrument": "xylophone", "note": "13", "powered": "false" - }, - "id": 758 + } }, { + "id": 957, "properties": { "instrument": "xylophone", "note": "14", "powered": "true" - }, - "id": 759 + } }, { + "id": 958, "properties": { "instrument": "xylophone", "note": "14", "powered": "false" - }, - "id": 760 + } }, { + "id": 959, "properties": { "instrument": "xylophone", "note": "15", "powered": "true" - }, - "id": 761 + } }, { + "id": 960, "properties": { "instrument": "xylophone", "note": "15", "powered": "false" - }, - "id": 762 + } }, { + "id": 961, "properties": { "instrument": "xylophone", "note": "16", "powered": "true" - }, - "id": 763 + } }, { + "id": 962, "properties": { "instrument": "xylophone", "note": "16", "powered": "false" - }, - "id": 764 + } }, { + "id": 963, "properties": { "instrument": "xylophone", "note": "17", "powered": "true" - }, - "id": 765 + } }, { + "id": 964, "properties": { "instrument": "xylophone", "note": "17", "powered": "false" - }, - "id": 766 + } }, { + "id": 965, "properties": { "instrument": "xylophone", "note": "18", "powered": "true" - }, - "id": 767 + } }, { + "id": 966, "properties": { "instrument": "xylophone", "note": "18", "powered": "false" - }, - "id": 768 + } }, { + "id": 967, "properties": { "instrument": "xylophone", "note": "19", "powered": "true" - }, - "id": 769 + } }, { + "id": 968, "properties": { "instrument": "xylophone", "note": "19", "powered": "false" - }, - "id": 770 + } }, { + "id": 969, "properties": { "instrument": "xylophone", "note": "20", "powered": "true" - }, - "id": 771 + } }, { + "id": 970, "properties": { "instrument": "xylophone", "note": "20", "powered": "false" - }, - "id": 772 + } }, { + "id": 971, "properties": { "instrument": "xylophone", "note": "21", "powered": "true" - }, - "id": 773 + } }, { + "id": 972, "properties": { "instrument": "xylophone", "note": "21", "powered": "false" - }, - "id": 774 + } }, { + "id": 973, "properties": { "instrument": "xylophone", "note": "22", "powered": "true" - }, - "id": 775 + } }, { + "id": 974, "properties": { "instrument": "xylophone", "note": "22", "powered": "false" - }, - "id": 776 + } }, { + "id": 975, "properties": { "instrument": "xylophone", "note": "23", "powered": "true" - }, - "id": 777 + } }, { + "id": 976, "properties": { "instrument": "xylophone", "note": "23", "powered": "false" - }, - "id": 778 + } }, { + "id": 977, "properties": { "instrument": "xylophone", "note": "24", "powered": "true" - }, - "id": 779 + } }, { + "id": 978, "properties": { "instrument": "xylophone", "note": "24", "powered": "false" - }, - "id": 780 + } }, { + "id": 979, "properties": { "instrument": "iron_xylophone", "note": "0", "powered": "true" - }, - "id": 781 + } }, { + "id": 980, "properties": { "instrument": "iron_xylophone", "note": "0", "powered": "false" - }, - "id": 782 + } }, { + "id": 981, "properties": { "instrument": "iron_xylophone", "note": "1", "powered": "true" - }, - "id": 783 + } }, { + "id": 982, "properties": { "instrument": "iron_xylophone", "note": "1", "powered": "false" - }, - "id": 784 + } }, { + "id": 983, "properties": { "instrument": "iron_xylophone", "note": "2", "powered": "true" - }, - "id": 785 + } }, { + "id": 984, "properties": { "instrument": "iron_xylophone", "note": "2", "powered": "false" - }, - "id": 786 + } }, { + "id": 985, "properties": { "instrument": "iron_xylophone", "note": "3", "powered": "true" - }, - "id": 787 + } }, { + "id": 986, "properties": { "instrument": "iron_xylophone", "note": "3", "powered": "false" - }, - "id": 788 + } }, { + "id": 987, "properties": { "instrument": "iron_xylophone", "note": "4", "powered": "true" - }, - "id": 789 + } }, { + "id": 988, "properties": { "instrument": "iron_xylophone", "note": "4", "powered": "false" - }, - "id": 790 + } }, { + "id": 989, "properties": { "instrument": "iron_xylophone", "note": "5", "powered": "true" - }, - "id": 791 + } }, { + "id": 990, "properties": { "instrument": "iron_xylophone", "note": "5", "powered": "false" - }, - "id": 792 + } }, { + "id": 991, "properties": { "instrument": "iron_xylophone", "note": "6", "powered": "true" - }, - "id": 793 + } }, { + "id": 992, "properties": { "instrument": "iron_xylophone", "note": "6", "powered": "false" - }, - "id": 794 + } }, { + "id": 993, "properties": { "instrument": "iron_xylophone", "note": "7", "powered": "true" - }, - "id": 795 + } }, { + "id": 994, "properties": { "instrument": "iron_xylophone", "note": "7", "powered": "false" - }, - "id": 796 + } }, { + "id": 995, "properties": { "instrument": "iron_xylophone", "note": "8", "powered": "true" - }, - "id": 797 + } }, { + "id": 996, "properties": { "instrument": "iron_xylophone", "note": "8", "powered": "false" - }, - "id": 798 + } }, { + "id": 997, "properties": { "instrument": "iron_xylophone", "note": "9", "powered": "true" - }, - "id": 799 + } }, { + "id": 998, "properties": { "instrument": "iron_xylophone", "note": "9", "powered": "false" - }, - "id": 800 + } }, { + "id": 999, "properties": { "instrument": "iron_xylophone", "note": "10", "powered": "true" - }, - "id": 801 + } }, { + "id": 1000, "properties": { "instrument": "iron_xylophone", "note": "10", "powered": "false" - }, - "id": 802 + } }, { + "id": 1001, "properties": { "instrument": "iron_xylophone", "note": "11", "powered": "true" - }, - "id": 803 + } }, { + "id": 1002, "properties": { "instrument": "iron_xylophone", "note": "11", "powered": "false" - }, - "id": 804 + } }, { + "id": 1003, "properties": { "instrument": "iron_xylophone", "note": "12", "powered": "true" - }, - "id": 805 + } }, { + "id": 1004, "properties": { "instrument": "iron_xylophone", "note": "12", "powered": "false" - }, - "id": 806 + } }, { + "id": 1005, "properties": { "instrument": "iron_xylophone", "note": "13", "powered": "true" - }, - "id": 807 + } }, { + "id": 1006, "properties": { "instrument": "iron_xylophone", "note": "13", "powered": "false" - }, - "id": 808 + } }, { + "id": 1007, "properties": { "instrument": "iron_xylophone", "note": "14", "powered": "true" - }, - "id": 809 + } }, { + "id": 1008, "properties": { "instrument": "iron_xylophone", "note": "14", "powered": "false" - }, - "id": 810 + } }, { + "id": 1009, "properties": { "instrument": "iron_xylophone", "note": "15", "powered": "true" - }, - "id": 811 + } }, { + "id": 1010, "properties": { "instrument": "iron_xylophone", "note": "15", "powered": "false" - }, - "id": 812 + } }, { + "id": 1011, "properties": { "instrument": "iron_xylophone", "note": "16", "powered": "true" - }, - "id": 813 + } }, { + "id": 1012, "properties": { "instrument": "iron_xylophone", "note": "16", "powered": "false" - }, - "id": 814 + } }, { + "id": 1013, "properties": { "instrument": "iron_xylophone", "note": "17", "powered": "true" - }, - "id": 815 + } }, { + "id": 1014, "properties": { "instrument": "iron_xylophone", "note": "17", "powered": "false" - }, - "id": 816 + } }, { + "id": 1015, "properties": { "instrument": "iron_xylophone", "note": "18", "powered": "true" - }, - "id": 817 + } }, { + "id": 1016, "properties": { "instrument": "iron_xylophone", "note": "18", "powered": "false" - }, - "id": 818 + } }, { + "id": 1017, "properties": { "instrument": "iron_xylophone", "note": "19", "powered": "true" - }, - "id": 819 + } }, { + "id": 1018, "properties": { "instrument": "iron_xylophone", "note": "19", "powered": "false" - }, - "id": 820 + } }, { + "id": 1019, "properties": { "instrument": "iron_xylophone", "note": "20", "powered": "true" - }, - "id": 821 + } }, { + "id": 1020, "properties": { "instrument": "iron_xylophone", "note": "20", "powered": "false" - }, - "id": 822 + } }, { + "id": 1021, "properties": { "instrument": "iron_xylophone", "note": "21", "powered": "true" - }, - "id": 823 + } }, { + "id": 1022, "properties": { "instrument": "iron_xylophone", "note": "21", "powered": "false" - }, - "id": 824 + } }, { + "id": 1023, "properties": { "instrument": "iron_xylophone", "note": "22", "powered": "true" - }, - "id": 825 + } }, { + "id": 1024, "properties": { "instrument": "iron_xylophone", "note": "22", "powered": "false" - }, - "id": 826 + } }, { + "id": 1025, "properties": { "instrument": "iron_xylophone", "note": "23", "powered": "true" - }, - "id": 827 + } }, { + "id": 1026, "properties": { "instrument": "iron_xylophone", "note": "23", "powered": "false" - }, - "id": 828 + } }, { + "id": 1027, "properties": { "instrument": "iron_xylophone", "note": "24", "powered": "true" - }, - "id": 829 + } }, { + "id": 1028, "properties": { "instrument": "iron_xylophone", "note": "24", "powered": "false" - }, - "id": 830 + } }, { + "id": 1029, "properties": { "instrument": "cow_bell", "note": "0", "powered": "true" - }, - "id": 831 + } }, { + "id": 1030, "properties": { "instrument": "cow_bell", "note": "0", "powered": "false" - }, - "id": 832 + } }, { + "id": 1031, "properties": { "instrument": "cow_bell", "note": "1", "powered": "true" - }, - "id": 833 + } }, { + "id": 1032, "properties": { "instrument": "cow_bell", "note": "1", "powered": "false" - }, - "id": 834 + } }, { + "id": 1033, "properties": { "instrument": "cow_bell", "note": "2", "powered": "true" - }, - "id": 835 + } }, { + "id": 1034, "properties": { "instrument": "cow_bell", "note": "2", "powered": "false" - }, - "id": 836 + } }, { + "id": 1035, "properties": { "instrument": "cow_bell", "note": "3", "powered": "true" - }, - "id": 837 + } }, { + "id": 1036, "properties": { "instrument": "cow_bell", "note": "3", "powered": "false" - }, - "id": 838 + } }, { + "id": 1037, "properties": { "instrument": "cow_bell", "note": "4", "powered": "true" - }, - "id": 839 + } }, { + "id": 1038, "properties": { "instrument": "cow_bell", "note": "4", "powered": "false" - }, - "id": 840 + } }, { + "id": 1039, "properties": { "instrument": "cow_bell", "note": "5", "powered": "true" - }, - "id": 841 + } }, { + "id": 1040, "properties": { "instrument": "cow_bell", "note": "5", "powered": "false" - }, - "id": 842 + } }, { + "id": 1041, "properties": { "instrument": "cow_bell", "note": "6", "powered": "true" - }, - "id": 843 + } }, { + "id": 1042, "properties": { "instrument": "cow_bell", "note": "6", "powered": "false" - }, - "id": 844 + } }, { + "id": 1043, "properties": { "instrument": "cow_bell", "note": "7", "powered": "true" - }, - "id": 845 + } }, { + "id": 1044, "properties": { "instrument": "cow_bell", "note": "7", "powered": "false" - }, - "id": 846 + } }, { + "id": 1045, "properties": { "instrument": "cow_bell", "note": "8", "powered": "true" - }, - "id": 847 + } }, { + "id": 1046, "properties": { "instrument": "cow_bell", "note": "8", "powered": "false" - }, - "id": 848 + } }, { + "id": 1047, "properties": { "instrument": "cow_bell", "note": "9", "powered": "true" - }, - "id": 849 + } }, { + "id": 1048, "properties": { "instrument": "cow_bell", "note": "9", "powered": "false" - }, - "id": 850 + } }, { + "id": 1049, "properties": { "instrument": "cow_bell", "note": "10", "powered": "true" - }, - "id": 851 + } }, { + "id": 1050, "properties": { "instrument": "cow_bell", "note": "10", "powered": "false" - }, - "id": 852 + } }, { + "id": 1051, "properties": { "instrument": "cow_bell", "note": "11", "powered": "true" - }, - "id": 853 + } }, { + "id": 1052, "properties": { "instrument": "cow_bell", "note": "11", "powered": "false" - }, - "id": 854 + } }, { + "id": 1053, "properties": { "instrument": "cow_bell", "note": "12", "powered": "true" - }, - "id": 855 + } }, { + "id": 1054, "properties": { "instrument": "cow_bell", "note": "12", "powered": "false" - }, - "id": 856 + } }, { + "id": 1055, "properties": { "instrument": "cow_bell", "note": "13", "powered": "true" - }, - "id": 857 + } }, { + "id": 1056, "properties": { "instrument": "cow_bell", "note": "13", "powered": "false" - }, - "id": 858 + } }, { + "id": 1057, "properties": { "instrument": "cow_bell", "note": "14", "powered": "true" - }, - "id": 859 + } }, { + "id": 1058, "properties": { "instrument": "cow_bell", "note": "14", "powered": "false" - }, - "id": 860 + } }, { + "id": 1059, "properties": { "instrument": "cow_bell", "note": "15", "powered": "true" - }, - "id": 861 + } }, { + "id": 1060, "properties": { "instrument": "cow_bell", "note": "15", "powered": "false" - }, - "id": 862 + } }, { + "id": 1061, "properties": { "instrument": "cow_bell", "note": "16", "powered": "true" - }, - "id": 863 + } }, { + "id": 1062, "properties": { "instrument": "cow_bell", "note": "16", "powered": "false" - }, - "id": 864 + } }, { + "id": 1063, "properties": { "instrument": "cow_bell", "note": "17", "powered": "true" - }, - "id": 865 + } }, { + "id": 1064, "properties": { "instrument": "cow_bell", "note": "17", "powered": "false" - }, - "id": 866 + } }, { + "id": 1065, "properties": { "instrument": "cow_bell", "note": "18", "powered": "true" - }, - "id": 867 + } }, { + "id": 1066, "properties": { "instrument": "cow_bell", "note": "18", "powered": "false" - }, - "id": 868 + } }, { + "id": 1067, "properties": { "instrument": "cow_bell", "note": "19", "powered": "true" - }, - "id": 869 + } }, { + "id": 1068, "properties": { "instrument": "cow_bell", "note": "19", "powered": "false" - }, - "id": 870 + } }, { + "id": 1069, "properties": { "instrument": "cow_bell", "note": "20", "powered": "true" - }, - "id": 871 + } }, { + "id": 1070, "properties": { "instrument": "cow_bell", "note": "20", "powered": "false" - }, - "id": 872 + } }, { + "id": 1071, "properties": { "instrument": "cow_bell", "note": "21", "powered": "true" - }, - "id": 873 + } }, { + "id": 1072, "properties": { "instrument": "cow_bell", "note": "21", "powered": "false" - }, - "id": 874 + } }, { + "id": 1073, "properties": { "instrument": "cow_bell", "note": "22", "powered": "true" - }, - "id": 875 + } }, { + "id": 1074, "properties": { "instrument": "cow_bell", "note": "22", "powered": "false" - }, - "id": 876 + } }, { + "id": 1075, "properties": { "instrument": "cow_bell", "note": "23", "powered": "true" - }, - "id": 877 + } }, { + "id": 1076, "properties": { "instrument": "cow_bell", "note": "23", "powered": "false" - }, - "id": 878 + } }, { + "id": 1077, "properties": { "instrument": "cow_bell", "note": "24", "powered": "true" - }, - "id": 879 + } }, { + "id": 1078, "properties": { "instrument": "cow_bell", "note": "24", "powered": "false" - }, - "id": 880 + } }, { + "id": 1079, "properties": { "instrument": "didgeridoo", "note": "0", "powered": "true" - }, - "id": 881 + } }, { + "id": 1080, "properties": { "instrument": "didgeridoo", "note": "0", "powered": "false" - }, - "id": 882 + } }, { + "id": 1081, "properties": { "instrument": "didgeridoo", "note": "1", "powered": "true" - }, - "id": 883 + } }, { + "id": 1082, "properties": { "instrument": "didgeridoo", "note": "1", "powered": "false" - }, - "id": 884 + } }, { + "id": 1083, "properties": { "instrument": "didgeridoo", "note": "2", "powered": "true" - }, - "id": 885 + } }, { - "properties": { - "instrument": "didgeridoo", - "note": "2", - "powered": "false" - }, - "id": 886 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "3", - "powered": "true" - }, - "id": 887 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "3", - "powered": "false" - }, - "id": 888 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "4", - "powered": "true" - }, - "id": 889 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "4", - "powered": "false" - }, - "id": 890 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "5", - "powered": "true" - }, - "id": 891 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "5", - "powered": "false" - }, - "id": 892 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "6", - "powered": "true" - }, - "id": 893 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "6", - "powered": "false" - }, - "id": 894 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "7", - "powered": "true" - }, - "id": 895 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "7", - "powered": "false" - }, - "id": 896 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "8", - "powered": "true" - }, - "id": 897 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "8", - "powered": "false" - }, - "id": 898 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "9", - "powered": "true" - }, - "id": 899 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "9", - "powered": "false" - }, - "id": 900 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "10", - "powered": "true" - }, - "id": 901 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "10", - "powered": "false" - }, - "id": 902 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "11", - "powered": "true" - }, - "id": 903 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "11", - "powered": "false" - }, - "id": 904 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "12", - "powered": "true" - }, - "id": 905 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "12", - "powered": "false" - }, - "id": 906 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "13", - "powered": "true" - }, - "id": 907 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "13", - "powered": "false" - }, - "id": 908 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "14", - "powered": "true" - }, - "id": 909 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "14", - "powered": "false" - }, - "id": 910 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "15", - "powered": "true" - }, - "id": 911 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "15", - "powered": "false" - }, - "id": 912 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "16", - "powered": "true" - }, - "id": 913 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "16", - "powered": "false" - }, - "id": 914 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "17", - "powered": "true" - }, - "id": 915 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "17", - "powered": "false" - }, - "id": 916 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "18", - "powered": "true" - }, - "id": 917 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "18", - "powered": "false" - }, - "id": 918 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "19", - "powered": "true" - }, - "id": 919 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "19", - "powered": "false" - }, - "id": 920 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "20", - "powered": "true" - }, - "id": 921 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "20", - "powered": "false" - }, - "id": 922 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "21", - "powered": "true" - }, - "id": 923 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "21", - "powered": "false" - }, - "id": 924 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "22", - "powered": "true" - }, - "id": 925 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "22", - "powered": "false" - }, - "id": 926 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "23", - "powered": "true" - }, - "id": 927 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "23", - "powered": "false" - }, - "id": 928 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "24", - "powered": "true" - }, - "id": 929 - }, - { - "properties": { - "instrument": "didgeridoo", - "note": "24", - "powered": "false" - }, - "id": 930 - }, - { - "properties": { - "instrument": "bit", - "note": "0", - "powered": "true" - }, - "id": 931 - }, - { - "properties": { - "instrument": "bit", - "note": "0", - "powered": "false" - }, - "id": 932 - }, - { - "properties": { - "instrument": "bit", - "note": "1", - "powered": "true" - }, - "id": 933 - }, - { - "properties": { - "instrument": "bit", - "note": "1", - "powered": "false" - }, - "id": 934 - }, - { - "properties": { - "instrument": "bit", - "note": "2", - "powered": "true" - }, - "id": 935 - }, - { - "properties": { - "instrument": "bit", - "note": "2", - "powered": "false" - }, - "id": 936 - }, - { - "properties": { - "instrument": "bit", - "note": "3", - "powered": "true" - }, - "id": 937 - }, - { - "properties": { - "instrument": "bit", - "note": "3", - "powered": "false" - }, - "id": 938 - }, - { - "properties": { - "instrument": "bit", - "note": "4", - "powered": "true" - }, - "id": 939 - }, - { - "properties": { - "instrument": "bit", - "note": "4", - "powered": "false" - }, - "id": 940 - }, - { - "properties": { - "instrument": "bit", - "note": "5", - "powered": "true" - }, - "id": 941 - }, - { - "properties": { - "instrument": "bit", - "note": "5", - "powered": "false" - }, - "id": 942 - }, - { - "properties": { - "instrument": "bit", - "note": "6", - "powered": "true" - }, - "id": 943 - }, - { - "properties": { - "instrument": "bit", - "note": "6", - "powered": "false" - }, - "id": 944 - }, - { - "properties": { - "instrument": "bit", - "note": "7", - "powered": "true" - }, - "id": 945 - }, - { - "properties": { - "instrument": "bit", - "note": "7", - "powered": "false" - }, - "id": 946 - }, - { - "properties": { - "instrument": "bit", - "note": "8", - "powered": "true" - }, - "id": 947 - }, - { - "properties": { - "instrument": "bit", - "note": "8", - "powered": "false" - }, - "id": 948 - }, - { - "properties": { - "instrument": "bit", - "note": "9", - "powered": "true" - }, - "id": 949 - }, - { - "properties": { - "instrument": "bit", - "note": "9", - "powered": "false" - }, - "id": 950 - }, - { - "properties": { - "instrument": "bit", - "note": "10", - "powered": "true" - }, - "id": 951 - }, - { - "properties": { - "instrument": "bit", - "note": "10", - "powered": "false" - }, - "id": 952 - }, - { - "properties": { - "instrument": "bit", - "note": "11", - "powered": "true" - }, - "id": 953 - }, - { - "properties": { - "instrument": "bit", - "note": "11", - "powered": "false" - }, - "id": 954 - }, - { - "properties": { - "instrument": "bit", - "note": "12", - "powered": "true" - }, - "id": 955 - }, - { - "properties": { - "instrument": "bit", - "note": "12", - "powered": "false" - }, - "id": 956 - }, - { - "properties": { - "instrument": "bit", - "note": "13", - "powered": "true" - }, - "id": 957 - }, - { - "properties": { - "instrument": "bit", - "note": "13", - "powered": "false" - }, - "id": 958 - }, - { - "properties": { - "instrument": "bit", - "note": "14", - "powered": "true" - }, - "id": 959 - }, - { - "properties": { - "instrument": "bit", - "note": "14", - "powered": "false" - }, - "id": 960 - }, - { - "properties": { - "instrument": "bit", - "note": "15", - "powered": "true" - }, - "id": 961 - }, - { - "properties": { - "instrument": "bit", - "note": "15", - "powered": "false" - }, - "id": 962 - }, - { - "properties": { - "instrument": "bit", - "note": "16", - "powered": "true" - }, - "id": 963 - }, - { - "properties": { - "instrument": "bit", - "note": "16", - "powered": "false" - }, - "id": 964 - }, - { - "properties": { - "instrument": "bit", - "note": "17", - "powered": "true" - }, - "id": 965 - }, - { - "properties": { - "instrument": "bit", - "note": "17", - "powered": "false" - }, - "id": 966 - }, - { - "properties": { - "instrument": "bit", - "note": "18", - "powered": "true" - }, - "id": 967 - }, - { - "properties": { - "instrument": "bit", - "note": "18", - "powered": "false" - }, - "id": 968 - }, - { - "properties": { - "instrument": "bit", - "note": "19", - "powered": "true" - }, - "id": 969 - }, - { - "properties": { - "instrument": "bit", - "note": "19", - "powered": "false" - }, - "id": 970 - }, - { - "properties": { - "instrument": "bit", - "note": "20", - "powered": "true" - }, - "id": 971 - }, - { - "properties": { - "instrument": "bit", - "note": "20", - "powered": "false" - }, - "id": 972 - }, - { - "properties": { - "instrument": "bit", - "note": "21", - "powered": "true" - }, - "id": 973 - }, - { - "properties": { - "instrument": "bit", - "note": "21", - "powered": "false" - }, - "id": 974 - }, - { - "properties": { - "instrument": "bit", - "note": "22", - "powered": "true" - }, - "id": 975 - }, - { - "properties": { - "instrument": "bit", - "note": "22", - "powered": "false" - }, - "id": 976 - }, - { - "properties": { - "instrument": "bit", - "note": "23", - "powered": "true" - }, - "id": 977 - }, - { - "properties": { - "instrument": "bit", - "note": "23", - "powered": "false" - }, - "id": 978 - }, - { - "properties": { - "instrument": "bit", - "note": "24", - "powered": "true" - }, - "id": 979 - }, - { - "properties": { - "instrument": "bit", - "note": "24", - "powered": "false" - }, - "id": 980 - }, - { - "properties": { - "instrument": "banjo", - "note": "0", - "powered": "true" - }, - "id": 981 - }, - { - "properties": { - "instrument": "banjo", - "note": "0", - "powered": "false" - }, - "id": 982 - }, - { - "properties": { - "instrument": "banjo", - "note": "1", - "powered": "true" - }, - "id": 983 - }, - { - "properties": { - "instrument": "banjo", - "note": "1", - "powered": "false" - }, - "id": 984 - }, - { - "properties": { - "instrument": "banjo", - "note": "2", - "powered": "true" - }, - "id": 985 - }, - { - "properties": { - "instrument": "banjo", - "note": "2", - "powered": "false" - }, - "id": 986 - }, - { - "properties": { - "instrument": "banjo", - "note": "3", - "powered": "true" - }, - "id": 987 - }, - { - "properties": { - "instrument": "banjo", - "note": "3", - "powered": "false" - }, - "id": 988 - }, - { - "properties": { - "instrument": "banjo", - "note": "4", - "powered": "true" - }, - "id": 989 - }, - { - "properties": { - "instrument": "banjo", - "note": "4", - "powered": "false" - }, - "id": 990 - }, - { - "properties": { - "instrument": "banjo", - "note": "5", - "powered": "true" - }, - "id": 991 - }, - { - "properties": { - "instrument": "banjo", - "note": "5", - "powered": "false" - }, - "id": 992 - }, - { - "properties": { - "instrument": "banjo", - "note": "6", - "powered": "true" - }, - "id": 993 - }, - { - "properties": { - "instrument": "banjo", - "note": "6", - "powered": "false" - }, - "id": 994 - }, - { - "properties": { - "instrument": "banjo", - "note": "7", - "powered": "true" - }, - "id": 995 - }, - { - "properties": { - "instrument": "banjo", - "note": "7", - "powered": "false" - }, - "id": 996 - }, - { - "properties": { - "instrument": "banjo", - "note": "8", - "powered": "true" - }, - "id": 997 - }, - { - "properties": { - "instrument": "banjo", - "note": "8", - "powered": "false" - }, - "id": 998 - }, - { - "properties": { - "instrument": "banjo", - "note": "9", - "powered": "true" - }, - "id": 999 - }, - { - "properties": { - "instrument": "banjo", - "note": "9", - "powered": "false" - }, - "id": 1000 - }, - { - "properties": { - "instrument": "banjo", - "note": "10", - "powered": "true" - }, - "id": 1001 - }, - { - "properties": { - "instrument": "banjo", - "note": "10", - "powered": "false" - }, - "id": 1002 - }, - { - "properties": { - "instrument": "banjo", - "note": "11", - "powered": "true" - }, - "id": 1003 - }, - { - "properties": { - "instrument": "banjo", - "note": "11", - "powered": "false" - }, - "id": 1004 - }, - { - "properties": { - "instrument": "banjo", - "note": "12", - "powered": "true" - }, - "id": 1005 - }, - { - "properties": { - "instrument": "banjo", - "note": "12", - "powered": "false" - }, - "id": 1006 - }, - { - "properties": { - "instrument": "banjo", - "note": "13", - "powered": "true" - }, - "id": 1007 - }, - { - "properties": { - "instrument": "banjo", - "note": "13", - "powered": "false" - }, - "id": 1008 - }, - { - "properties": { - "instrument": "banjo", - "note": "14", - "powered": "true" - }, - "id": 1009 - }, - { - "properties": { - "instrument": "banjo", - "note": "14", - "powered": "false" - }, - "id": 1010 - }, - { - "properties": { - "instrument": "banjo", - "note": "15", - "powered": "true" - }, - "id": 1011 - }, - { - "properties": { - "instrument": "banjo", - "note": "15", - "powered": "false" - }, - "id": 1012 - }, - { - "properties": { - "instrument": "banjo", - "note": "16", - "powered": "true" - }, - "id": 1013 - }, - { - "properties": { - "instrument": "banjo", - "note": "16", - "powered": "false" - }, - "id": 1014 - }, - { - "properties": { - "instrument": "banjo", - "note": "17", - "powered": "true" - }, - "id": 1015 - }, - { - "properties": { - "instrument": "banjo", - "note": "17", - "powered": "false" - }, - "id": 1016 - }, - { - "properties": { - "instrument": "banjo", - "note": "18", - "powered": "true" - }, - "id": 1017 - }, - { - "properties": { - "instrument": "banjo", - "note": "18", - "powered": "false" - }, - "id": 1018 - }, - { - "properties": { - "instrument": "banjo", - "note": "19", - "powered": "true" - }, - "id": 1019 - }, - { - "properties": { - "instrument": "banjo", - "note": "19", - "powered": "false" - }, - "id": 1020 - }, - { - "properties": { - "instrument": "banjo", - "note": "20", - "powered": "true" - }, - "id": 1021 - }, - { - "properties": { - "instrument": "banjo", - "note": "20", - "powered": "false" - }, - "id": 1022 - }, - { - "properties": { - "instrument": "banjo", - "note": "21", - "powered": "true" - }, - "id": 1023 - }, - { - "properties": { - "instrument": "banjo", - "note": "21", - "powered": "false" - }, - "id": 1024 - }, - { - "properties": { - "instrument": "banjo", - "note": "22", - "powered": "true" - }, - "id": 1025 - }, - { - "properties": { - "instrument": "banjo", - "note": "22", - "powered": "false" - }, - "id": 1026 - }, - { - "properties": { - "instrument": "banjo", - "note": "23", - "powered": "true" - }, - "id": 1027 - }, - { - "properties": { - "instrument": "banjo", - "note": "23", - "powered": "false" - }, - "id": 1028 - }, - { - "properties": { - "instrument": "banjo", - "note": "24", - "powered": "true" - }, - "id": 1029 - }, - { - "properties": { - "instrument": "banjo", - "note": "24", - "powered": "false" - }, - "id": 1030 - }, - { - "properties": { - "instrument": "pling", - "note": "0", - "powered": "true" - }, - "id": 1031 - }, - { - "properties": { - "instrument": "pling", - "note": "0", - "powered": "false" - }, - "id": 1032 - }, - { - "properties": { - "instrument": "pling", - "note": "1", - "powered": "true" - }, - "id": 1033 - }, - { - "properties": { - "instrument": "pling", - "note": "1", - "powered": "false" - }, - "id": 1034 - }, - { - "properties": { - "instrument": "pling", - "note": "2", - "powered": "true" - }, - "id": 1035 - }, - { - "properties": { - "instrument": "pling", - "note": "2", - "powered": "false" - }, - "id": 1036 - }, - { - "properties": { - "instrument": "pling", - "note": "3", - "powered": "true" - }, - "id": 1037 - }, - { - "properties": { - "instrument": "pling", - "note": "3", - "powered": "false" - }, - "id": 1038 - }, - { - "properties": { - "instrument": "pling", - "note": "4", - "powered": "true" - }, - "id": 1039 - }, - { - "properties": { - "instrument": "pling", - "note": "4", - "powered": "false" - }, - "id": 1040 - }, - { - "properties": { - "instrument": "pling", - "note": "5", - "powered": "true" - }, - "id": 1041 - }, - { - "properties": { - "instrument": "pling", - "note": "5", - "powered": "false" - }, - "id": 1042 - }, - { - "properties": { - "instrument": "pling", - "note": "6", - "powered": "true" - }, - "id": 1043 - }, - { - "properties": { - "instrument": "pling", - "note": "6", - "powered": "false" - }, - "id": 1044 - }, - { - "properties": { - "instrument": "pling", - "note": "7", - "powered": "true" - }, - "id": 1045 - }, - { - "properties": { - "instrument": "pling", - "note": "7", - "powered": "false" - }, - "id": 1046 - }, - { - "properties": { - "instrument": "pling", - "note": "8", - "powered": "true" - }, - "id": 1047 - }, - { - "properties": { - "instrument": "pling", - "note": "8", - "powered": "false" - }, - "id": 1048 - }, - { - "properties": { - "instrument": "pling", - "note": "9", - "powered": "true" - }, - "id": 1049 - }, - { - "properties": { - "instrument": "pling", - "note": "9", - "powered": "false" - }, - "id": 1050 - }, - { - "properties": { - "instrument": "pling", - "note": "10", - "powered": "true" - }, - "id": 1051 - }, - { - "properties": { - "instrument": "pling", - "note": "10", - "powered": "false" - }, - "id": 1052 - }, - { - "properties": { - "instrument": "pling", - "note": "11", - "powered": "true" - }, - "id": 1053 - }, - { - "properties": { - "instrument": "pling", - "note": "11", - "powered": "false" - }, - "id": 1054 - }, - { - "properties": { - "instrument": "pling", - "note": "12", - "powered": "true" - }, - "id": 1055 - }, - { - "properties": { - "instrument": "pling", - "note": "12", - "powered": "false" - }, - "id": 1056 - }, - { - "properties": { - "instrument": "pling", - "note": "13", - "powered": "true" - }, - "id": 1057 - }, - { - "properties": { - "instrument": "pling", - "note": "13", - "powered": "false" - }, - "id": 1058 - }, - { - "properties": { - "instrument": "pling", - "note": "14", - "powered": "true" - }, - "id": 1059 - }, - { - "properties": { - "instrument": "pling", - "note": "14", - "powered": "false" - }, - "id": 1060 - }, - { - "properties": { - "instrument": "pling", - "note": "15", - "powered": "true" - }, - "id": 1061 - }, - { - "properties": { - "instrument": "pling", - "note": "15", - "powered": "false" - }, - "id": 1062 - }, - { - "properties": { - "instrument": "pling", - "note": "16", - "powered": "true" - }, - "id": 1063 - }, - { - "properties": { - "instrument": "pling", - "note": "16", - "powered": "false" - }, - "id": 1064 - }, - { - "properties": { - "instrument": "pling", - "note": "17", - "powered": "true" - }, - "id": 1065 - }, - { - "properties": { - "instrument": "pling", - "note": "17", - "powered": "false" - }, - "id": 1066 - }, - { - "properties": { - "instrument": "pling", - "note": "18", - "powered": "true" - }, - "id": 1067 - }, - { - "properties": { - "instrument": "pling", - "note": "18", - "powered": "false" - }, - "id": 1068 - }, - { - "properties": { - "instrument": "pling", - "note": "19", - "powered": "true" - }, - "id": 1069 - }, - { - "properties": { - "instrument": "pling", - "note": "19", - "powered": "false" - }, - "id": 1070 - }, - { - "properties": { - "instrument": "pling", - "note": "20", - "powered": "true" - }, - "id": 1071 - }, - { - "properties": { - "instrument": "pling", - "note": "20", - "powered": "false" - }, - "id": 1072 - }, - { - "properties": { - "instrument": "pling", - "note": "21", - "powered": "true" - }, - "id": 1073 - }, - { - "properties": { - "instrument": "pling", - "note": "21", - "powered": "false" - }, - "id": 1074 - }, - { - "properties": { - "instrument": "pling", - "note": "22", - "powered": "true" - }, - "id": 1075 - }, - { - "properties": { - "instrument": "pling", - "note": "22", - "powered": "false" - }, - "id": 1076 - }, - { - "properties": { - "instrument": "pling", - "note": "23", - "powered": "true" - }, - "id": 1077 - }, - { - "properties": { - "instrument": "pling", - "note": "23", - "powered": "false" - }, - "id": 1078 - }, - { - "properties": { - "instrument": "pling", - "note": "24", - "powered": "true" - }, - "id": 1079 - }, - { - "properties": { - "instrument": "pling", - "note": "24", - "powered": "false" - }, - "id": 1080 - } - ] - }, - "minecraft:white_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1081 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1082 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1083 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, "id": 1084, - "default": true + "properties": { + "instrument": "didgeridoo", + "note": "2", + "powered": "false" + } }, { + "id": 1085, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1085 + "instrument": "didgeridoo", + "note": "3", + "powered": "true" + } }, { + "id": 1086, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1086 + "instrument": "didgeridoo", + "note": "3", + "powered": "false" + } }, { + "id": 1087, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1087 + "instrument": "didgeridoo", + "note": "4", + "powered": "true" + } }, { + "id": 1088, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1088 + "instrument": "didgeridoo", + "note": "4", + "powered": "false" + } }, { + "id": 1089, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1089 + "instrument": "didgeridoo", + "note": "5", + "powered": "true" + } }, { + "id": 1090, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1090 + "instrument": "didgeridoo", + "note": "5", + "powered": "false" + } }, { + "id": 1091, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1091 + "instrument": "didgeridoo", + "note": "6", + "powered": "true" + } }, { + "id": 1092, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1092 + "instrument": "didgeridoo", + "note": "6", + "powered": "false" + } }, { + "id": 1093, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1093 + "instrument": "didgeridoo", + "note": "7", + "powered": "true" + } }, { + "id": 1094, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1094 + "instrument": "didgeridoo", + "note": "7", + "powered": "false" + } }, { + "id": 1095, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1095 + "instrument": "didgeridoo", + "note": "8", + "powered": "true" + } }, { + "id": 1096, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1096 - } - ] - }, - "minecraft:orange_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1097 + "instrument": "didgeridoo", + "note": "8", + "powered": "false" + } }, { + "id": 1097, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1098 + "instrument": "didgeridoo", + "note": "9", + "powered": "true" + } }, { + "id": 1098, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1099 + "instrument": "didgeridoo", + "note": "9", + "powered": "false" + } }, { + "id": 1099, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, + "instrument": "didgeridoo", + "note": "10", + "powered": "true" + } + }, + { "id": 1100, - "default": true + "properties": { + "instrument": "didgeridoo", + "note": "10", + "powered": "false" + } }, { + "id": 1101, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1101 + "instrument": "didgeridoo", + "note": "11", + "powered": "true" + } }, { + "id": 1102, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1102 + "instrument": "didgeridoo", + "note": "11", + "powered": "false" + } }, { + "id": 1103, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1103 + "instrument": "didgeridoo", + "note": "12", + "powered": "true" + } }, { + "id": 1104, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1104 + "instrument": "didgeridoo", + "note": "12", + "powered": "false" + } }, { + "id": 1105, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1105 + "instrument": "didgeridoo", + "note": "13", + "powered": "true" + } }, { + "id": 1106, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1106 + "instrument": "didgeridoo", + "note": "13", + "powered": "false" + } }, { + "id": 1107, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1107 + "instrument": "didgeridoo", + "note": "14", + "powered": "true" + } }, { + "id": 1108, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1108 + "instrument": "didgeridoo", + "note": "14", + "powered": "false" + } }, { + "id": 1109, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1109 + "instrument": "didgeridoo", + "note": "15", + "powered": "true" + } }, { + "id": 1110, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1110 + "instrument": "didgeridoo", + "note": "15", + "powered": "false" + } }, { + "id": 1111, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1111 + "instrument": "didgeridoo", + "note": "16", + "powered": "true" + } }, { + "id": 1112, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1112 - } - ] - }, - "minecraft:magenta_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1113 + "instrument": "didgeridoo", + "note": "16", + "powered": "false" + } }, { + "id": 1113, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1114 + "instrument": "didgeridoo", + "note": "17", + "powered": "true" + } }, { + "id": 1114, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1115 + "instrument": "didgeridoo", + "note": "17", + "powered": "false" + } }, { + "id": 1115, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, + "instrument": "didgeridoo", + "note": "18", + "powered": "true" + } + }, + { "id": 1116, - "default": true + "properties": { + "instrument": "didgeridoo", + "note": "18", + "powered": "false" + } }, { + "id": 1117, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1117 + "instrument": "didgeridoo", + "note": "19", + "powered": "true" + } }, { + "id": 1118, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1118 + "instrument": "didgeridoo", + "note": "19", + "powered": "false" + } }, { + "id": 1119, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1119 + "instrument": "didgeridoo", + "note": "20", + "powered": "true" + } }, { + "id": 1120, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1120 + "instrument": "didgeridoo", + "note": "20", + "powered": "false" + } }, { + "id": 1121, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1121 + "instrument": "didgeridoo", + "note": "21", + "powered": "true" + } }, { + "id": 1122, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1122 + "instrument": "didgeridoo", + "note": "21", + "powered": "false" + } }, { + "id": 1123, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1123 + "instrument": "didgeridoo", + "note": "22", + "powered": "true" + } }, { + "id": 1124, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1124 + "instrument": "didgeridoo", + "note": "22", + "powered": "false" + } }, { + "id": 1125, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1125 + "instrument": "didgeridoo", + "note": "23", + "powered": "true" + } }, { + "id": 1126, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1126 + "instrument": "didgeridoo", + "note": "23", + "powered": "false" + } }, { + "id": 1127, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1127 + "instrument": "didgeridoo", + "note": "24", + "powered": "true" + } }, { + "id": 1128, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1128 - } - ] - }, - "minecraft:light_blue_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1129 + "instrument": "didgeridoo", + "note": "24", + "powered": "false" + } }, { + "id": 1129, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1130 + "instrument": "bit", + "note": "0", + "powered": "true" + } }, { + "id": 1130, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1131 + "instrument": "bit", + "note": "0", + "powered": "false" + } }, { + "id": 1131, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, + "instrument": "bit", + "note": "1", + "powered": "true" + } + }, + { "id": 1132, - "default": true + "properties": { + "instrument": "bit", + "note": "1", + "powered": "false" + } }, { + "id": 1133, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1133 + "instrument": "bit", + "note": "2", + "powered": "true" + } }, { + "id": 1134, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1134 + "instrument": "bit", + "note": "2", + "powered": "false" + } }, { + "id": 1135, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1135 + "instrument": "bit", + "note": "3", + "powered": "true" + } }, { + "id": 1136, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1136 + "instrument": "bit", + "note": "3", + "powered": "false" + } }, { + "id": 1137, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1137 + "instrument": "bit", + "note": "4", + "powered": "true" + } }, { + "id": 1138, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1138 + "instrument": "bit", + "note": "4", + "powered": "false" + } }, { + "id": 1139, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1139 + "instrument": "bit", + "note": "5", + "powered": "true" + } }, { + "id": 1140, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1140 + "instrument": "bit", + "note": "5", + "powered": "false" + } }, { + "id": 1141, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1141 + "instrument": "bit", + "note": "6", + "powered": "true" + } }, { + "id": 1142, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1142 + "instrument": "bit", + "note": "6", + "powered": "false" + } }, { + "id": 1143, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1143 + "instrument": "bit", + "note": "7", + "powered": "true" + } }, { + "id": 1144, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1144 - } - ] - }, - "minecraft:yellow_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1145 + "instrument": "bit", + "note": "7", + "powered": "false" + } }, { + "id": 1145, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1146 + "instrument": "bit", + "note": "8", + "powered": "true" + } }, { + "id": 1146, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1147 + "instrument": "bit", + "note": "8", + "powered": "false" + } }, { + "id": 1147, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, + "instrument": "bit", + "note": "9", + "powered": "true" + } + }, + { "id": 1148, - "default": true + "properties": { + "instrument": "bit", + "note": "9", + "powered": "false" + } }, { + "id": 1149, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1149 + "instrument": "bit", + "note": "10", + "powered": "true" + } }, { + "id": 1150, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1150 + "instrument": "bit", + "note": "10", + "powered": "false" + } }, { + "id": 1151, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1151 + "instrument": "bit", + "note": "11", + "powered": "true" + } }, { + "id": 1152, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1152 + "instrument": "bit", + "note": "11", + "powered": "false" + } }, { + "id": 1153, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1153 + "instrument": "bit", + "note": "12", + "powered": "true" + } }, { + "id": 1154, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1154 + "instrument": "bit", + "note": "12", + "powered": "false" + } }, { + "id": 1155, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1155 + "instrument": "bit", + "note": "13", + "powered": "true" + } }, { + "id": 1156, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1156 + "instrument": "bit", + "note": "13", + "powered": "false" + } }, { + "id": 1157, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1157 + "instrument": "bit", + "note": "14", + "powered": "true" + } }, { + "id": 1158, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1158 + "instrument": "bit", + "note": "14", + "powered": "false" + } }, { + "id": 1159, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1159 + "instrument": "bit", + "note": "15", + "powered": "true" + } }, { + "id": 1160, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1160 - } - ] - }, - "minecraft:lime_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1161 + "instrument": "bit", + "note": "15", + "powered": "false" + } }, { + "id": 1161, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1162 + "instrument": "bit", + "note": "16", + "powered": "true" + } }, { + "id": 1162, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1163 + "instrument": "bit", + "note": "16", + "powered": "false" + } }, { + "id": 1163, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, + "instrument": "bit", + "note": "17", + "powered": "true" + } + }, + { "id": 1164, - "default": true + "properties": { + "instrument": "bit", + "note": "17", + "powered": "false" + } }, { + "id": 1165, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1165 + "instrument": "bit", + "note": "18", + "powered": "true" + } }, { + "id": 1166, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1166 + "instrument": "bit", + "note": "18", + "powered": "false" + } }, { + "id": 1167, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1167 + "instrument": "bit", + "note": "19", + "powered": "true" + } }, { + "id": 1168, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1168 + "instrument": "bit", + "note": "19", + "powered": "false" + } }, { + "id": 1169, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1169 + "instrument": "bit", + "note": "20", + "powered": "true" + } }, { + "id": 1170, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1170 + "instrument": "bit", + "note": "20", + "powered": "false" + } }, { + "id": 1171, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1171 + "instrument": "bit", + "note": "21", + "powered": "true" + } }, { + "id": 1172, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1172 + "instrument": "bit", + "note": "21", + "powered": "false" + } }, { + "id": 1173, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1173 + "instrument": "bit", + "note": "22", + "powered": "true" + } }, { + "id": 1174, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1174 + "instrument": "bit", + "note": "22", + "powered": "false" + } }, { + "id": 1175, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1175 + "instrument": "bit", + "note": "23", + "powered": "true" + } }, { + "id": 1176, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1176 - } - ] - }, - "minecraft:pink_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1177 + "instrument": "bit", + "note": "23", + "powered": "false" + } }, { + "id": 1177, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1178 + "instrument": "bit", + "note": "24", + "powered": "true" + } }, { + "id": 1178, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1179 + "instrument": "bit", + "note": "24", + "powered": "false" + } }, { + "id": 1179, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, + "instrument": "banjo", + "note": "0", + "powered": "true" + } + }, + { "id": 1180, - "default": true + "properties": { + "instrument": "banjo", + "note": "0", + "powered": "false" + } }, { + "id": 1181, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1181 + "instrument": "banjo", + "note": "1", + "powered": "true" + } }, { + "id": 1182, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1182 + "instrument": "banjo", + "note": "1", + "powered": "false" + } }, { + "id": 1183, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1183 + "instrument": "banjo", + "note": "2", + "powered": "true" + } }, { + "id": 1184, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1184 + "instrument": "banjo", + "note": "2", + "powered": "false" + } }, { + "id": 1185, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1185 + "instrument": "banjo", + "note": "3", + "powered": "true" + } }, { + "id": 1186, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1186 + "instrument": "banjo", + "note": "3", + "powered": "false" + } }, { + "id": 1187, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1187 + "instrument": "banjo", + "note": "4", + "powered": "true" + } }, { + "id": 1188, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1188 + "instrument": "banjo", + "note": "4", + "powered": "false" + } }, { + "id": 1189, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1189 + "instrument": "banjo", + "note": "5", + "powered": "true" + } }, { + "id": 1190, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1190 + "instrument": "banjo", + "note": "5", + "powered": "false" + } }, { + "id": 1191, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1191 + "instrument": "banjo", + "note": "6", + "powered": "true" + } }, { + "id": 1192, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1192 - } - ] - }, - "minecraft:gray_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1193 + "instrument": "banjo", + "note": "6", + "powered": "false" + } }, { + "id": 1193, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1194 + "instrument": "banjo", + "note": "7", + "powered": "true" + } }, { + "id": 1194, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1195 + "instrument": "banjo", + "note": "7", + "powered": "false" + } }, { + "id": 1195, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, + "instrument": "banjo", + "note": "8", + "powered": "true" + } + }, + { "id": 1196, - "default": true + "properties": { + "instrument": "banjo", + "note": "8", + "powered": "false" + } }, { + "id": 1197, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1197 + "instrument": "banjo", + "note": "9", + "powered": "true" + } }, { + "id": 1198, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1198 + "instrument": "banjo", + "note": "9", + "powered": "false" + } }, { + "id": 1199, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1199 + "instrument": "banjo", + "note": "10", + "powered": "true" + } }, { + "id": 1200, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1200 + "instrument": "banjo", + "note": "10", + "powered": "false" + } }, { + "id": 1201, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1201 + "instrument": "banjo", + "note": "11", + "powered": "true" + } }, { + "id": 1202, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1202 + "instrument": "banjo", + "note": "11", + "powered": "false" + } }, { + "id": 1203, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1203 + "instrument": "banjo", + "note": "12", + "powered": "true" + } }, { + "id": 1204, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1204 + "instrument": "banjo", + "note": "12", + "powered": "false" + } }, { + "id": 1205, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1205 + "instrument": "banjo", + "note": "13", + "powered": "true" + } }, { + "id": 1206, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1206 + "instrument": "banjo", + "note": "13", + "powered": "false" + } }, { + "id": 1207, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1207 + "instrument": "banjo", + "note": "14", + "powered": "true" + } }, { + "id": 1208, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1208 - } - ] - }, - "minecraft:light_gray_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1209 + "instrument": "banjo", + "note": "14", + "powered": "false" + } }, { + "id": 1209, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1210 + "instrument": "banjo", + "note": "15", + "powered": "true" + } }, { + "id": 1210, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1211 + "instrument": "banjo", + "note": "15", + "powered": "false" + } }, { + "id": 1211, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, + "instrument": "banjo", + "note": "16", + "powered": "true" + } + }, + { "id": 1212, - "default": true + "properties": { + "instrument": "banjo", + "note": "16", + "powered": "false" + } }, { + "id": 1213, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1213 + "instrument": "banjo", + "note": "17", + "powered": "true" + } }, { + "id": 1214, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1214 + "instrument": "banjo", + "note": "17", + "powered": "false" + } }, { + "id": 1215, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1215 + "instrument": "banjo", + "note": "18", + "powered": "true" + } }, { + "id": 1216, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1216 + "instrument": "banjo", + "note": "18", + "powered": "false" + } }, { + "id": 1217, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1217 + "instrument": "banjo", + "note": "19", + "powered": "true" + } }, { + "id": 1218, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1218 + "instrument": "banjo", + "note": "19", + "powered": "false" + } }, { + "id": 1219, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1219 + "instrument": "banjo", + "note": "20", + "powered": "true" + } }, { + "id": 1220, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1220 + "instrument": "banjo", + "note": "20", + "powered": "false" + } }, { + "id": 1221, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1221 + "instrument": "banjo", + "note": "21", + "powered": "true" + } }, { + "id": 1222, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1222 + "instrument": "banjo", + "note": "21", + "powered": "false" + } }, { + "id": 1223, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1223 + "instrument": "banjo", + "note": "22", + "powered": "true" + } }, { + "id": 1224, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1224 - } - ] - }, - "minecraft:cyan_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1225 + "instrument": "banjo", + "note": "22", + "powered": "false" + } }, { + "id": 1225, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1226 + "instrument": "banjo", + "note": "23", + "powered": "true" + } }, { + "id": 1226, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1227 + "instrument": "banjo", + "note": "23", + "powered": "false" + } }, { + "id": 1227, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, + "instrument": "banjo", + "note": "24", + "powered": "true" + } + }, + { "id": 1228, - "default": true + "properties": { + "instrument": "banjo", + "note": "24", + "powered": "false" + } }, { + "id": 1229, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1229 + "instrument": "pling", + "note": "0", + "powered": "true" + } }, { + "id": 1230, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1230 + "instrument": "pling", + "note": "0", + "powered": "false" + } }, { + "id": 1231, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1231 + "instrument": "pling", + "note": "1", + "powered": "true" + } }, { + "id": 1232, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1232 + "instrument": "pling", + "note": "1", + "powered": "false" + } }, { + "id": 1233, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1233 + "instrument": "pling", + "note": "2", + "powered": "true" + } }, { + "id": 1234, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1234 + "instrument": "pling", + "note": "2", + "powered": "false" + } }, { + "id": 1235, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1235 + "instrument": "pling", + "note": "3", + "powered": "true" + } }, { + "id": 1236, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1236 + "instrument": "pling", + "note": "3", + "powered": "false" + } }, { + "id": 1237, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1237 + "instrument": "pling", + "note": "4", + "powered": "true" + } }, { + "id": 1238, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1238 + "instrument": "pling", + "note": "4", + "powered": "false" + } }, { + "id": 1239, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1239 + "instrument": "pling", + "note": "5", + "powered": "true" + } }, { + "id": 1240, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1240 - } - ] - }, - "minecraft:purple_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1241 + "instrument": "pling", + "note": "5", + "powered": "false" + } }, { + "id": 1241, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1242 + "instrument": "pling", + "note": "6", + "powered": "true" + } }, { + "id": 1242, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1243 + "instrument": "pling", + "note": "6", + "powered": "false" + } }, { + "id": 1243, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, + "instrument": "pling", + "note": "7", + "powered": "true" + } + }, + { "id": 1244, - "default": true + "properties": { + "instrument": "pling", + "note": "7", + "powered": "false" + } }, { + "id": 1245, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1245 + "instrument": "pling", + "note": "8", + "powered": "true" + } }, { + "id": 1246, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1246 + "instrument": "pling", + "note": "8", + "powered": "false" + } }, { + "id": 1247, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1247 + "instrument": "pling", + "note": "9", + "powered": "true" + } }, { + "id": 1248, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1248 + "instrument": "pling", + "note": "9", + "powered": "false" + } }, { + "id": 1249, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1249 + "instrument": "pling", + "note": "10", + "powered": "true" + } }, { + "id": 1250, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1250 + "instrument": "pling", + "note": "10", + "powered": "false" + } }, { + "id": 1251, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1251 + "instrument": "pling", + "note": "11", + "powered": "true" + } }, { + "id": 1252, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1252 + "instrument": "pling", + "note": "11", + "powered": "false" + } }, { + "id": 1253, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1253 + "instrument": "pling", + "note": "12", + "powered": "true" + } }, { + "id": 1254, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1254 + "instrument": "pling", + "note": "12", + "powered": "false" + } }, { + "id": 1255, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1255 + "instrument": "pling", + "note": "13", + "powered": "true" + } }, { + "id": 1256, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1256 - } - ] - }, - "minecraft:blue_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1257 + "instrument": "pling", + "note": "13", + "powered": "false" + } }, { + "id": 1257, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1258 + "instrument": "pling", + "note": "14", + "powered": "true" + } }, { + "id": 1258, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1259 + "instrument": "pling", + "note": "14", + "powered": "false" + } }, { + "id": 1259, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, + "instrument": "pling", + "note": "15", + "powered": "true" + } + }, + { "id": 1260, - "default": true + "properties": { + "instrument": "pling", + "note": "15", + "powered": "false" + } }, { + "id": 1261, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1261 + "instrument": "pling", + "note": "16", + "powered": "true" + } }, { + "id": 1262, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1262 + "instrument": "pling", + "note": "16", + "powered": "false" + } }, { + "id": 1263, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1263 + "instrument": "pling", + "note": "17", + "powered": "true" + } }, { + "id": 1264, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1264 + "instrument": "pling", + "note": "17", + "powered": "false" + } }, { + "id": 1265, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1265 + "instrument": "pling", + "note": "18", + "powered": "true" + } }, { + "id": 1266, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1266 + "instrument": "pling", + "note": "18", + "powered": "false" + } }, { + "id": 1267, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1267 + "instrument": "pling", + "note": "19", + "powered": "true" + } }, { + "id": 1268, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1268 + "instrument": "pling", + "note": "19", + "powered": "false" + } }, { + "id": 1269, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1269 + "instrument": "pling", + "note": "20", + "powered": "true" + } }, { + "id": 1270, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1270 + "instrument": "pling", + "note": "20", + "powered": "false" + } }, { + "id": 1271, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1271 + "instrument": "pling", + "note": "21", + "powered": "true" + } }, { + "id": 1272, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1272 - } - ] - }, - "minecraft:brown_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1273 + "instrument": "pling", + "note": "21", + "powered": "false" + } }, { + "id": 1273, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1274 + "instrument": "pling", + "note": "22", + "powered": "true" + } }, { + "id": 1274, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1275 + "instrument": "pling", + "note": "22", + "powered": "false" + } }, { + "id": 1275, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, + "instrument": "pling", + "note": "23", + "powered": "true" + } + }, + { "id": 1276, - "default": true + "properties": { + "instrument": "pling", + "note": "23", + "powered": "false" + } }, { + "id": 1277, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1277 + "instrument": "pling", + "note": "24", + "powered": "true" + } }, { + "id": 1278, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1278 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1279 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1280 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1281 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1282 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1283 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1284 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1285 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1286 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1287 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1288 + "instrument": "pling", + "note": "24", + "powered": "false" + } } ] }, - "minecraft:green_bed": { + "minecraft:oak_button": { "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], "facing": [ "north", "south", "west", "east" ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1289 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1290 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1291 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1292, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1293 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1294 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1295 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1296 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1297 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1298 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1299 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1300 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1301 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1302 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1303 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1304 - } - ] - }, - "minecraft:red_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1305 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1306 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1307 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1308, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1309 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1310 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1311 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1312 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1313 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1314 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1315 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1316 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1317 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1318 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1319 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1320 - } - ] - }, - "minecraft:black_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1321 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1322 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1323 - }, - { - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1324, - "default": true - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1325 - }, - { - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1326 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1327 - }, - { - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1328 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1329 - }, - { - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1330 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1331 - }, - { - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1332 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1333 - }, - { - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1334 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1335 - }, - { - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1336 - } - ] - }, - "minecraft:powered_rail": { - "properties": { "powered": [ "true", "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ], - "waterlogged": [ - "true", - "false" ] }, "states": [ { + "id": 6939, "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "true" - }, - "id": 1337 + "face": "floor", + "facing": "north", + "powered": "true" + } }, { + "id": 6940, "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "false" - }, - "id": 1338 + "face": "floor", + "facing": "north", + "powered": "false" + } }, { + "id": 6941, "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "true" - }, - "id": 1339 + "face": "floor", + "facing": "south", + "powered": "true" + } }, { + "id": 6942, "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "false" - }, - "id": 1340 + "face": "floor", + "facing": "south", + "powered": "false" + } }, { + "id": 6943, "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "true" - }, - "id": 1341 + "face": "floor", + "facing": "west", + "powered": "true" + } }, { + "id": 6944, "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "false" - }, - "id": 1342 + "face": "floor", + "facing": "west", + "powered": "false" + } }, { + "id": 6945, "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "true" - }, - "id": 1343 + "face": "floor", + "facing": "east", + "powered": "true" + } }, { + "id": 6946, "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "false" - }, - "id": 1344 + "face": "floor", + "facing": "east", + "powered": "false" + } }, { + "id": 6947, "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "true" - }, - "id": 1345 + "face": "wall", + "facing": "north", + "powered": "true" + } }, { + "default": true, + "id": 6948, "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "false" - }, - "id": 1346 + "face": "wall", + "facing": "north", + "powered": "false" + } }, { + "id": 6949, "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "true" - }, - "id": 1347 + "face": "wall", + "facing": "south", + "powered": "true" + } }, { + "id": 6950, "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "false" - }, - "id": 1348 + "face": "wall", + "facing": "south", + "powered": "false" + } }, { + "id": 6951, "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "true" - }, - "id": 1349 + "face": "wall", + "facing": "west", + "powered": "true" + } }, { + "id": 6952, "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "false" - }, - "id": 1350, - "default": true + "face": "wall", + "facing": "west", + "powered": "false" + } }, { + "id": 6953, "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "true" - }, - "id": 1351 + "face": "wall", + "facing": "east", + "powered": "true" + } }, { + "id": 6954, "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "false" - }, - "id": 1352 + "face": "wall", + "facing": "east", + "powered": "false" + } }, { + "id": 6955, "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "true" - }, - "id": 1353 + "face": "ceiling", + "facing": "north", + "powered": "true" + } }, { + "id": 6956, "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "false" - }, - "id": 1354 + "face": "ceiling", + "facing": "north", + "powered": "false" + } }, { + "id": 6957, "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "true" - }, - "id": 1355 + "face": "ceiling", + "facing": "south", + "powered": "true" + } }, { + "id": 6958, "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "false" - }, - "id": 1356 + "face": "ceiling", + "facing": "south", + "powered": "false" + } }, { + "id": 6959, "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "true" - }, - "id": 1357 + "face": "ceiling", + "facing": "west", + "powered": "true" + } }, { + "id": 6960, "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "false" - }, - "id": 1358 + "face": "ceiling", + "facing": "west", + "powered": "false" + } }, { + "id": 6961, "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "true" - }, - "id": 1359 + "face": "ceiling", + "facing": "east", + "powered": "true" + } }, { + "id": 6962, "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "false" - }, - "id": 1360 + "face": "ceiling", + "facing": "east", + "powered": "false" + } } ] }, - "minecraft:detector_rail": { + "minecraft:oak_door": { "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "true" - }, - "id": 1361 - }, - { - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "false" - }, - "id": 1362 - }, - { - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "true" - }, - "id": 1363 - }, - { - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "false" - }, - "id": 1364 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "true" - }, - "id": 1365 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "false" - }, - "id": 1366 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "true" - }, - "id": 1367 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "false" - }, - "id": 1368 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "true" - }, - "id": 1369 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "false" - }, - "id": 1370 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "true" - }, - "id": 1371 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "false" - }, - "id": 1372 - }, - { - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "true" - }, - "id": 1373 - }, - { - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "false" - }, - "id": 1374, - "default": true - }, - { - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "true" - }, - "id": 1375 - }, - { - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "false" - }, - "id": 1376 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "true" - }, - "id": 1377 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "false" - }, - "id": 1378 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "true" - }, - "id": 1379 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "false" - }, - "id": 1380 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "true" - }, - "id": 1381 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "false" - }, - "id": 1382 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "true" - }, - "id": 1383 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "false" - }, - "id": 1384 - } - ] - }, - "minecraft:sticky_piston": { - "properties": { - "extended": [ - "true", - "false" - ], "facing": [ "north", - "east", "south", "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "extended": "true", - "facing": "north" - }, - "id": 1385 - }, - { - "properties": { - "extended": "true", - "facing": "east" - }, - "id": 1386 - }, - { - "properties": { - "extended": "true", - "facing": "south" - }, - "id": 1387 - }, - { - "properties": { - "extended": "true", - "facing": "west" - }, - "id": 1388 - }, - { - "properties": { - "extended": "true", - "facing": "up" - }, - "id": 1389 - }, - { - "properties": { - "extended": "true", - "facing": "down" - }, - "id": 1390 - }, - { - "properties": { - "extended": "false", - "facing": "north" - }, - "id": 1391, - "default": true - }, - { - "properties": { - "extended": "false", - "facing": "east" - }, - "id": 1392 - }, - { - "properties": { - "extended": "false", - "facing": "south" - }, - "id": 1393 - }, - { - "properties": { - "extended": "false", - "facing": "west" - }, - "id": 1394 - }, - { - "properties": { - "extended": "false", - "facing": "up" - }, - "id": 1395 - }, - { - "properties": { - "extended": "false", - "facing": "down" - }, - "id": 1396 - } - ] - }, - "minecraft:cobweb": { - "states": [ - { - "id": 1397, - "default": true - } - ] - }, - "minecraft:grass": { - "states": [ - { - "id": 1398, - "default": true - } - ] - }, - "minecraft:fern": { - "states": [ - { - "id": 1399, - "default": true - } - ] - }, - "minecraft:dead_bush": { - "states": [ - { - "id": 1400, - "default": true - } - ] - }, - "minecraft:seagrass": { - "states": [ - { - "id": 1401, - "default": true - } - ] - }, - "minecraft:tall_seagrass": { - "properties": { + "east" + ], "half": [ "upper", "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 1402 - }, - { - "properties": { - "half": "lower" - }, - "id": 1403, - "default": true - } - ] - }, - "minecraft:piston": { - "properties": { - "extended": [ + ], + "hinge": [ + "left", + "right" + ], + "open": [ "true", "false" ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "extended": "true", - "facing": "north" - }, - "id": 1404 - }, - { - "properties": { - "extended": "true", - "facing": "east" - }, - "id": 1405 - }, - { - "properties": { - "extended": "true", - "facing": "south" - }, - "id": 1406 - }, - { - "properties": { - "extended": "true", - "facing": "west" - }, - "id": 1407 - }, - { - "properties": { - "extended": "true", - "facing": "up" - }, - "id": 1408 - }, - { - "properties": { - "extended": "true", - "facing": "down" - }, - "id": 1409 - }, - { - "properties": { - "extended": "false", - "facing": "north" - }, - "id": 1410, - "default": true - }, - { - "properties": { - "extended": "false", - "facing": "east" - }, - "id": 1411 - }, - { - "properties": { - "extended": "false", - "facing": "south" - }, - "id": 1412 - }, - { - "properties": { - "extended": "false", - "facing": "west" - }, - "id": 1413 - }, - { - "properties": { - "extended": "false", - "facing": "up" - }, - "id": 1414 - }, - { - "properties": { - "extended": "false", - "facing": "down" - }, - "id": 1415 - } - ] - }, - "minecraft:piston_head": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "short": [ - "true", - "false" - ], - "type": [ - "normal", - "sticky" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "short": "true", - "type": "normal" - }, - "id": 1416 - }, - { - "properties": { - "facing": "north", - "short": "true", - "type": "sticky" - }, - "id": 1417 - }, - { - "properties": { - "facing": "north", - "short": "false", - "type": "normal" - }, - "id": 1418, - "default": true - }, - { - "properties": { - "facing": "north", - "short": "false", - "type": "sticky" - }, - "id": 1419 - }, - { - "properties": { - "facing": "east", - "short": "true", - "type": "normal" - }, - "id": 1420 - }, - { - "properties": { - "facing": "east", - "short": "true", - "type": "sticky" - }, - "id": 1421 - }, - { - "properties": { - "facing": "east", - "short": "false", - "type": "normal" - }, - "id": 1422 - }, - { - "properties": { - "facing": "east", - "short": "false", - "type": "sticky" - }, - "id": 1423 - }, - { - "properties": { - "facing": "south", - "short": "true", - "type": "normal" - }, - "id": 1424 - }, - { - "properties": { - "facing": "south", - "short": "true", - "type": "sticky" - }, - "id": 1425 - }, - { - "properties": { - "facing": "south", - "short": "false", - "type": "normal" - }, - "id": 1426 - }, - { - "properties": { - "facing": "south", - "short": "false", - "type": "sticky" - }, - "id": 1427 - }, - { - "properties": { - "facing": "west", - "short": "true", - "type": "normal" - }, - "id": 1428 - }, - { - "properties": { - "facing": "west", - "short": "true", - "type": "sticky" - }, - "id": 1429 - }, - { - "properties": { - "facing": "west", - "short": "false", - "type": "normal" - }, - "id": 1430 - }, - { - "properties": { - "facing": "west", - "short": "false", - "type": "sticky" - }, - "id": 1431 - }, - { - "properties": { - "facing": "up", - "short": "true", - "type": "normal" - }, - "id": 1432 - }, - { - "properties": { - "facing": "up", - "short": "true", - "type": "sticky" - }, - "id": 1433 - }, - { - "properties": { - "facing": "up", - "short": "false", - "type": "normal" - }, - "id": 1434 - }, - { - "properties": { - "facing": "up", - "short": "false", - "type": "sticky" - }, - "id": 1435 - }, - { - "properties": { - "facing": "down", - "short": "true", - "type": "normal" - }, - "id": 1436 - }, - { - "properties": { - "facing": "down", - "short": "true", - "type": "sticky" - }, - "id": 1437 - }, - { - "properties": { - "facing": "down", - "short": "false", - "type": "normal" - }, - "id": 1438 - }, - { - "properties": { - "facing": "down", - "short": "false", - "type": "sticky" - }, - "id": 1439 - } - ] - }, - "minecraft:white_wool": { - "states": [ - { - "id": 1440, - "default": true - } - ] - }, - "minecraft:orange_wool": { - "states": [ - { - "id": 1441, - "default": true - } - ] - }, - "minecraft:magenta_wool": { - "states": [ - { - "id": 1442, - "default": true - } - ] - }, - "minecraft:light_blue_wool": { - "states": [ - { - "id": 1443, - "default": true - } - ] - }, - "minecraft:yellow_wool": { - "states": [ - { - "id": 1444, - "default": true - } - ] - }, - "minecraft:lime_wool": { - "states": [ - { - "id": 1445, - "default": true - } - ] - }, - "minecraft:pink_wool": { - "states": [ - { - "id": 1446, - "default": true - } - ] - }, - "minecraft:gray_wool": { - "states": [ - { - "id": 1447, - "default": true - } - ] - }, - "minecraft:light_gray_wool": { - "states": [ - { - "id": 1448, - "default": true - } - ] - }, - "minecraft:cyan_wool": { - "states": [ - { - "id": 1449, - "default": true - } - ] - }, - "minecraft:purple_wool": { - "states": [ - { - "id": 1450, - "default": true - } - ] - }, - "minecraft:blue_wool": { - "states": [ - { - "id": 1451, - "default": true - } - ] - }, - "minecraft:brown_wool": { - "states": [ - { - "id": 1452, - "default": true - } - ] - }, - "minecraft:green_wool": { - "states": [ - { - "id": 1453, - "default": true - } - ] - }, - "minecraft:red_wool": { - "states": [ - { - "id": 1454, - "default": true - } - ] - }, - "minecraft:black_wool": { - "states": [ - { - "id": 1455, - "default": true - } - ] - }, - "minecraft:moving_piston": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "type": [ - "normal", - "sticky" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "type": "normal" - }, - "id": 1456, - "default": true - }, - { - "properties": { - "facing": "north", - "type": "sticky" - }, - "id": 1457 - }, - { - "properties": { - "facing": "east", - "type": "normal" - }, - "id": 1458 - }, - { - "properties": { - "facing": "east", - "type": "sticky" - }, - "id": 1459 - }, - { - "properties": { - "facing": "south", - "type": "normal" - }, - "id": 1460 - }, - { - "properties": { - "facing": "south", - "type": "sticky" - }, - "id": 1461 - }, - { - "properties": { - "facing": "west", - "type": "normal" - }, - "id": 1462 - }, - { - "properties": { - "facing": "west", - "type": "sticky" - }, - "id": 1463 - }, - { - "properties": { - "facing": "up", - "type": "normal" - }, - "id": 1464 - }, - { - "properties": { - "facing": "up", - "type": "sticky" - }, - "id": 1465 - }, - { - "properties": { - "facing": "down", - "type": "normal" - }, - "id": 1466 - }, - { - "properties": { - "facing": "down", - "type": "sticky" - }, - "id": 1467 - } - ] - }, - "minecraft:dandelion": { - "states": [ - { - "id": 1468, - "default": true - } - ] - }, - "minecraft:poppy": { - "states": [ - { - "id": 1469, - "default": true - } - ] - }, - "minecraft:blue_orchid": { - "states": [ - { - "id": 1470, - "default": true - } - ] - }, - "minecraft:allium": { - "states": [ - { - "id": 1471, - "default": true - } - ] - }, - "minecraft:azure_bluet": { - "states": [ - { - "id": 1472, - "default": true - } - ] - }, - "minecraft:red_tulip": { - "states": [ - { - "id": 1473, - "default": true - } - ] - }, - "minecraft:orange_tulip": { - "states": [ - { - "id": 1474, - "default": true - } - ] - }, - "minecraft:white_tulip": { - "states": [ - { - "id": 1475, - "default": true - } - ] - }, - "minecraft:pink_tulip": { - "states": [ - { - "id": 1476, - "default": true - } - ] - }, - "minecraft:oxeye_daisy": { - "states": [ - { - "id": 1477, - "default": true - } - ] - }, - "minecraft:cornflower": { - "states": [ - { - "id": 1478, - "default": true - } - ] - }, - "minecraft:wither_rose": { - "states": [ - { - "id": 1479, - "default": true - } - ] - }, - "minecraft:lily_of_the_valley": { - "states": [ - { - "id": 1480, - "default": true - } - ] - }, - "minecraft:brown_mushroom": { - "states": [ - { - "id": 1481, - "default": true - } - ] - }, - "minecraft:red_mushroom": { - "states": [ - { - "id": 1482, - "default": true - } - ] - }, - "minecraft:gold_block": { - "states": [ - { - "id": 1483, - "default": true - } - ] - }, - "minecraft:iron_block": { - "states": [ - { - "id": 1484, - "default": true - } - ] - }, - "minecraft:bricks": { - "states": [ - { - "id": 1485, - "default": true - } - ] - }, - "minecraft:tnt": { - "properties": { - "unstable": [ + "powered": [ "true", "false" ] }, "states": [ { + "id": 3860, "properties": { - "unstable": "true" - }, - "id": 1486 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 3861, "properties": { - "unstable": "false" - }, - "id": 1487, - "default": true + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 3862, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 3863, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 3864, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 3865, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 3866, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 3867, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 3868, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 3869, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 3870, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 3871, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 3872, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 3873, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 3874, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 3875, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 3876, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 3877, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 3878, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 3879, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 3880, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 3881, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 3882, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 3883, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 3884, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 3885, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 3886, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 3887, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 3888, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 3889, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 3890, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 3891, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 3892, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 3893, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 3894, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 3895, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 3896, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 3897, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 3898, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 3899, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 3900, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 3901, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 3902, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 3903, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 3904, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 3905, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 3906, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 3907, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 3908, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 3909, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 3910, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 3911, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 3912, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 3913, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 3914, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 3915, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 3916, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 3917, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 3918, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 3919, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 3920, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 3921, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 3922, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 3923, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } } ] }, - "minecraft:bookshelf": { + "minecraft:oak_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, "states": [ { - "id": 1488, - "default": true - } - ] - }, - "minecraft:mossy_cobblestone": { - "states": [ + "id": 4275, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, { - "id": 1489, - "default": true - } - ] - }, - "minecraft:obsidian": { - "states": [ + "id": 4276, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, { - "id": 1490, - "default": true - } - ] - }, - "minecraft:torch": { - "states": [ + "id": 4277, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, { - "id": 1491, - "default": true + "id": 4278, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 4279, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 4280, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 4281, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 4282, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 4283, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 4284, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 4285, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 4286, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 4287, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 4288, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 4289, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 4290, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 4291, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 4292, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 4293, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 4294, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 4295, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 4296, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 4297, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 4298, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 4299, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 4300, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 4301, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 4302, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 4303, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 4304, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 4305, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 4306, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:wall_torch": { + "minecraft:oak_fence_gate": { "properties": { "facing": [ "north", "south", "west", "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ] }, "states": [ { + "id": 5327, "properties": { - "facing": "north" - }, - "id": 1492, - "default": true + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 5328, "properties": { - "facing": "south" - }, - "id": 1493 + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 5329, "properties": { - "facing": "west" - }, - "id": 1494 + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 5330, "properties": { - "facing": "east" - }, - "id": 1495 + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 5331, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 5332, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 5333, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 5334, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 5335, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 5336, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 5337, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 5338, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 5339, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 5340, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 5341, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 5342, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 5343, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 5344, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 5345, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 5346, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 5347, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 5348, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 5349, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 5350, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 5351, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 5352, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 5353, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 5354, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 5355, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 5356, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 5357, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 5358, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } } ] }, - "minecraft:fire": { + "minecraft:oak_leaves": { "properties": { - "age": [ + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 206, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 207, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 208, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 209, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 210, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 211, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 212, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 213, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 214, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 215, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 216, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 217, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 218, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 219, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 220, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 221, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 222, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 223, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 224, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 225, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 226, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 227, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 228, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 229, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 230, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 231, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 232, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 233, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 117, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 118, + "properties": { + "axis": "y" + } + }, + { + "id": 119, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:oak_planks": { + "states": [ + { + "default": true, + "id": 15 + } + ] + }, + "minecraft:oak_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4178, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 4179, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:oak_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 22, + "properties": { + "stage": "0" + } + }, + { + "id": 23, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:oak_sign": { + "properties": { + "rotation": [ "0", "1", "2", @@ -12729,5676 +127021,294 @@ "14", "15" ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 3636, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1496 + "rotation": "0", + "waterlogged": "true" + } }, { + "default": true, + "id": 3637, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1497 + "rotation": "0", + "waterlogged": "false" + } }, { + "id": 3638, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1498 + "rotation": "1", + "waterlogged": "true" + } }, { + "id": 3639, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1499 + "rotation": "1", + "waterlogged": "false" + } }, { + "id": 3640, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1500 + "rotation": "2", + "waterlogged": "true" + } }, { + "id": 3641, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1501 + "rotation": "2", + "waterlogged": "false" + } }, { + "id": 3642, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1502 + "rotation": "3", + "waterlogged": "true" + } }, { + "id": 3643, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1503 + "rotation": "3", + "waterlogged": "false" + } }, { + "id": 3644, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1504 + "rotation": "4", + "waterlogged": "true" + } }, { + "id": 3645, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1505 + "rotation": "4", + "waterlogged": "false" + } }, { + "id": 3646, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1506 + "rotation": "5", + "waterlogged": "true" + } }, { + "id": 3647, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1507 + "rotation": "5", + "waterlogged": "false" + } }, { + "id": 3648, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1508 + "rotation": "6", + "waterlogged": "true" + } }, { + "id": 3649, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1509 + "rotation": "6", + "waterlogged": "false" + } }, { + "id": 3650, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1510 + "rotation": "7", + "waterlogged": "true" + } }, { + "id": 3651, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1511 + "rotation": "7", + "waterlogged": "false" + } }, { + "id": 3652, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1512 + "rotation": "8", + "waterlogged": "true" + } }, { + "id": 3653, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1513 + "rotation": "8", + "waterlogged": "false" + } }, { + "id": 3654, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1514 + "rotation": "9", + "waterlogged": "true" + } }, { + "id": 3655, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1515 + "rotation": "9", + "waterlogged": "false" + } }, { + "id": 3656, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1516 + "rotation": "10", + "waterlogged": "true" + } }, { + "id": 3657, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1517 + "rotation": "10", + "waterlogged": "false" + } }, { + "id": 3658, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1518 + "rotation": "11", + "waterlogged": "true" + } }, { + "id": 3659, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1519 + "rotation": "11", + "waterlogged": "false" + } }, { + "id": 3660, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1520 + "rotation": "12", + "waterlogged": "true" + } }, { + "id": 3661, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1521 + "rotation": "12", + "waterlogged": "false" + } }, { + "id": 3662, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1522 + "rotation": "13", + "waterlogged": "true" + } }, { + "id": 3663, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1523 + "rotation": "13", + "waterlogged": "false" + } }, { + "id": 3664, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1524 + "rotation": "14", + "waterlogged": "true" + } }, { + "id": 3665, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1525 + "rotation": "14", + "waterlogged": "false" + } }, { + "id": 3666, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1526 + "rotation": "15", + "waterlogged": "true" + } }, { + "id": 3667, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1527, - "default": true - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1528 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1529 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1530 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1531 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1532 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1533 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1534 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1535 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1536 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1537 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1538 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1539 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1540 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1541 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1542 - }, - { - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1543 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1544 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1545 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1546 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1547 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1548 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1549 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1550 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1551 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1552 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1553 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1554 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1555 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1556 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1557 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1558 - }, - { - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1559 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1560 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1561 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1562 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1563 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1564 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1565 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1566 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1567 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1568 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1569 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1570 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1571 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1572 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1573 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1574 - }, - { - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1575 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1576 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1577 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1578 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1579 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1580 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1581 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1582 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1583 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1584 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1585 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1586 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1587 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1588 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1589 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1590 - }, - { - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1591 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1592 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1593 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1594 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1595 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1596 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1597 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1598 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1599 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1600 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1601 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1602 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1603 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1604 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1605 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1606 - }, - { - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1607 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1608 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1609 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1610 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1611 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1612 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1613 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1614 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1615 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1616 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1617 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1618 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1619 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1620 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1621 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1622 - }, - { - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1623 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1624 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1625 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1626 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1627 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1628 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1629 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1630 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1631 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1632 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1633 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1634 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1635 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1636 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1637 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1638 - }, - { - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1639 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1640 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1641 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1642 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1643 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1644 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1645 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1646 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1647 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1648 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1649 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1650 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1651 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1652 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1653 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1654 - }, - { - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1655 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1656 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1657 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1658 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1659 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1660 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1661 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1662 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1663 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1664 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1665 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1666 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1667 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1668 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1669 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1670 - }, - { - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1671 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1672 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1673 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1674 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1675 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1676 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1677 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1678 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1679 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1680 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1681 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1682 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1683 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1684 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1685 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1686 - }, - { - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1687 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1688 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1689 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1690 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1691 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1692 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1693 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1694 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1695 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1696 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1697 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1698 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1699 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1700 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1701 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1702 - }, - { - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1703 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1704 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1705 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1706 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1707 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1708 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1709 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1710 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1711 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1712 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1713 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1714 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1715 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1716 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1717 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1718 - }, - { - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1719 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1720 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1721 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1722 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1723 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1724 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1725 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1726 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1727 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1728 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1729 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1730 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1731 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1732 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1733 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1734 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1735 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1736 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1737 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1738 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1739 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1740 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1741 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1742 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1743 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1744 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1745 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1746 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1747 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1748 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1749 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1750 - }, - { - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1751 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1752 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1753 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1754 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1755 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1756 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1757 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1758 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1759 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1760 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1761 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1762 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1763 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1764 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1765 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1766 - }, - { - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1767 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1768 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1769 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1770 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1771 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1772 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1773 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1774 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1775 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1776 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1777 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1778 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1779 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1780 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1781 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1782 - }, - { - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1783 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1784 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1785 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1786 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1787 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1788 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1789 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1790 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1791 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1792 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1793 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1794 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1795 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1796 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1797 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1798 - }, - { - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1799 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1800 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1801 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1802 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1803 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1804 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1805 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1806 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1807 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1808 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1809 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1810 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1811 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1812 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1813 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1814 - }, - { - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1815 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1816 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1817 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1818 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1819 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1820 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1821 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1822 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1823 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1824 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1825 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1826 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1827 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1828 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1829 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1830 - }, - { - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1831 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1832 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1833 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1834 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1835 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1836 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1837 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1838 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1839 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1840 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1841 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1842 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1843 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1844 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1845 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1846 - }, - { - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1847 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1848 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1849 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1850 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1851 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1852 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1853 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1854 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1855 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1856 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1857 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1858 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1859 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1860 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1861 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1862 - }, - { - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1863 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1864 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1865 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1866 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1867 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1868 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1869 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1870 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1871 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1872 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1873 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1874 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1875 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1876 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1877 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1878 - }, - { - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1879 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1880 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1881 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1882 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1883 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1884 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1885 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1886 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1887 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1888 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1889 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1890 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1891 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1892 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1893 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1894 - }, - { - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1895 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1896 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1897 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1898 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1899 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1900 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1901 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1902 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1903 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1904 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1905 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1906 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1907 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1908 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1909 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1910 - }, - { - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1911 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1912 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1913 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1914 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1915 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1916 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1917 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1918 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1919 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1920 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1921 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1922 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1923 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1924 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1925 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1926 - }, - { - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1927 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1928 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1929 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1930 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1931 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1932 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1933 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1934 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1935 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1936 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1937 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1938 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1939 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1940 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1941 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1942 - }, - { - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1943 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1944 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1945 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1946 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1947 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1948 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1949 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1950 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1951 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1952 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1953 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1954 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1955 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1956 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1957 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1958 - }, - { - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1959 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1960 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1961 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1962 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1963 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1964 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1965 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1966 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1967 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1968 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1969 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1970 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1971 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1972 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1973 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1974 - }, - { - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1975 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1976 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1977 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1978 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1979 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1980 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1981 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1982 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1983 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1984 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1985 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1986 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1987 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1988 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1989 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1990 - }, - { - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1991 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1992 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1993 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1994 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1995 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1996 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1997 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1998 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1999 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 2000 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 2001 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 2002 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 2003 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 2004 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 2005 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 2006 - }, - { - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 2007 + "rotation": "15", + "waterlogged": "false" + } } ] }, - "minecraft:soul_fire": { + "minecraft:oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, "states": [ { - "id": 2008, - "default": true - } - ] - }, - "minecraft:spawner": { - "states": [ + "id": 9041, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, { - "id": 2009, - "default": true + "id": 9042, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9043, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9044, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9045, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9046, + "properties": { + "type": "double", + "waterlogged": "false" + } } ] }, @@ -18428,729 +127338,729 @@ }, "states": [ { + "id": 2208, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 2010 + } }, { + "id": 2209, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 2011 + } }, { + "id": 2210, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2012 + } }, { + "id": 2211, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2013 + } }, { + "id": 2212, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2014 + } }, { + "id": 2213, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2015 + } }, { + "id": 2214, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2016 + } }, { + "id": 2215, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2017 + } }, { + "id": 2216, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2018 + } }, { + "id": 2217, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2019 + } }, { + "id": 2218, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 2020 + } }, { + "default": true, + "id": 2219, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 2021, - "default": true + } }, { + "id": 2220, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2022 + } }, { + "id": 2221, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2023 + } }, { + "id": 2222, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2024 + } }, { + "id": 2223, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2025 + } }, { + "id": 2224, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2026 + } }, { + "id": 2225, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2027 + } }, { + "id": 2226, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2028 + } }, { + "id": 2227, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2029 + } }, { + "id": 2228, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 2030 + } }, { + "id": 2229, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 2031 + } }, { + "id": 2230, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2032 + } }, { + "id": 2231, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2033 + } }, { + "id": 2232, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2034 + } }, { + "id": 2233, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2035 + } }, { + "id": 2234, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2036 + } }, { + "id": 2235, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2037 + } }, { + "id": 2236, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2038 + } }, { + "id": 2237, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2039 + } }, { + "id": 2238, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 2040 + } }, { + "id": 2239, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 2041 + } }, { + "id": 2240, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2042 + } }, { + "id": 2241, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2043 + } }, { + "id": 2242, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2044 + } }, { + "id": 2243, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2045 + } }, { + "id": 2244, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2046 + } }, { + "id": 2245, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2047 + } }, { + "id": 2246, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2048 + } }, { + "id": 2247, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2049 + } }, { + "id": 2248, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 2050 + } }, { + "id": 2249, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 2051 + } }, { + "id": 2250, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2052 + } }, { + "id": 2251, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2053 + } }, { + "id": 2252, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2054 + } }, { + "id": 2253, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2055 + } }, { + "id": 2254, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2056 + } }, { + "id": 2255, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2057 + } }, { + "id": 2256, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2058 + } }, { + "id": 2257, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2059 + } }, { + "id": 2258, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 2060 + } }, { + "id": 2259, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 2061 + } }, { + "id": 2260, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2062 + } }, { + "id": 2261, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2063 + } }, { + "id": 2262, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2064 + } }, { + "id": 2263, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2065 + } }, { + "id": 2264, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2066 + } }, { + "id": 2265, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2067 + } }, { + "id": 2266, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2068 + } }, { + "id": 2267, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2069 + } }, { + "id": 2268, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 2070 + } }, { + "id": 2269, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 2071 + } }, { + "id": 2270, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2072 + } }, { + "id": 2271, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2073 + } }, { + "id": 2272, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2074 + } }, { + "id": 2273, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2075 + } }, { + "id": 2274, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2076 + } }, { + "id": 2275, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2077 + } }, { + "id": 2276, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2078 + } }, { + "id": 2277, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2079 + } }, { + "id": 2278, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 2080 + } }, { + "id": 2279, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 2081 + } }, { + "id": 2280, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2082 + } }, { + "id": 2281, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2083 + } }, { + "id": 2282, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2084 + } }, { + "id": 2283, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2085 + } }, { + "id": 2284, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2086 + } }, { + "id": 2285, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2087 + } }, { + "id": 2286, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2088 + } }, { + "id": 2287, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2089 + } } ] }, - "minecraft:chest": { + "minecraft:oak_trapdoor": { "properties": { "facing": [ "north", @@ -19158,10 +128068,17 @@ "west", "east" ], - "type": [ - "single", - "left", - "right" + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ], "waterlogged": [ "true", @@ -19170,197 +128087,39839 @@ }, "states": [ { + "id": 4420, "properties": { "facing": "north", - "type": "single", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 2090 + } }, { + "id": 4421, "properties": { "facing": "north", - "type": "single", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 2091, - "default": true + } }, { + "id": 4422, "properties": { "facing": "north", - "type": "left", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 2092 + } }, { + "id": 4423, "properties": { "facing": "north", - "type": "left", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 2093 + } }, { + "id": 4424, "properties": { "facing": "north", - "type": "right", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 2094 + } }, { + "id": 4425, "properties": { "facing": "north", - "type": "right", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 2095 + } }, { + "id": 4426, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4427, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4428, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4429, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4430, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4431, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4432, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4433, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4434, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4435, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4436, "properties": { "facing": "south", - "type": "single", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 2096 + } }, { + "id": 4437, "properties": { "facing": "south", - "type": "single", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 2097 + } }, { + "id": 4438, "properties": { "facing": "south", - "type": "left", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 2098 + } }, { + "id": 4439, "properties": { "facing": "south", - "type": "left", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 2099 + } }, { + "id": 4440, "properties": { "facing": "south", - "type": "right", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 2100 + } }, { + "id": 4441, "properties": { "facing": "south", - "type": "right", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 2101 + } }, { + "id": 4442, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4443, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4444, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4445, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4446, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4447, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4448, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4449, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4450, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4451, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4452, "properties": { "facing": "west", - "type": "single", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 2102 + } }, { + "id": 4453, "properties": { "facing": "west", - "type": "single", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 2103 + } }, { + "id": 4454, "properties": { "facing": "west", - "type": "left", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 2104 + } }, { + "id": 4455, "properties": { "facing": "west", - "type": "left", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 2105 + } }, { + "id": 4456, "properties": { "facing": "west", - "type": "right", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 2106 + } }, { + "id": 4457, "properties": { "facing": "west", - "type": "right", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 2107 + } }, { + "id": 4458, "properties": { - "facing": "east", - "type": "single", + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 2108 + } }, { + "id": 4459, "properties": { - "facing": "east", - "type": "single", + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 2109 + } }, { + "id": 4460, "properties": { - "facing": "east", - "type": "left", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 2110 + } }, { + "id": 4461, "properties": { - "facing": "east", - "type": "left", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 2111 + } }, { + "id": 4462, "properties": { - "facing": "east", - "type": "right", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 2112 + } }, { + "id": 4463, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4464, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4465, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4466, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4467, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4468, "properties": { "facing": "east", - "type": "right", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4469, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 2113 + } + }, + { + "id": 4470, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4471, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4472, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4473, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4474, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4475, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4476, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4477, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4478, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4479, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4480, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4481, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4482, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4483, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4032, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4033, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4034, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4035, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4036, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4037, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4038, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4039, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 164, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 165, + "properties": { + "axis": "y" + } + }, + { + "id": 166, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:observer": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10141, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "id": 10142, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 10143, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 10144, + "properties": { + "facing": "east", + "powered": "false" + } + }, + { + "id": 10145, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "default": true, + "id": 10146, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 10147, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 10148, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 10149, + "properties": { + "facing": "up", + "powered": "true" + } + }, + { + "id": 10150, + "properties": { + "facing": "up", + "powered": "false" + } + }, + { + "id": 10151, + "properties": { + "facing": "down", + "powered": "true" + } + }, + { + "id": 10152, + "properties": { + "facing": "down", + "powered": "false" + } + } + ] + }, + "minecraft:obsidian": { + "states": [ + { + "default": true, + "id": 1688 + } + ] + }, + "minecraft:ochre_froglight": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 21437, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 21438, + "properties": { + "axis": "y" + } + }, + { + "id": 21439, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:orange_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8654, + "properties": { + "rotation": "0" + } + }, + { + "id": 8655, + "properties": { + "rotation": "1" + } + }, + { + "id": 8656, + "properties": { + "rotation": "2" + } + }, + { + "id": 8657, + "properties": { + "rotation": "3" + } + }, + { + "id": 8658, + "properties": { + "rotation": "4" + } + }, + { + "id": 8659, + "properties": { + "rotation": "5" + } + }, + { + "id": 8660, + "properties": { + "rotation": "6" + } + }, + { + "id": 8661, + "properties": { + "rotation": "7" + } + }, + { + "id": 8662, + "properties": { + "rotation": "8" + } + }, + { + "id": 8663, + "properties": { + "rotation": "9" + } + }, + { + "id": 8664, + "properties": { + "rotation": "10" + } + }, + { + "id": 8665, + "properties": { + "rotation": "11" + } + }, + { + "id": 8666, + "properties": { + "rotation": "12" + } + }, + { + "id": 8667, + "properties": { + "rotation": "13" + } + }, + { + "id": 8668, + "properties": { + "rotation": "14" + } + }, + { + "id": 8669, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:orange_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1295, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1296, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1297, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1298, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1299, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1300, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1301, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1302, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1303, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1304, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1305, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1306, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1307, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1308, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1309, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1310, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:orange_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18345, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18346, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18347, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18348, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18349, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18350, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18351, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18352, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18353, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18354, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18355, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18356, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18357, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18358, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18359, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18360, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:orange_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18589, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18590, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:orange_carpet": { + "states": [ + { + "default": true, + "id": 8608 + } + ] + }, + "minecraft:orange_concrete": { + "states": [ + { + "default": true, + "id": 10320 + } + ] + }, + "minecraft:orange_concrete_powder": { + "states": [ + { + "default": true, + "id": 10336 + } + ] + }, + "minecraft:orange_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10259, + "properties": { + "facing": "north" + } + }, + { + "id": 10260, + "properties": { + "facing": "south" + } + }, + { + "id": 10261, + "properties": { + "facing": "west" + } + }, + { + "id": 10262, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:orange_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10165, + "properties": { + "facing": "north" + } + }, + { + "id": 10166, + "properties": { + "facing": "east" + } + }, + { + "id": 10167, + "properties": { + "facing": "south" + } + }, + { + "id": 10168, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10169, + "properties": { + "facing": "up" + } + }, + { + "id": 10170, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:orange_stained_glass": { + "states": [ + { + "default": true, + "id": 4405 + } + ] + }, + "minecraft:orange_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7524, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7525, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7526, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7527, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7528, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7529, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7530, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7531, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7532, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7533, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7534, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7535, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7536, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7537, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7538, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7539, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7540, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7541, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7542, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7543, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7544, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7545, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7546, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7547, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7548, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7549, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7550, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7551, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7552, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7553, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7554, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7555, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:orange_terracotta": { + "states": [ + { + "default": true, + "id": 7477 + } + ] + }, + "minecraft:orange_tulip": { + "states": [ + { + "default": true, + "id": 1672 + } + ] + }, + "minecraft:orange_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8898, + "properties": { + "facing": "north" + } + }, + { + "id": 8899, + "properties": { + "facing": "south" + } + }, + { + "id": 8900, + "properties": { + "facing": "west" + } + }, + { + "id": 8901, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:orange_wool": { + "states": [ + { + "default": true, + "id": 1639 + } + ] + }, + "minecraft:oxeye_daisy": { + "states": [ + { + "default": true, + "id": 1675 + } + ] + }, + "minecraft:oxidized_copper": { + "states": [ + { + "default": true, + "id": 18908 + } + ] + }, + "minecraft:oxidized_cut_copper": { + "states": [ + { + "default": true, + "id": 18914 + } + ] + }, + "minecraft:oxidized_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19238, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 19239, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 19240, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19241, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 19242, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 19243, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18918, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18919, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18920, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18921, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18922, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18923, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18924, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18925, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18926, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18927, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18928, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18929, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18930, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18931, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18932, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18933, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18934, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18935, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18936, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18937, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18938, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18939, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18940, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18941, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18942, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18943, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18944, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18945, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18946, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18947, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18948, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18949, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18950, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18951, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18952, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18953, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18954, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18955, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18956, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18957, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18958, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18959, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18960, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18961, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18962, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18963, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18964, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18965, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18966, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18967, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18968, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18969, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18970, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18971, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18972, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18973, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18974, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18975, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18976, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18977, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18978, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18979, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18980, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18981, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18982, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18983, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18984, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18985, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18986, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18987, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18988, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18989, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18990, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18991, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18992, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18993, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18994, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18995, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18996, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18997, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:packed_ice": { + "states": [ + { + "default": true, + "id": 8625 + } + ] + }, + "minecraft:packed_mud": { + "states": [ + { + "default": true, + "id": 4872 + } + ] + }, + "minecraft:pearlescent_froglight": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 21443, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 21444, + "properties": { + "axis": "y" + } + }, + { + "id": 21445, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:peony": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 8632, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 8633, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:petrified_oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9107, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9108, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9109, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9110, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9111, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9112, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pink_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8734, + "properties": { + "rotation": "0" + } + }, + { + "id": 8735, + "properties": { + "rotation": "1" + } + }, + { + "id": 8736, + "properties": { + "rotation": "2" + } + }, + { + "id": 8737, + "properties": { + "rotation": "3" + } + }, + { + "id": 8738, + "properties": { + "rotation": "4" + } + }, + { + "id": 8739, + "properties": { + "rotation": "5" + } + }, + { + "id": 8740, + "properties": { + "rotation": "6" + } + }, + { + "id": 8741, + "properties": { + "rotation": "7" + } + }, + { + "id": 8742, + "properties": { + "rotation": "8" + } + }, + { + "id": 8743, + "properties": { + "rotation": "9" + } + }, + { + "id": 8744, + "properties": { + "rotation": "10" + } + }, + { + "id": 8745, + "properties": { + "rotation": "11" + } + }, + { + "id": 8746, + "properties": { + "rotation": "12" + } + }, + { + "id": 8747, + "properties": { + "rotation": "13" + } + }, + { + "id": 8748, + "properties": { + "rotation": "14" + } + }, + { + "id": 8749, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:pink_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1375, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1376, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1377, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1378, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1379, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1380, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1381, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1382, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1383, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1384, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1385, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1386, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1387, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1388, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1389, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1390, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:pink_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18425, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18426, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18427, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18428, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18429, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18430, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18431, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18432, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18433, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18434, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18435, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18436, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18437, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18438, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18439, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18440, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pink_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18599, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18600, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:pink_carpet": { + "states": [ + { + "default": true, + "id": 8613 + } + ] + }, + "minecraft:pink_concrete": { + "states": [ + { + "default": true, + "id": 10325 + } + ] + }, + "minecraft:pink_concrete_powder": { + "states": [ + { + "default": true, + "id": 10341 + } + ] + }, + "minecraft:pink_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10279, + "properties": { + "facing": "north" + } + }, + { + "id": 10280, + "properties": { + "facing": "south" + } + }, + { + "id": 10281, + "properties": { + "facing": "west" + } + }, + { + "id": 10282, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:pink_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10195, + "properties": { + "facing": "north" + } + }, + { + "id": 10196, + "properties": { + "facing": "east" + } + }, + { + "id": 10197, + "properties": { + "facing": "south" + } + }, + { + "id": 10198, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10199, + "properties": { + "facing": "up" + } + }, + { + "id": 10200, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:pink_stained_glass": { + "states": [ + { + "default": true, + "id": 4410 + } + ] + }, + "minecraft:pink_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7684, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7685, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7686, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7687, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7688, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7689, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7690, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7691, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7692, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7693, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7694, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7695, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7696, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7697, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7698, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7699, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7700, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7701, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7702, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7703, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7704, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7705, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7706, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7707, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7708, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7709, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7710, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7711, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7712, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7713, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7714, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7715, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:pink_terracotta": { + "states": [ + { + "default": true, + "id": 7482 + } + ] + }, + "minecraft:pink_tulip": { + "states": [ + { + "default": true, + "id": 1674 + } + ] + }, + "minecraft:pink_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8918, + "properties": { + "facing": "north" + } + }, + { + "id": 8919, + "properties": { + "facing": "south" + } + }, + { + "id": 8920, + "properties": { + "facing": "west" + } + }, + { + "id": 8921, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:pink_wool": { + "states": [ + { + "default": true, + "id": 1644 + } + ] + }, + "minecraft:piston": { + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 1602, + "properties": { + "extended": "true", + "facing": "north" + } + }, + { + "id": 1603, + "properties": { + "extended": "true", + "facing": "east" + } + }, + { + "id": 1604, + "properties": { + "extended": "true", + "facing": "south" + } + }, + { + "id": 1605, + "properties": { + "extended": "true", + "facing": "west" + } + }, + { + "id": 1606, + "properties": { + "extended": "true", + "facing": "up" + } + }, + { + "id": 1607, + "properties": { + "extended": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 1608, + "properties": { + "extended": "false", + "facing": "north" + } + }, + { + "id": 1609, + "properties": { + "extended": "false", + "facing": "east" + } + }, + { + "id": 1610, + "properties": { + "extended": "false", + "facing": "south" + } + }, + { + "id": 1611, + "properties": { + "extended": "false", + "facing": "west" + } + }, + { + "id": 1612, + "properties": { + "extended": "false", + "facing": "up" + } + }, + { + "id": 1613, + "properties": { + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:piston_head": { + "properties": { + "type": [ + "normal", + "sticky" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "short": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1614, + "properties": { + "type": "normal", + "facing": "north", + "short": "true" + } + }, + { + "id": 1615, + "properties": { + "type": "sticky", + "facing": "north", + "short": "true" + } + }, + { + "default": true, + "id": 1616, + "properties": { + "type": "normal", + "facing": "north", + "short": "false" + } + }, + { + "id": 1617, + "properties": { + "type": "sticky", + "facing": "north", + "short": "false" + } + }, + { + "id": 1618, + "properties": { + "type": "normal", + "facing": "east", + "short": "true" + } + }, + { + "id": 1619, + "properties": { + "type": "sticky", + "facing": "east", + "short": "true" + } + }, + { + "id": 1620, + "properties": { + "type": "normal", + "facing": "east", + "short": "false" + } + }, + { + "id": 1621, + "properties": { + "type": "sticky", + "facing": "east", + "short": "false" + } + }, + { + "id": 1622, + "properties": { + "type": "normal", + "facing": "south", + "short": "true" + } + }, + { + "id": 1623, + "properties": { + "type": "sticky", + "facing": "south", + "short": "true" + } + }, + { + "id": 1624, + "properties": { + "type": "normal", + "facing": "south", + "short": "false" + } + }, + { + "id": 1625, + "properties": { + "type": "sticky", + "facing": "south", + "short": "false" + } + }, + { + "id": 1626, + "properties": { + "type": "normal", + "facing": "west", + "short": "true" + } + }, + { + "id": 1627, + "properties": { + "type": "sticky", + "facing": "west", + "short": "true" + } + }, + { + "id": 1628, + "properties": { + "type": "normal", + "facing": "west", + "short": "false" + } + }, + { + "id": 1629, + "properties": { + "type": "sticky", + "facing": "west", + "short": "false" + } + }, + { + "id": 1630, + "properties": { + "type": "normal", + "facing": "up", + "short": "true" + } + }, + { + "id": 1631, + "properties": { + "type": "sticky", + "facing": "up", + "short": "true" + } + }, + { + "id": 1632, + "properties": { + "type": "normal", + "facing": "up", + "short": "false" + } + }, + { + "id": 1633, + "properties": { + "type": "sticky", + "facing": "up", + "short": "false" + } + }, + { + "id": 1634, + "properties": { + "type": "normal", + "facing": "down", + "short": "true" + } + }, + { + "id": 1635, + "properties": { + "type": "sticky", + "facing": "down", + "short": "true" + } + }, + { + "id": 1636, + "properties": { + "type": "normal", + "facing": "down", + "short": "false" + } + }, + { + "id": 1637, + "properties": { + "type": "sticky", + "facing": "down", + "short": "false" + } + } + ] + }, + "minecraft:player_head": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 7167, + "properties": { + "rotation": "0" + } + }, + { + "id": 7168, + "properties": { + "rotation": "1" + } + }, + { + "id": 7169, + "properties": { + "rotation": "2" + } + }, + { + "id": 7170, + "properties": { + "rotation": "3" + } + }, + { + "id": 7171, + "properties": { + "rotation": "4" + } + }, + { + "id": 7172, + "properties": { + "rotation": "5" + } + }, + { + "id": 7173, + "properties": { + "rotation": "6" + } + }, + { + "id": 7174, + "properties": { + "rotation": "7" + } + }, + { + "id": 7175, + "properties": { + "rotation": "8" + } + }, + { + "id": 7176, + "properties": { + "rotation": "9" + } + }, + { + "id": 7177, + "properties": { + "rotation": "10" + } + }, + { + "id": 7178, + "properties": { + "rotation": "11" + } + }, + { + "id": 7179, + "properties": { + "rotation": "12" + } + }, + { + "id": 7180, + "properties": { + "rotation": "13" + } + }, + { + "id": 7181, + "properties": { + "rotation": "14" + } + }, + { + "id": 7182, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:player_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7183, + "properties": { + "facing": "north" + } + }, + { + "id": 7184, + "properties": { + "facing": "south" + } + }, + { + "id": 7185, + "properties": { + "facing": "west" + } + }, + { + "id": 7186, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:podzol": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 13, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:pointed_dripstone": { + "properties": { + "thickness": [ + "tip_merge", + "tip", + "frustum", + "middle", + "base" + ], + "vertical_direction": [ + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19638, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 19639, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 19640, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 19641, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 19642, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19643, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 19644, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 19645, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 19646, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 19647, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 19648, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 19649, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 19650, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 19651, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 19652, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 19653, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 19654, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 19655, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 19656, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 19657, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_andesite": { + "states": [ + { + "default": true, + "id": 7 + } + ] + }, + "minecraft:polished_andesite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11736, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11737, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11738, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11739, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11740, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11741, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_andesite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11510, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11511, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11512, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11513, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11514, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11515, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11516, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11517, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11518, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11519, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11520, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11521, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11522, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11523, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11524, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11525, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11526, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11527, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11528, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11529, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11530, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11531, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11532, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11533, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11534, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11535, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11536, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11537, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11538, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11539, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11540, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11541, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11542, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11543, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11544, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11545, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11546, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11547, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11548, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11549, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11550, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11551, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11552, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11553, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11554, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11555, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11556, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11557, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11558, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11559, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11560, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11561, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11562, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11563, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11564, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11565, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11566, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11567, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11568, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11569, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11570, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11571, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11572, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11573, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11574, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11575, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11576, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11577, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11578, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11579, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11580, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11581, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11582, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11583, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11584, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11585, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11586, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11587, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11588, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11589, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_basalt": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 4314, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 4315, + "properties": { + "axis": "y" + } + }, + { + "id": 4316, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:polished_blackstone": { + "states": [ + { + "default": true, + "id": 17459 + } + ] + }, + "minecraft:polished_blackstone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17463, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 17464, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 17465, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 17466, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 17467, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 17468, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17469, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17470, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17471, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17472, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17473, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17474, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17475, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17476, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17477, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17478, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17479, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 17480, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17481, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17482, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17483, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17484, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17485, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17486, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17487, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17488, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17489, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17490, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17491, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17492, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17493, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17494, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17495, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17496, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17497, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17498, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17499, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17500, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17501, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17502, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17503, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17504, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17505, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17506, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17507, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17508, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17509, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17510, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17511, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17512, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17513, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17514, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17515, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17516, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17517, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17518, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17519, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17520, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17521, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17522, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17523, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17524, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17525, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17526, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17527, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17528, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17529, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17530, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17531, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17532, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17533, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17534, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17535, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17536, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17537, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17538, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17539, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17540, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17541, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17542, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17543, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17544, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17545, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17546, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17547, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17548, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17549, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17550, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17551, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17552, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17553, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17554, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17555, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17556, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17557, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17558, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17559, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17560, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17561, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17562, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17563, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17564, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17565, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17566, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17567, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17568, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17569, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17570, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17571, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17572, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17573, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17574, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17575, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17576, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17577, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17578, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17579, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17580, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17581, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17582, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17583, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17584, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17585, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17586, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17587, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17588, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17589, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17590, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17591, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17592, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17593, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17594, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17595, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17596, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17597, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17598, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17599, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17600, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17601, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17602, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17603, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17604, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17605, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17606, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17607, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17608, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17609, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17610, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17611, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17612, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17613, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17614, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17615, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17616, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17617, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17618, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17619, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17620, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17621, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17622, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17623, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17624, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17625, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17626, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17627, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17628, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17629, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17630, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17631, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17632, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17633, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17634, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17635, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17636, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17637, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17638, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17639, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17640, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17641, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17642, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17643, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17644, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17645, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17646, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17647, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17648, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17649, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17650, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17651, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17652, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17653, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17654, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17655, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17656, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17657, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17658, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17659, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17660, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17661, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17662, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17663, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17664, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17665, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17666, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17667, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17668, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17669, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17670, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17671, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17672, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17673, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17674, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17675, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17676, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17677, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17678, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17679, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17680, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17681, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17682, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17683, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17684, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17685, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17686, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17687, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17688, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17689, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17690, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17691, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17692, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17693, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17694, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17695, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17696, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17697, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17698, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17699, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17700, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17701, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17702, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17703, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17704, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17705, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17706, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17707, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17708, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17709, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17710, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17711, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17712, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17713, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17714, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17715, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17716, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17717, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17718, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17719, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17720, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17721, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17722, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17723, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17724, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17725, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17726, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17727, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17728, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17729, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17730, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17731, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17732, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17733, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17734, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17735, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17736, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17737, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17738, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17739, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17740, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17741, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17742, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17743, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17744, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17745, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17746, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17747, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17748, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17749, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17750, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17751, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17752, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17753, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17754, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17755, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17756, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17757, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17758, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17759, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17760, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17761, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17762, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17763, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17764, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17765, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17766, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17767, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17768, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17769, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17770, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17771, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17772, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17773, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17774, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17775, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17776, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17777, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17778, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17779, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17780, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17781, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17782, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17783, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17784, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17785, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17786, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17787, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17788, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17789, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17790, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17791, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17792, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17793, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17794, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17795, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17796, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17797, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17798, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17799, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17800, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17801, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17802, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17803, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17804, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17805, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17806, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17807, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17808, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17809, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17810, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17811, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17812, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17813, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17814, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17815, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17816, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17817, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17818, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17819, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17820, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17821, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17822, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17823, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17824, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17825, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17826, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17827, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17828, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17829, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17830, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17831, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17832, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17833, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17834, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17835, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17836, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17837, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17838, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17839, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17840, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17841, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17842, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17843, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17844, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17845, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17846, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17847, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17848, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17849, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17850, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17851, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17852, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17853, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17854, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17855, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17856, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17857, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17858, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17859, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17860, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17861, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17862, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17863, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17864, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17865, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17866, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17867, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17868, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17869, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17870, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17871, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17872, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_blackstone_bricks": { + "states": [ + { + "default": true, + "id": 17460 + } + ] + }, + "minecraft:polished_blackstone_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17962, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 17963, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 17964, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 17965, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 17966, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 17967, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 17968, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 17969, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 17970, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 17971, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 17972, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 17973, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 17974, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 17975, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 17976, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 17977, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 17978, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 17979, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 17980, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 17981, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 17982, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 17983, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 17984, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 17985, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:polished_blackstone_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17960, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 17961, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:polished_blackstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17954, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 17955, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 17956, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 17957, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 17958, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 17959, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17874, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17875, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17876, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17877, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17878, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17879, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17880, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17881, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17882, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17883, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17884, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 17885, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17886, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17887, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17888, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17889, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17890, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17891, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17892, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17893, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17894, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17895, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17896, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17897, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17898, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17899, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17900, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17901, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17902, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17903, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17904, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17905, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17906, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17907, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17908, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17909, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17910, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17911, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17912, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17913, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17914, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17915, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17916, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17917, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17918, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17919, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17920, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17921, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17922, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17923, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17924, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17925, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17926, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17927, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17928, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17929, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17930, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17931, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17932, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17933, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17934, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17935, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17936, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17937, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17938, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17939, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17940, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17941, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17942, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17943, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17944, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17945, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17946, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17947, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17948, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17949, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17950, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17951, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17952, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17953, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17986, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17987, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17988, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17989, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17990, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17991, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17992, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17993, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17994, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17995, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17996, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17997, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17998, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17999, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18000, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18001, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18002, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18003, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18004, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18005, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18006, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18007, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18008, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18009, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18010, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18011, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18012, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18013, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18014, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18015, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18016, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18017, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18018, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18019, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18020, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18021, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18022, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18023, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18024, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18025, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18026, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18027, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18028, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18029, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18030, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18031, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18032, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18033, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18034, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18035, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18036, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18037, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18038, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18039, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18040, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18041, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18042, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18043, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18044, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18045, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18046, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18047, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18048, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18049, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18050, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18051, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18052, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18053, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18054, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18055, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18056, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18057, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18058, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18059, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18060, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18061, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18062, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18063, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18064, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18065, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18066, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18067, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18068, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18069, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18070, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18071, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18072, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18073, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18074, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18075, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18076, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18077, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18078, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18079, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18080, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18081, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18082, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18083, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18084, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18085, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18086, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18087, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18088, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18089, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18090, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18091, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18092, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18093, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18094, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18095, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18096, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18097, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18098, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18099, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18100, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18101, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18102, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18103, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18104, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18105, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18106, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18107, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18108, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18109, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18110, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18111, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18112, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18113, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18114, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18115, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18116, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18117, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18118, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18119, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18120, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18121, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18122, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18123, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18124, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18125, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18126, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18127, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18128, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18129, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18130, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18131, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18132, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18133, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18134, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18135, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18136, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18137, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18138, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18139, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18140, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18141, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18142, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18143, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18144, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18145, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18146, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18147, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18148, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18149, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18150, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18151, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18152, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18153, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18154, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18155, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18156, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18157, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18158, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18159, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18160, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18161, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18162, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18163, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18164, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18165, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18166, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18167, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18168, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18169, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18170, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18171, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18172, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18173, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18174, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18175, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18176, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18177, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18178, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18179, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18180, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18181, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18182, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18183, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18184, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18185, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18186, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18187, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18188, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18189, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18190, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18191, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18192, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18193, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18194, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18195, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18196, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18197, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18198, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18199, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18200, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18201, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18202, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18203, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18204, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18205, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18206, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18207, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18208, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18209, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18210, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18211, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18212, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18213, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18214, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18215, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18216, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18217, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18218, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18219, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18220, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18221, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18222, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18223, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18224, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18225, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18226, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18227, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18228, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18229, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18230, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18231, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18232, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18233, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18234, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18235, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18236, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18237, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18238, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18239, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18240, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18241, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18242, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18243, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18244, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18245, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18246, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18247, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18248, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18249, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18250, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18251, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18252, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18253, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18254, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18255, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18256, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18257, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18258, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18259, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18260, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18261, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18262, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18263, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18264, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18265, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18266, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18267, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18268, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18269, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18270, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18271, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18272, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18273, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18274, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18275, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18276, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18277, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18278, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18279, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18280, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18281, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18282, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18283, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18284, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18285, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18286, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18287, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18288, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18289, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18290, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18291, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18292, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18293, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18294, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18295, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18296, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18297, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18298, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18299, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18300, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18301, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18302, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18303, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18304, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18305, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18306, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18307, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18308, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18309, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_deepslate": { + "states": [ + { + "default": true, + "id": 20192 + } + ] + }, + "minecraft:polished_deepslate_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20273, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 20274, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 20275, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20276, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 20277, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 20278, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_deepslate_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20193, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20194, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20195, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20196, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20197, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20198, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20199, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20200, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20201, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20202, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20203, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20204, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20205, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20206, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20207, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20208, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20209, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20210, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20211, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20212, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20213, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20214, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20215, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20216, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20217, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20218, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20219, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20220, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20221, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20222, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20223, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20224, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20225, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20226, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20227, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20228, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20229, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20230, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20231, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20232, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20233, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20234, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20235, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20236, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20237, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20238, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20239, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20240, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20241, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20242, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20243, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20244, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20245, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20246, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20247, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20248, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20249, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20250, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20251, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20252, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20253, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20254, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20255, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20256, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20257, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20258, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20259, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20260, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20261, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20262, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20263, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20264, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20265, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20266, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20267, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20268, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20269, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20270, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20271, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20272, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_deepslate_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 20279, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20280, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20281, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 20282, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20283, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20284, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20285, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20286, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20287, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20288, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20289, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20290, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20291, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20292, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20293, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20294, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20295, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20296, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20297, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20298, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20299, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20300, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20301, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20302, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20303, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20304, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20305, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20306, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20307, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20308, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20309, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20310, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20311, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20312, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20313, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20314, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20315, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20316, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20317, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20318, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20319, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20320, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20321, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20322, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20323, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20324, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20325, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20326, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20327, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20328, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20329, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20330, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20331, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20332, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20333, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20334, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20335, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20336, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20337, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20338, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20339, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20340, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20341, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20342, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20343, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20344, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20345, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20346, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20347, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20348, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20349, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20350, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20351, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20352, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20353, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20354, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20355, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20356, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20357, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20358, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20359, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20360, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20361, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20362, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20363, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20364, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20365, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20366, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20367, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20368, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20369, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20370, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20371, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20372, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20373, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20374, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20375, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20376, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20377, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20378, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20379, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20380, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20381, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20382, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20383, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20384, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20385, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20386, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20387, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20388, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20389, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20390, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20391, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20392, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20393, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20394, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20395, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20396, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20397, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20398, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20399, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20400, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20401, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20402, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20403, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20404, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20405, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20406, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20407, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20408, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20409, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20410, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20411, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20412, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20413, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20414, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20415, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20416, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20417, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20418, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20419, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20420, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20421, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20422, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20423, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20424, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20425, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20426, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20427, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20428, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20429, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20430, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20431, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20432, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20433, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20434, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20435, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20436, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20437, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20438, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20439, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20440, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20441, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20442, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20443, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20444, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20445, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20446, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20447, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20448, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20449, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20450, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20451, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20452, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20453, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20454, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20455, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20456, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20457, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20458, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20459, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20460, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20461, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20462, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20463, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20464, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20465, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20466, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20467, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20468, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20469, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20470, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20471, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20472, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20473, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20474, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20475, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20476, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20477, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20478, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20479, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20480, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20481, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20482, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20483, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20484, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20485, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20486, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20487, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20488, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20489, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20490, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20491, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20492, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20493, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20494, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20495, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20496, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20497, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20498, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20499, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20500, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20501, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20502, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20503, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20504, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20505, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20506, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20507, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20508, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20509, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20510, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20511, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20512, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20513, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20514, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20515, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20516, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20517, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20518, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20519, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20520, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20521, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20522, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20523, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20524, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20525, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20526, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20527, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20528, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20529, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20530, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20531, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20532, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20533, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20534, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20535, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20536, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20537, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20538, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20539, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20540, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20541, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20542, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20543, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20544, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20545, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20546, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20547, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20548, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20549, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20550, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20551, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20552, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20553, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20554, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20555, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20556, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20557, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20558, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20559, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20560, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20561, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20562, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20563, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20564, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20565, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20566, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20567, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20568, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20569, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20570, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20571, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20572, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20573, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20574, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20575, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20576, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20577, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20578, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20579, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20580, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20581, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20582, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20583, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20584, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20585, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20586, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20587, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20588, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20589, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20590, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20591, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20592, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20593, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20594, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20595, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20596, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20597, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20598, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20599, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20600, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20601, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20602, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_diorite": { + "states": [ + { + "default": true, + "id": 5 + } + ] + }, + "minecraft:polished_diorite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11688, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11689, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11690, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11691, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11692, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11693, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_diorite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10790, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10791, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10792, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10793, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10794, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10795, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10796, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10797, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10798, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10799, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10800, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10801, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10802, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10803, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10804, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10805, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10806, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10807, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10808, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10809, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10810, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10811, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10812, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10813, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10814, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10815, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10816, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10817, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10818, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10819, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10820, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10821, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10822, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10823, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10824, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10825, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10826, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10827, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10828, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10829, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10830, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10831, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10832, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10833, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10834, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10835, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10836, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10837, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10838, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10839, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10840, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10841, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10842, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10843, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10844, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10845, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10846, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10847, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10848, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10849, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10850, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10851, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10852, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10853, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10854, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10855, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10856, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10857, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10858, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10859, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10860, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10861, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10862, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10863, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10864, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10865, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10866, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10867, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10868, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10869, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite": { + "states": [ + { + "default": true, + "id": 3 + } + ] + }, + "minecraft:polished_granite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11670, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11671, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11672, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11673, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11674, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11675, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10550, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10551, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10552, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10553, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10554, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10555, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10556, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10557, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10558, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10559, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10560, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10561, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10562, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10563, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10564, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10565, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10566, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10567, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10568, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10569, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10570, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10571, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10572, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10573, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10574, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10575, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10576, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10577, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10578, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10579, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10580, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10581, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10582, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10583, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10584, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10585, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10586, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10587, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10588, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10589, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10590, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10591, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10592, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10593, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10594, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10595, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10596, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10597, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10598, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10599, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10600, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10601, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10602, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10603, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10604, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10605, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10606, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10607, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10608, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10609, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10610, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10611, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10612, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10613, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10614, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10615, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10616, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10617, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10618, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10619, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10620, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10621, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10622, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10623, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10624, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10625, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10626, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10627, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10628, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10629, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:poppy": { + "states": [ + { + "default": true, + "id": 1667 + } + ] + }, + "minecraft:potatoes": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 6931, + "properties": { + "age": "0" + } + }, + { + "id": 6932, + "properties": { + "age": "1" + } + }, + { + "id": 6933, + "properties": { + "age": "2" + } + }, + { + "id": 6934, + "properties": { + "age": "3" + } + }, + { + "id": 6935, + "properties": { + "age": "4" + } + }, + { + "id": 6936, + "properties": { + "age": "5" + } + }, + { + "id": 6937, + "properties": { + "age": "6" + } + }, + { + "id": 6938, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:potted_acacia_sapling": { + "states": [ + { + "default": true, + "id": 6902 + } + ] + }, + "minecraft:potted_allium": { + "states": [ + { + "default": true, + "id": 6909 + } + ] + }, + "minecraft:potted_azalea_bush": { + "states": [ + { + "default": true, + "id": 21435 + } + ] + }, + "minecraft:potted_azure_bluet": { + "states": [ + { + "default": true, + "id": 6910 + } + ] + }, + "minecraft:potted_bamboo": { + "states": [ + { + "default": true, + "id": 10545 + } + ] + }, + "minecraft:potted_birch_sapling": { + "states": [ + { + "default": true, + "id": 6900 + } + ] + }, + "minecraft:potted_blue_orchid": { + "states": [ + { + "default": true, + "id": 6908 + } + ] + }, + "minecraft:potted_brown_mushroom": { + "states": [ + { + "default": true, + "id": 6920 + } + ] + }, + "minecraft:potted_cactus": { + "states": [ + { + "default": true, + "id": 6922 + } + ] + }, + "minecraft:potted_cornflower": { + "states": [ + { + "default": true, + "id": 6916 + } + ] + }, + "minecraft:potted_crimson_fungus": { + "states": [ + { + "default": true, + "id": 17043 + } + ] + }, + "minecraft:potted_crimson_roots": { + "states": [ + { + "default": true, + "id": 17045 + } + ] + }, + "minecraft:potted_dandelion": { + "states": [ + { + "default": true, + "id": 6906 + } + ] + }, + "minecraft:potted_dark_oak_sapling": { + "states": [ + { + "default": true, + "id": 6903 + } + ] + }, + "minecraft:potted_dead_bush": { + "states": [ + { + "default": true, + "id": 6921 + } + ] + }, + "minecraft:potted_fern": { + "states": [ + { + "default": true, + "id": 6905 + } + ] + }, + "minecraft:potted_flowering_azalea_bush": { + "states": [ + { + "default": true, + "id": 21436 + } + ] + }, + "minecraft:potted_jungle_sapling": { + "states": [ + { + "default": true, + "id": 6901 + } + ] + }, + "minecraft:potted_lily_of_the_valley": { + "states": [ + { + "default": true, + "id": 6917 + } + ] + }, + "minecraft:potted_mangrove_propagule": { + "states": [ + { + "default": true, + "id": 6904 + } + ] + }, + "minecraft:potted_oak_sapling": { + "states": [ + { + "default": true, + "id": 6898 + } + ] + }, + "minecraft:potted_orange_tulip": { + "states": [ + { + "default": true, + "id": 6912 + } + ] + }, + "minecraft:potted_oxeye_daisy": { + "states": [ + { + "default": true, + "id": 6915 + } + ] + }, + "minecraft:potted_pink_tulip": { + "states": [ + { + "default": true, + "id": 6914 + } + ] + }, + "minecraft:potted_poppy": { + "states": [ + { + "default": true, + "id": 6907 + } + ] + }, + "minecraft:potted_red_mushroom": { + "states": [ + { + "default": true, + "id": 6919 + } + ] + }, + "minecraft:potted_red_tulip": { + "states": [ + { + "default": true, + "id": 6911 + } + ] + }, + "minecraft:potted_spruce_sapling": { + "states": [ + { + "default": true, + "id": 6899 + } + ] + }, + "minecraft:potted_warped_fungus": { + "states": [ + { + "default": true, + "id": 17044 + } + ] + }, + "minecraft:potted_warped_roots": { + "states": [ + { + "default": true, + "id": 17046 + } + ] + }, + "minecraft:potted_white_tulip": { + "states": [ + { + "default": true, + "id": 6913 + } + ] + }, + "minecraft:potted_wither_rose": { + "states": [ + { + "default": true, + "id": 6918 + } + ] + }, + "minecraft:powder_snow": { + "states": [ + { + "default": true, + "id": 18672 + } + ] + }, + "minecraft:powder_snow_cauldron": { + "properties": { + "level": [ + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 5733, + "properties": { + "level": "1" + } + }, + { + "id": 5734, + "properties": { + "level": "2" + } + }, + { + "id": 5735, + "properties": { + "level": "3" + } + } + ] + }, + "minecraft:powered_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1535, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 1536, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1537, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1538, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1539, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1540, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1541, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1542, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1543, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1544, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1545, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1546, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 1547, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 1548, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1549, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1550, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1551, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1552, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1553, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1554, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1555, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1556, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1557, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1558, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine": { + "states": [ + { + "default": true, + "id": 8342 + } + ] + }, + "minecraft:prismarine_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8591, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 8592, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 8593, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8594, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 8595, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 8596, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8425, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8426, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8427, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8428, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8429, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8430, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8431, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8432, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8433, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8434, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8435, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8436, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8437, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8438, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8439, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8440, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8441, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8442, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8443, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8444, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8445, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8446, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8447, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8448, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8449, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8450, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8451, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8452, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8453, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8454, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8455, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8456, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8457, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8458, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8459, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8460, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8461, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8462, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8463, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8464, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8465, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8466, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8467, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8468, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8469, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8470, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8471, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8472, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8473, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8474, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8475, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8476, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8477, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8478, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8479, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8480, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8481, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8482, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8483, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8484, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8485, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8486, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8487, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8488, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8489, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8490, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8491, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8492, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8493, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8494, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8495, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8496, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8497, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8498, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8499, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8500, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8501, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8502, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8503, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8504, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_bricks": { + "states": [ + { + "default": true, + "id": 8343 + } + ] + }, + "minecraft:prismarine_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8585, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 8586, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 8587, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8588, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 8589, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 8590, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8345, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8346, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8347, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8348, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8349, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8350, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8351, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8352, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8353, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8354, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8355, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8356, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8357, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8358, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8359, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8360, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8361, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8362, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8363, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8364, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8365, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8366, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8367, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8368, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8369, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8370, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8371, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8372, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8373, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8374, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8375, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8376, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8377, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8378, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8379, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8380, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8381, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8382, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8383, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8384, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8385, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8386, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8387, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8388, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8389, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8390, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8391, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8392, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8393, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8394, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8395, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8396, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8397, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8398, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8399, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8400, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8401, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8402, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8403, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8404, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8405, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8406, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8407, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8408, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8409, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8410, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8411, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8412, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8413, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8414, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8415, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8416, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8417, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8418, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8419, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8420, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8421, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8422, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8423, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8424, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 12072, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12073, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12074, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 12075, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12076, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12077, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12078, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12079, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12080, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12081, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12082, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12083, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12084, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12085, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12086, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12087, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12088, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12089, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12090, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12091, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12092, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12093, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12094, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12095, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12096, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12097, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12098, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12099, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12100, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12101, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12102, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12103, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12104, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12105, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12106, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12107, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12108, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12109, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12110, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12111, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12112, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12113, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12114, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12115, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12116, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12117, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12118, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12119, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12120, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12121, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12122, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12123, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12124, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12125, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12126, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12127, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12128, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12129, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12130, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12131, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12132, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12133, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12134, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12135, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12136, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12137, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12138, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12139, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12140, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12141, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12142, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12143, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12144, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12145, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12146, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12147, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12148, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12149, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12150, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12151, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12152, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12153, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12154, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12155, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12156, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12157, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12158, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12159, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12160, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12161, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12162, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12163, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12164, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12165, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12166, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12167, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12168, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12169, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12170, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12171, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12172, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12173, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12174, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12175, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12176, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12177, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12178, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12179, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12180, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12181, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12182, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12183, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12184, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12185, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12186, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12187, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12188, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12189, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12190, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12191, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12192, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12193, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12194, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12195, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12196, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12197, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12198, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12199, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12200, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12201, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12202, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12203, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12204, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12205, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12206, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12207, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12208, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12209, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12210, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12211, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12212, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12213, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12214, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12215, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12216, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12217, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12218, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12219, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12220, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12221, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12222, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12223, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12224, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12225, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12226, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12227, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12228, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12229, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12230, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12231, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12232, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12233, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12234, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12235, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12236, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12237, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12238, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12239, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12240, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12241, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12242, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12243, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12244, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12245, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12246, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12247, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12248, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12249, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12250, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12251, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12252, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12253, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12254, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12255, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12256, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12257, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12258, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12259, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12260, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12261, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12262, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12263, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12264, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12265, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12266, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12267, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12268, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12269, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12270, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12271, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12272, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12273, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12274, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12275, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12276, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12277, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12278, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12279, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12280, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12281, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12282, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12283, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12284, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12285, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12286, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12287, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12288, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12289, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12290, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12291, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12292, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12293, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12294, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12295, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12296, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12297, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12298, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12299, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12300, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12301, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12302, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12303, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12304, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12305, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12306, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12307, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12308, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12309, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12310, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12311, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12312, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12313, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12314, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12315, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12316, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12317, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12318, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12319, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12320, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12321, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12322, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12323, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12324, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12325, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12326, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12327, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12328, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12329, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12330, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12331, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12332, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12333, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12334, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12335, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12336, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12337, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12338, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12339, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12340, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12341, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12342, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12343, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12344, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12345, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12346, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12347, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12348, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12349, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12350, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12351, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12352, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12353, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12354, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12355, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12356, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12357, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12358, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12359, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12360, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12361, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12362, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12363, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12364, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12365, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12366, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12367, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12368, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12369, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12370, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12371, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12372, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12373, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12374, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12375, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12376, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12377, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12378, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12379, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12380, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12381, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12382, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12383, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12384, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12385, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12386, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12387, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12388, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12389, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12390, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12391, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12392, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12393, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12394, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12395, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:pumpkin": { + "states": [ + { + "default": true, + "id": 4307 + } + ] + }, + "minecraft:pumpkin_stem": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 5151, + "properties": { + "age": "0" + } + }, + { + "id": 5152, + "properties": { + "age": "1" + } + }, + { + "id": 5153, + "properties": { + "age": "2" + } + }, + { + "id": 5154, + "properties": { + "age": "3" + } + }, + { + "id": 5155, + "properties": { + "age": "4" + } + }, + { + "id": 5156, + "properties": { + "age": "5" + } + }, + { + "id": 5157, + "properties": { + "age": "6" + } + }, + { + "id": 5158, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:purple_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8798, + "properties": { + "rotation": "0" + } + }, + { + "id": 8799, + "properties": { + "rotation": "1" + } + }, + { + "id": 8800, + "properties": { + "rotation": "2" + } + }, + { + "id": 8801, + "properties": { + "rotation": "3" + } + }, + { + "id": 8802, + "properties": { + "rotation": "4" + } + }, + { + "id": 8803, + "properties": { + "rotation": "5" + } + }, + { + "id": 8804, + "properties": { + "rotation": "6" + } + }, + { + "id": 8805, + "properties": { + "rotation": "7" + } + }, + { + "id": 8806, + "properties": { + "rotation": "8" + } + }, + { + "id": 8807, + "properties": { + "rotation": "9" + } + }, + { + "id": 8808, + "properties": { + "rotation": "10" + } + }, + { + "id": 8809, + "properties": { + "rotation": "11" + } + }, + { + "id": 8810, + "properties": { + "rotation": "12" + } + }, + { + "id": 8811, + "properties": { + "rotation": "13" + } + }, + { + "id": 8812, + "properties": { + "rotation": "14" + } + }, + { + "id": 8813, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:purple_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1439, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1440, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1441, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1442, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1443, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1444, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1445, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1446, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1447, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1448, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1449, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1450, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1451, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1452, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1453, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1454, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:purple_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18489, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18490, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18491, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18492, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18493, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18494, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18495, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18496, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18497, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18498, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18499, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18500, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18501, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18502, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18503, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18504, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purple_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18607, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18608, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:purple_carpet": { + "states": [ + { + "default": true, + "id": 8617 + } + ] + }, + "minecraft:purple_concrete": { + "states": [ + { + "default": true, + "id": 10329 + } + ] + }, + "minecraft:purple_concrete_powder": { + "states": [ + { + "default": true, + "id": 10345 + } + ] + }, + "minecraft:purple_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10295, + "properties": { + "facing": "north" + } + }, + { + "id": 10296, + "properties": { + "facing": "south" + } + }, + { + "id": 10297, + "properties": { + "facing": "west" + } + }, + { + "id": 10298, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:purple_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10219, + "properties": { + "facing": "north" + } + }, + { + "id": 10220, + "properties": { + "facing": "east" + } + }, + { + "id": 10221, + "properties": { + "facing": "south" + } + }, + { + "id": 10222, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10223, + "properties": { + "facing": "up" + } + }, + { + "id": 10224, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:purple_stained_glass": { + "states": [ + { + "default": true, + "id": 4414 + } + ] + }, + "minecraft:purple_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7812, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7813, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7814, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7815, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7816, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7817, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7818, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7819, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7820, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7821, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7822, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7823, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7824, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7825, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7826, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7827, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7828, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7829, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7830, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7831, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7832, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7833, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7834, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7835, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7836, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7837, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7838, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7839, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7840, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7841, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7842, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7843, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:purple_terracotta": { + "states": [ + { + "default": true, + "id": 7486 + } + ] + }, + "minecraft:purple_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8934, + "properties": { + "facing": "north" + } + }, + { + "id": 8935, + "properties": { + "facing": "south" + } + }, + { + "id": 8936, + "properties": { + "facing": "west" + } + }, + { + "id": 8937, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:purple_wool": { + "states": [ + { + "default": true, + "id": 1648 + } + ] + }, + "minecraft:purpur_block": { + "states": [ + { + "default": true, + "id": 10015 + } + ] + }, + "minecraft:purpur_pillar": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 10016, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 10017, + "properties": { + "axis": "y" + } + }, + { + "id": 10018, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:purpur_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9161, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9162, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9163, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9164, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9165, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9166, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purpur_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10019, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10020, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10021, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10022, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10023, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10024, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10025, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10026, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10027, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10028, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10029, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10030, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10031, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10032, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10033, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10034, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10035, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10036, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10037, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10038, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10039, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10040, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10041, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10042, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10043, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10044, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10045, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10046, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10047, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10048, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10049, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10050, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10051, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10052, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10053, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10054, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10055, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10056, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10057, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10058, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10059, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10060, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10061, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10062, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10063, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10064, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10065, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10066, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10067, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10068, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10069, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10070, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10071, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10072, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10073, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10074, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10075, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10076, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10077, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10078, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10079, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10080, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10081, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10082, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10083, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10084, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10085, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10086, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10087, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10088, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10089, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10090, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10091, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10092, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10093, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10094, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10095, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10096, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10097, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10098, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_block": { + "states": [ + { + "default": true, + "id": 7355 + } + ] + }, + "minecraft:quartz_bricks": { + "states": [ + { + "default": true, + "id": 18312 + } + ] + }, + "minecraft:quartz_pillar": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 7357, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 7358, + "properties": { + "axis": "y" + } + }, + { + "id": 7359, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:quartz_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9143, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9144, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9145, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9146, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9147, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9148, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7360, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7361, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7362, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7363, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7364, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7365, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7366, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7367, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7368, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7369, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7370, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7371, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7372, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7373, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7374, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7375, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7376, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7377, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7378, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7379, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7380, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7381, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7382, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7383, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7384, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7385, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7386, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7387, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7388, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7389, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7390, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7391, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7392, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7393, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7394, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7395, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7396, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7397, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7398, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7399, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7400, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7401, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7402, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7403, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7404, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7405, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7406, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7407, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7408, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7409, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7410, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7411, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7412, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7413, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7414, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7415, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7416, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7417, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7418, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7419, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7420, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7421, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7422, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7423, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7424, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7425, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7426, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7427, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7428, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7429, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7430, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7431, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7432, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7433, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7434, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7435, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7436, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7437, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7438, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7439, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:rail": { + "properties": { + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south", + "south_east", + "south_west", + "north_west", + "north_east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3932, + "properties": { + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3933, + "properties": { + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 3934, + "properties": { + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 3935, + "properties": { + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 3936, + "properties": { + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 3937, + "properties": { + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 3938, + "properties": { + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 3939, + "properties": { + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 3940, + "properties": { + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 3941, + "properties": { + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 3942, + "properties": { + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 3943, + "properties": { + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 3944, + "properties": { + "shape": "south_east", + "waterlogged": "true" + } + }, + { + "id": 3945, + "properties": { + "shape": "south_east", + "waterlogged": "false" + } + }, + { + "id": 3946, + "properties": { + "shape": "south_west", + "waterlogged": "true" + } + }, + { + "id": 3947, + "properties": { + "shape": "south_west", + "waterlogged": "false" + } + }, + { + "id": 3948, + "properties": { + "shape": "north_west", + "waterlogged": "true" + } + }, + { + "id": 3949, + "properties": { + "shape": "north_west", + "waterlogged": "false" + } + }, + { + "id": 3950, + "properties": { + "shape": "north_east", + "waterlogged": "true" + } + }, + { + "id": 3951, + "properties": { + "shape": "north_east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:raw_copper_block": { + "states": [ + { + "default": true, + "id": 21433 + } + ] + }, + "minecraft:raw_gold_block": { + "states": [ + { + "default": true, + "id": 21434 + } + ] + }, + "minecraft:raw_iron_block": { + "states": [ + { + "default": true, + "id": 21432 + } + ] + }, + "minecraft:red_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8862, + "properties": { + "rotation": "0" + } + }, + { + "id": 8863, + "properties": { + "rotation": "1" + } + }, + { + "id": 8864, + "properties": { + "rotation": "2" + } + }, + { + "id": 8865, + "properties": { + "rotation": "3" + } + }, + { + "id": 8866, + "properties": { + "rotation": "4" + } + }, + { + "id": 8867, + "properties": { + "rotation": "5" + } + }, + { + "id": 8868, + "properties": { + "rotation": "6" + } + }, + { + "id": 8869, + "properties": { + "rotation": "7" + } + }, + { + "id": 8870, + "properties": { + "rotation": "8" + } + }, + { + "id": 8871, + "properties": { + "rotation": "9" + } + }, + { + "id": 8872, + "properties": { + "rotation": "10" + } + }, + { + "id": 8873, + "properties": { + "rotation": "11" + } + }, + { + "id": 8874, + "properties": { + "rotation": "12" + } + }, + { + "id": 8875, + "properties": { + "rotation": "13" + } + }, + { + "id": 8876, + "properties": { + "rotation": "14" + } + }, + { + "id": 8877, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:red_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1503, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1504, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1505, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1506, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1507, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1508, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1509, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1510, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1511, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1512, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1513, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1514, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1515, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1516, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1517, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1518, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:red_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18553, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18554, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18555, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18556, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18557, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18558, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18559, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18560, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18561, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18562, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18563, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18564, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18565, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18566, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18567, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18568, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18615, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18616, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:red_carpet": { + "states": [ + { + "default": true, + "id": 8621 + } + ] + }, + "minecraft:red_concrete": { + "states": [ + { + "default": true, + "id": 10333 + } + ] + }, + "minecraft:red_concrete_powder": { + "states": [ + { + "default": true, + "id": 10349 + } + ] + }, + "minecraft:red_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10311, + "properties": { + "facing": "north" + } + }, + { + "id": 10312, + "properties": { + "facing": "south" + } + }, + { + "id": 10313, + "properties": { + "facing": "west" + } + }, + { + "id": 10314, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:red_mushroom": { + "states": [ + { + "default": true, + "id": 1680 + } + ] + }, + "minecraft:red_mushroom_block": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 4944, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4945, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4946, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4947, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4948, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4949, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4950, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4951, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 4952, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4953, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4954, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4955, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4956, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4957, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4958, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4959, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 4960, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4961, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4962, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4963, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4964, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4965, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4966, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4967, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 4968, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4969, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4970, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4971, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4972, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4973, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4974, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4975, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 4976, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4977, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4978, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4979, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4980, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4981, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4982, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4983, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 4984, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4985, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4986, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4987, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4988, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4989, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4990, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4991, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 4992, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 4993, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 4994, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 4995, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 4996, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 4997, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 4998, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 4999, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 5000, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 5001, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 5002, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 5003, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 5004, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 5005, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 5006, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 5007, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_nether_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11730, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11731, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11732, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11733, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11734, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11735, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11430, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11431, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11432, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11433, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11434, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11435, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11436, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11437, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11438, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11439, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11440, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11441, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11442, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11443, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11444, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11445, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11446, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11447, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11448, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11449, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11450, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11451, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11452, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11453, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11454, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11455, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11456, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11457, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11458, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11459, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11460, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11461, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11462, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11463, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11464, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11465, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11466, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11467, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11468, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11469, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11470, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11471, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11472, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11473, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11474, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11475, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11476, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11477, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11478, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11479, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11480, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11481, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11482, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11483, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11484, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11485, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11486, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11487, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11488, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11489, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11490, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11491, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11492, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11493, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11494, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11495, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11496, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11497, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11498, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11499, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11500, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11501, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11502, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11503, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11504, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11505, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11506, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11507, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11508, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11509, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14664, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14665, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14666, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 14667, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14668, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14669, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14670, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14671, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14672, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14673, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14674, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14675, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14676, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14677, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14678, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14679, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14680, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14681, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14682, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14683, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14684, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14685, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14686, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14687, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14688, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14689, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14690, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14691, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14692, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14693, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14694, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14695, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14696, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14697, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14698, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14699, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14700, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14701, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14702, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14703, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14704, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14705, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14706, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14707, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14708, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14709, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14710, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14711, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14712, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14713, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14714, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14715, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14716, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14717, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14718, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14719, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14720, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14721, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14722, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14723, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14724, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14725, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14726, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14727, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14728, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14729, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14730, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14731, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14732, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14733, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14734, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14735, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14736, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14737, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14738, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14739, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14740, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14741, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14742, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14743, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14744, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14745, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14746, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14747, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14748, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14749, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14750, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14751, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14752, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14753, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14754, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14755, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14756, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14757, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14758, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14759, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14760, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14761, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14762, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14763, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14764, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14765, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14766, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14767, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14768, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14769, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14770, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14771, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14772, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14773, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14774, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14775, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14776, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14777, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14778, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14779, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14780, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14781, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14782, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14783, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14784, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14785, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14786, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14787, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14788, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14789, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14790, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14791, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14792, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14793, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14794, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14795, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14796, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14797, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14798, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14799, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14800, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14801, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14802, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14803, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14804, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14805, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14806, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14807, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14808, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14809, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14810, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14811, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14812, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14813, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14814, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14815, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14816, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14817, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14818, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14819, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14820, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14821, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14822, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14823, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14824, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14825, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14826, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14827, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14828, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14829, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14830, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14831, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14832, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14833, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14834, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14835, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14836, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14837, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14838, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14839, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14840, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14841, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14842, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14843, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14844, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14845, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14846, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14847, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14848, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14849, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14850, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14851, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14852, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14853, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14854, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14855, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14856, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14857, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14858, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14859, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14860, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14861, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14862, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14863, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14864, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14865, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14866, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14867, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14868, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14869, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14870, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14871, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14872, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14873, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14874, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14875, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14876, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14877, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14878, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14879, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14880, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14881, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14882, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14883, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14884, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14885, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14886, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14887, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14888, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14889, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14890, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14891, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14892, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14893, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14894, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14895, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14896, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14897, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14898, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14899, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14900, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14901, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14902, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14903, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14904, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14905, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14906, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14907, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14908, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14909, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14910, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14911, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14912, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14913, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14914, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14915, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14916, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14917, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14918, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14919, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14920, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14921, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14922, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14923, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14924, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14925, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14926, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14927, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14928, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14929, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14930, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14931, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14932, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14933, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14934, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14935, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14936, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14937, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14938, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14939, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14940, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14941, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14942, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14943, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14944, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14945, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14946, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14947, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14948, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14949, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14950, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14951, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14952, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14953, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14954, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14955, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14956, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14957, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14958, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14959, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14960, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14961, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14962, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14963, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14964, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14965, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14966, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14967, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14968, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14969, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14970, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14971, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14972, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14973, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14974, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14975, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14976, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14977, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14978, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14979, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14980, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14981, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14982, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14983, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14984, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14985, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14986, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14987, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:red_nether_bricks": { + "states": [ + { + "default": true, + "id": 10136 + } + ] + }, + "minecraft:red_sand": { + "states": [ + { + "default": true, + "id": 108 + } + ] + }, + "minecraft:red_sandstone": { + "states": [ + { + "default": true, + "id": 8958 + } + ] + }, + "minecraft:red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9149, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9150, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9151, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9152, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9153, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9154, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8961, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8962, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8963, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8964, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8965, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8966, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8967, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8968, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8969, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8970, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8971, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8972, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8973, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8974, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8975, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8976, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8977, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8978, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8979, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8980, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8981, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8982, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8983, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8984, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8985, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8986, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8987, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8988, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8989, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8990, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8991, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8992, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8993, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8994, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8995, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8996, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8997, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8998, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8999, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9000, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9001, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9002, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9003, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9004, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9005, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9006, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9007, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9008, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9009, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9010, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9011, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9012, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9013, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9014, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9015, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9016, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9017, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9018, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9019, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9020, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9021, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9022, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9023, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9024, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9025, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9026, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9027, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9028, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9029, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9030, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9031, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9032, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9033, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9034, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9035, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9036, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9037, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9038, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9039, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9040, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_sandstone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 12396, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12397, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12398, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 12399, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12400, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12401, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12402, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12403, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12404, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12405, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12406, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12407, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12408, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12409, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12410, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12411, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12412, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12413, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12414, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12415, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12416, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12417, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12418, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12419, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12420, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12421, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12422, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12423, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12424, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12425, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12426, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12427, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12428, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12429, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12430, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12431, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12432, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12433, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12434, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12435, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12436, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12437, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12438, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12439, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12440, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12441, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12442, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12443, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12444, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12445, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12446, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12447, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12448, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12449, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12450, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12451, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12452, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12453, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12454, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12455, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12456, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12457, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12458, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12459, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12460, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12461, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12462, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12463, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12464, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12465, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12466, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12467, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12468, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12469, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12470, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12471, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12472, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12473, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12474, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12475, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12476, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12477, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12478, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12479, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12480, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12481, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12482, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12483, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12484, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12485, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12486, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12487, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12488, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12489, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12490, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12491, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12492, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12493, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12494, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12495, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12496, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12497, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12498, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12499, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12500, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12501, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12502, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12503, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12504, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12505, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12506, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12507, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12508, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12509, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12510, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12511, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12512, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12513, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12514, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12515, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12516, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12517, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12518, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12519, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12520, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12521, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12522, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12523, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12524, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12525, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12526, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12527, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12528, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12529, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12530, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12531, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12532, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12533, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12534, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12535, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12536, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12537, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12538, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12539, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12540, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12541, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12542, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12543, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12544, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12545, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12546, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12547, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12548, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12549, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12550, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12551, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12552, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12553, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12554, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12555, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12556, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12557, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12558, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12559, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12560, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12561, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12562, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12563, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12564, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12565, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12566, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12567, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12568, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12569, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12570, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12571, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12572, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12573, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12574, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12575, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12576, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12577, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12578, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12579, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12580, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12581, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12582, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12583, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12584, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12585, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12586, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12587, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12588, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12589, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12590, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12591, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12592, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12593, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12594, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12595, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12596, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12597, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12598, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12599, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12600, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12601, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12602, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12603, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12604, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12605, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12606, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12607, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12608, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12609, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12610, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12611, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12612, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12613, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12614, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12615, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12616, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12617, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12618, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12619, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12620, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12621, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12622, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12623, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12624, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12625, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12626, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12627, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12628, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12629, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12630, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12631, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12632, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12633, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12634, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12635, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12636, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12637, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12638, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12639, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12640, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12641, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12642, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12643, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12644, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12645, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12646, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12647, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12648, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12649, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12650, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12651, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12652, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12653, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12654, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12655, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12656, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12657, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12658, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12659, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12660, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12661, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12662, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12663, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12664, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12665, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12666, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12667, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12668, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12669, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12670, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12671, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12672, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12673, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12674, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12675, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12676, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12677, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12678, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12679, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12680, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12681, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12682, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12683, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12684, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12685, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12686, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12687, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12688, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12689, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12690, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12691, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12692, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12693, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12694, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12695, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12696, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12697, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12698, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12699, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12700, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12701, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12702, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12703, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12704, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12705, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12706, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12707, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12708, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12709, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12710, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12711, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12712, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12713, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12714, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12715, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12716, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12717, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12718, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12719, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:red_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10243, + "properties": { + "facing": "north" + } + }, + { + "id": 10244, + "properties": { + "facing": "east" + } + }, + { + "id": 10245, + "properties": { + "facing": "south" + } + }, + { + "id": 10246, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10247, + "properties": { + "facing": "up" + } + }, + { + "id": 10248, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:red_stained_glass": { + "states": [ + { + "default": true, + "id": 4418 + } + ] + }, + "minecraft:red_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7940, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7941, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7942, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7943, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7944, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7945, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7946, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7947, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7948, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7949, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7950, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7951, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7952, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7953, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7954, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7955, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7956, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7957, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7958, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7959, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7960, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7961, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7962, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7963, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7964, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7965, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7966, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7967, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7968, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7969, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7970, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7971, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_terracotta": { + "states": [ + { + "default": true, + "id": 7490 + } + ] + }, + "minecraft:red_tulip": { + "states": [ + { + "default": true, + "id": 1671 + } + ] + }, + "minecraft:red_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8950, + "properties": { + "facing": "north" + } + }, + { + "id": 8951, + "properties": { + "facing": "south" + } + }, + { + "id": 8952, + "properties": { + "facing": "west" + } + }, + { + "id": 8953, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:red_wool": { + "states": [ + { + "default": true, + "id": 1652 + } + ] + }, + "minecraft:redstone_block": { + "states": [ + { + "default": true, + "id": 7343 + } + ] + }, + "minecraft:redstone_lamp": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5747, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 5748, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_ore": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4192, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 4193, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_torch": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 4196, + "properties": { + "lit": "true" + } + }, + { + "id": 4197, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 4198, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "id": 4199, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 4200, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 4201, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 4202, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 4203, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 4204, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 4205, + "properties": { + "facing": "east", + "lit": "false" + } } ] }, @@ -19407,19210 +167966,12973 @@ }, "states": [ { + "id": 2312, "properties": { "east": "up", "north": "up", "power": "0", "south": "up", "west": "up" - }, - "id": 2114 + } }, { + "id": 2313, "properties": { "east": "up", "north": "up", "power": "0", "south": "up", "west": "side" - }, - "id": 2115 + } }, { + "id": 2314, "properties": { "east": "up", "north": "up", "power": "0", "south": "up", "west": "none" - }, - "id": 2116 + } }, { + "id": 2315, "properties": { "east": "up", "north": "up", "power": "0", "south": "side", "west": "up" - }, - "id": 2117 + } }, { + "id": 2316, "properties": { "east": "up", "north": "up", "power": "0", "south": "side", "west": "side" - }, - "id": 2118 + } }, { + "id": 2317, "properties": { "east": "up", "north": "up", "power": "0", "south": "side", "west": "none" - }, - "id": 2119 + } }, { + "id": 2318, "properties": { "east": "up", "north": "up", "power": "0", "south": "none", "west": "up" - }, - "id": 2120 + } }, { + "id": 2319, "properties": { "east": "up", "north": "up", "power": "0", "south": "none", "west": "side" - }, - "id": 2121 + } }, { + "id": 2320, "properties": { "east": "up", "north": "up", "power": "0", "south": "none", "west": "none" - }, - "id": 2122 + } }, { + "id": 2321, "properties": { "east": "up", "north": "up", "power": "1", "south": "up", "west": "up" - }, - "id": 2123 + } }, { + "id": 2322, "properties": { "east": "up", "north": "up", "power": "1", "south": "up", "west": "side" - }, - "id": 2124 + } }, { + "id": 2323, "properties": { "east": "up", "north": "up", "power": "1", "south": "up", "west": "none" - }, - "id": 2125 + } }, { + "id": 2324, "properties": { "east": "up", "north": "up", "power": "1", "south": "side", "west": "up" - }, - "id": 2126 + } }, { + "id": 2325, "properties": { "east": "up", "north": "up", "power": "1", "south": "side", "west": "side" - }, - "id": 2127 + } }, { + "id": 2326, "properties": { "east": "up", "north": "up", "power": "1", "south": "side", "west": "none" - }, - "id": 2128 + } }, { + "id": 2327, "properties": { "east": "up", "north": "up", "power": "1", "south": "none", "west": "up" - }, - "id": 2129 + } }, { + "id": 2328, "properties": { "east": "up", "north": "up", "power": "1", "south": "none", "west": "side" - }, - "id": 2130 + } }, { + "id": 2329, "properties": { "east": "up", "north": "up", "power": "1", "south": "none", "west": "none" - }, - "id": 2131 + } }, { + "id": 2330, "properties": { "east": "up", "north": "up", "power": "2", "south": "up", "west": "up" - }, - "id": 2132 + } }, { + "id": 2331, "properties": { "east": "up", "north": "up", "power": "2", "south": "up", "west": "side" - }, - "id": 2133 + } }, { + "id": 2332, "properties": { "east": "up", "north": "up", "power": "2", "south": "up", "west": "none" - }, - "id": 2134 + } }, { + "id": 2333, "properties": { "east": "up", "north": "up", "power": "2", "south": "side", "west": "up" - }, - "id": 2135 + } }, { + "id": 2334, "properties": { "east": "up", "north": "up", "power": "2", "south": "side", "west": "side" - }, - "id": 2136 + } }, { + "id": 2335, "properties": { "east": "up", "north": "up", "power": "2", "south": "side", "west": "none" - }, - "id": 2137 + } }, { + "id": 2336, "properties": { "east": "up", "north": "up", "power": "2", "south": "none", "west": "up" - }, - "id": 2138 + } }, { + "id": 2337, "properties": { "east": "up", "north": "up", "power": "2", "south": "none", "west": "side" - }, - "id": 2139 + } }, { + "id": 2338, "properties": { "east": "up", "north": "up", "power": "2", "south": "none", "west": "none" - }, - "id": 2140 + } }, { + "id": 2339, "properties": { "east": "up", "north": "up", "power": "3", "south": "up", "west": "up" - }, - "id": 2141 + } }, { + "id": 2340, "properties": { "east": "up", "north": "up", "power": "3", "south": "up", "west": "side" - }, - "id": 2142 + } }, { + "id": 2341, "properties": { "east": "up", "north": "up", "power": "3", "south": "up", "west": "none" - }, - "id": 2143 + } }, { + "id": 2342, "properties": { "east": "up", "north": "up", "power": "3", "south": "side", "west": "up" - }, - "id": 2144 + } }, { + "id": 2343, "properties": { "east": "up", "north": "up", "power": "3", "south": "side", "west": "side" - }, - "id": 2145 + } }, { + "id": 2344, "properties": { "east": "up", "north": "up", "power": "3", "south": "side", "west": "none" - }, - "id": 2146 + } }, { + "id": 2345, "properties": { "east": "up", "north": "up", "power": "3", "south": "none", "west": "up" - }, - "id": 2147 + } }, { + "id": 2346, "properties": { "east": "up", "north": "up", "power": "3", "south": "none", "west": "side" - }, - "id": 2148 + } }, { + "id": 2347, "properties": { "east": "up", "north": "up", "power": "3", "south": "none", "west": "none" - }, - "id": 2149 + } }, { + "id": 2348, "properties": { "east": "up", "north": "up", "power": "4", "south": "up", "west": "up" - }, - "id": 2150 + } }, { + "id": 2349, "properties": { "east": "up", "north": "up", "power": "4", "south": "up", "west": "side" - }, - "id": 2151 + } }, { + "id": 2350, "properties": { "east": "up", "north": "up", "power": "4", "south": "up", "west": "none" - }, - "id": 2152 + } }, { + "id": 2351, "properties": { "east": "up", "north": "up", "power": "4", "south": "side", "west": "up" - }, - "id": 2153 + } }, { + "id": 2352, "properties": { "east": "up", "north": "up", "power": "4", "south": "side", "west": "side" - }, - "id": 2154 + } }, { + "id": 2353, "properties": { "east": "up", "north": "up", "power": "4", "south": "side", "west": "none" - }, - "id": 2155 + } }, { + "id": 2354, "properties": { "east": "up", "north": "up", "power": "4", "south": "none", "west": "up" - }, - "id": 2156 + } }, { + "id": 2355, "properties": { "east": "up", "north": "up", "power": "4", "south": "none", "west": "side" - }, - "id": 2157 + } }, { + "id": 2356, "properties": { "east": "up", "north": "up", "power": "4", "south": "none", "west": "none" - }, - "id": 2158 + } }, { + "id": 2357, "properties": { "east": "up", "north": "up", "power": "5", "south": "up", "west": "up" - }, - "id": 2159 + } }, { + "id": 2358, "properties": { "east": "up", "north": "up", "power": "5", "south": "up", "west": "side" - }, - "id": 2160 + } }, { + "id": 2359, "properties": { "east": "up", "north": "up", "power": "5", "south": "up", "west": "none" - }, - "id": 2161 + } }, { + "id": 2360, "properties": { "east": "up", "north": "up", "power": "5", "south": "side", "west": "up" - }, - "id": 2162 + } }, { + "id": 2361, "properties": { "east": "up", "north": "up", "power": "5", "south": "side", "west": "side" - }, - "id": 2163 + } }, { + "id": 2362, "properties": { "east": "up", "north": "up", "power": "5", "south": "side", "west": "none" - }, - "id": 2164 + } }, { + "id": 2363, "properties": { "east": "up", "north": "up", "power": "5", "south": "none", "west": "up" - }, - "id": 2165 + } }, { + "id": 2364, "properties": { "east": "up", "north": "up", "power": "5", "south": "none", "west": "side" - }, - "id": 2166 + } }, { + "id": 2365, "properties": { "east": "up", "north": "up", "power": "5", "south": "none", "west": "none" - }, - "id": 2167 + } }, { + "id": 2366, "properties": { "east": "up", "north": "up", "power": "6", "south": "up", "west": "up" - }, - "id": 2168 + } }, { + "id": 2367, "properties": { "east": "up", "north": "up", "power": "6", "south": "up", "west": "side" - }, - "id": 2169 + } }, { + "id": 2368, "properties": { "east": "up", "north": "up", "power": "6", "south": "up", "west": "none" - }, - "id": 2170 + } }, { + "id": 2369, "properties": { "east": "up", "north": "up", "power": "6", "south": "side", "west": "up" - }, - "id": 2171 + } }, { + "id": 2370, "properties": { "east": "up", "north": "up", "power": "6", "south": "side", "west": "side" - }, - "id": 2172 + } }, { + "id": 2371, "properties": { "east": "up", "north": "up", "power": "6", "south": "side", "west": "none" - }, - "id": 2173 + } }, { + "id": 2372, "properties": { "east": "up", "north": "up", "power": "6", "south": "none", "west": "up" - }, - "id": 2174 + } }, { + "id": 2373, "properties": { "east": "up", "north": "up", "power": "6", "south": "none", "west": "side" - }, - "id": 2175 + } }, { + "id": 2374, "properties": { "east": "up", "north": "up", "power": "6", "south": "none", "west": "none" - }, - "id": 2176 + } }, { + "id": 2375, "properties": { "east": "up", "north": "up", "power": "7", "south": "up", "west": "up" - }, - "id": 2177 + } }, { + "id": 2376, "properties": { "east": "up", "north": "up", "power": "7", "south": "up", "west": "side" - }, - "id": 2178 + } }, { + "id": 2377, "properties": { "east": "up", "north": "up", "power": "7", "south": "up", "west": "none" - }, - "id": 2179 + } }, { + "id": 2378, "properties": { "east": "up", "north": "up", "power": "7", "south": "side", "west": "up" - }, - "id": 2180 + } }, { + "id": 2379, "properties": { "east": "up", "north": "up", "power": "7", "south": "side", "west": "side" - }, - "id": 2181 + } }, { + "id": 2380, "properties": { "east": "up", "north": "up", "power": "7", "south": "side", "west": "none" - }, - "id": 2182 + } }, { + "id": 2381, "properties": { "east": "up", "north": "up", "power": "7", "south": "none", "west": "up" - }, - "id": 2183 + } }, { + "id": 2382, "properties": { "east": "up", "north": "up", "power": "7", "south": "none", "west": "side" - }, - "id": 2184 + } }, { + "id": 2383, "properties": { "east": "up", "north": "up", "power": "7", "south": "none", "west": "none" - }, - "id": 2185 + } }, { + "id": 2384, "properties": { "east": "up", "north": "up", "power": "8", "south": "up", "west": "up" - }, - "id": 2186 + } }, { + "id": 2385, "properties": { "east": "up", "north": "up", "power": "8", "south": "up", "west": "side" - }, - "id": 2187 + } }, { + "id": 2386, "properties": { "east": "up", "north": "up", "power": "8", "south": "up", "west": "none" - }, - "id": 2188 + } }, { + "id": 2387, "properties": { "east": "up", "north": "up", "power": "8", "south": "side", "west": "up" - }, - "id": 2189 + } }, { + "id": 2388, "properties": { "east": "up", "north": "up", "power": "8", "south": "side", "west": "side" - }, - "id": 2190 + } }, { + "id": 2389, "properties": { "east": "up", "north": "up", "power": "8", "south": "side", "west": "none" - }, - "id": 2191 + } }, { + "id": 2390, "properties": { "east": "up", "north": "up", "power": "8", "south": "none", "west": "up" - }, - "id": 2192 + } }, { + "id": 2391, "properties": { "east": "up", "north": "up", "power": "8", "south": "none", "west": "side" - }, - "id": 2193 + } }, { + "id": 2392, "properties": { "east": "up", "north": "up", "power": "8", "south": "none", "west": "none" - }, - "id": 2194 + } }, { + "id": 2393, "properties": { "east": "up", "north": "up", "power": "9", "south": "up", "west": "up" - }, - "id": 2195 + } }, { + "id": 2394, "properties": { "east": "up", "north": "up", "power": "9", "south": "up", "west": "side" - }, - "id": 2196 + } }, { + "id": 2395, "properties": { "east": "up", "north": "up", "power": "9", "south": "up", "west": "none" - }, - "id": 2197 + } }, { + "id": 2396, "properties": { "east": "up", "north": "up", "power": "9", "south": "side", "west": "up" - }, - "id": 2198 + } }, { + "id": 2397, "properties": { "east": "up", "north": "up", "power": "9", "south": "side", "west": "side" - }, - "id": 2199 + } }, { + "id": 2398, "properties": { "east": "up", "north": "up", "power": "9", "south": "side", "west": "none" - }, - "id": 2200 + } }, { + "id": 2399, "properties": { "east": "up", "north": "up", "power": "9", "south": "none", "west": "up" - }, - "id": 2201 + } }, { + "id": 2400, "properties": { "east": "up", "north": "up", "power": "9", "south": "none", "west": "side" - }, - "id": 2202 + } }, { + "id": 2401, "properties": { "east": "up", "north": "up", "power": "9", "south": "none", "west": "none" - }, - "id": 2203 + } }, { + "id": 2402, "properties": { "east": "up", "north": "up", "power": "10", "south": "up", "west": "up" - }, - "id": 2204 + } }, { + "id": 2403, "properties": { "east": "up", "north": "up", "power": "10", "south": "up", "west": "side" - }, - "id": 2205 + } }, { + "id": 2404, "properties": { "east": "up", "north": "up", "power": "10", "south": "up", "west": "none" - }, - "id": 2206 + } }, { + "id": 2405, "properties": { "east": "up", "north": "up", "power": "10", "south": "side", "west": "up" - }, - "id": 2207 + } }, { + "id": 2406, "properties": { "east": "up", "north": "up", "power": "10", "south": "side", "west": "side" - }, - "id": 2208 + } }, { + "id": 2407, "properties": { "east": "up", "north": "up", "power": "10", "south": "side", "west": "none" - }, - "id": 2209 + } }, { + "id": 2408, "properties": { "east": "up", "north": "up", "power": "10", "south": "none", "west": "up" - }, - "id": 2210 + } }, { + "id": 2409, "properties": { "east": "up", "north": "up", "power": "10", "south": "none", "west": "side" - }, - "id": 2211 + } }, { + "id": 2410, "properties": { "east": "up", "north": "up", "power": "10", "south": "none", "west": "none" - }, - "id": 2212 + } }, { + "id": 2411, "properties": { "east": "up", "north": "up", "power": "11", "south": "up", "west": "up" - }, - "id": 2213 + } }, { + "id": 2412, "properties": { "east": "up", "north": "up", "power": "11", "south": "up", "west": "side" - }, - "id": 2214 + } }, { + "id": 2413, "properties": { "east": "up", "north": "up", "power": "11", "south": "up", "west": "none" - }, - "id": 2215 + } }, { + "id": 2414, "properties": { "east": "up", "north": "up", "power": "11", "south": "side", "west": "up" - }, - "id": 2216 + } }, { + "id": 2415, "properties": { "east": "up", "north": "up", "power": "11", "south": "side", "west": "side" - }, - "id": 2217 + } }, { + "id": 2416, "properties": { "east": "up", "north": "up", "power": "11", "south": "side", "west": "none" - }, - "id": 2218 + } }, { + "id": 2417, "properties": { "east": "up", "north": "up", "power": "11", "south": "none", "west": "up" - }, - "id": 2219 + } }, { + "id": 2418, "properties": { "east": "up", "north": "up", "power": "11", "south": "none", "west": "side" - }, - "id": 2220 + } }, { + "id": 2419, "properties": { "east": "up", "north": "up", "power": "11", "south": "none", "west": "none" - }, - "id": 2221 + } }, { + "id": 2420, "properties": { "east": "up", "north": "up", "power": "12", "south": "up", "west": "up" - }, - "id": 2222 + } }, { + "id": 2421, "properties": { "east": "up", "north": "up", "power": "12", "south": "up", "west": "side" - }, - "id": 2223 + } }, { + "id": 2422, "properties": { "east": "up", "north": "up", "power": "12", "south": "up", "west": "none" - }, - "id": 2224 + } }, { + "id": 2423, "properties": { "east": "up", "north": "up", "power": "12", "south": "side", "west": "up" - }, - "id": 2225 + } }, { + "id": 2424, "properties": { "east": "up", "north": "up", "power": "12", "south": "side", "west": "side" - }, - "id": 2226 + } }, { + "id": 2425, "properties": { "east": "up", "north": "up", "power": "12", "south": "side", "west": "none" - }, - "id": 2227 + } }, { + "id": 2426, "properties": { "east": "up", "north": "up", "power": "12", "south": "none", "west": "up" - }, - "id": 2228 + } }, { + "id": 2427, "properties": { "east": "up", "north": "up", "power": "12", "south": "none", "west": "side" - }, - "id": 2229 + } }, { + "id": 2428, "properties": { "east": "up", "north": "up", "power": "12", "south": "none", "west": "none" - }, - "id": 2230 + } }, { + "id": 2429, "properties": { "east": "up", "north": "up", "power": "13", "south": "up", "west": "up" - }, - "id": 2231 + } }, { + "id": 2430, "properties": { "east": "up", "north": "up", "power": "13", "south": "up", "west": "side" - }, - "id": 2232 + } }, { + "id": 2431, "properties": { "east": "up", "north": "up", "power": "13", "south": "up", "west": "none" - }, - "id": 2233 + } }, { + "id": 2432, "properties": { "east": "up", "north": "up", "power": "13", "south": "side", "west": "up" - }, - "id": 2234 + } }, { + "id": 2433, "properties": { "east": "up", "north": "up", "power": "13", "south": "side", "west": "side" - }, - "id": 2235 + } }, { + "id": 2434, "properties": { "east": "up", "north": "up", "power": "13", "south": "side", "west": "none" - }, - "id": 2236 + } }, { + "id": 2435, "properties": { "east": "up", "north": "up", "power": "13", "south": "none", "west": "up" - }, - "id": 2237 + } }, { + "id": 2436, "properties": { "east": "up", "north": "up", "power": "13", "south": "none", "west": "side" - }, - "id": 2238 + } }, { + "id": 2437, "properties": { "east": "up", "north": "up", "power": "13", "south": "none", "west": "none" - }, - "id": 2239 + } }, { + "id": 2438, "properties": { "east": "up", "north": "up", "power": "14", "south": "up", "west": "up" - }, - "id": 2240 + } }, { + "id": 2439, "properties": { "east": "up", "north": "up", "power": "14", "south": "up", "west": "side" - }, - "id": 2241 + } }, { + "id": 2440, "properties": { "east": "up", "north": "up", "power": "14", "south": "up", "west": "none" - }, - "id": 2242 + } }, { + "id": 2441, "properties": { "east": "up", "north": "up", "power": "14", "south": "side", "west": "up" - }, - "id": 2243 + } }, { + "id": 2442, "properties": { "east": "up", "north": "up", "power": "14", "south": "side", "west": "side" - }, - "id": 2244 + } }, { + "id": 2443, "properties": { "east": "up", "north": "up", "power": "14", "south": "side", "west": "none" - }, - "id": 2245 + } }, { + "id": 2444, "properties": { "east": "up", "north": "up", "power": "14", "south": "none", "west": "up" - }, - "id": 2246 + } }, { + "id": 2445, "properties": { "east": "up", "north": "up", "power": "14", "south": "none", "west": "side" - }, - "id": 2247 + } }, { + "id": 2446, "properties": { "east": "up", "north": "up", "power": "14", "south": "none", "west": "none" - }, - "id": 2248 + } }, { + "id": 2447, "properties": { "east": "up", "north": "up", "power": "15", "south": "up", "west": "up" - }, - "id": 2249 + } }, { + "id": 2448, "properties": { "east": "up", "north": "up", "power": "15", "south": "up", "west": "side" - }, - "id": 2250 + } }, { + "id": 2449, "properties": { "east": "up", "north": "up", "power": "15", "south": "up", "west": "none" - }, - "id": 2251 + } }, { + "id": 2450, "properties": { "east": "up", "north": "up", "power": "15", "south": "side", "west": "up" - }, - "id": 2252 + } }, { + "id": 2451, "properties": { "east": "up", "north": "up", "power": "15", "south": "side", "west": "side" - }, - "id": 2253 + } }, { + "id": 2452, "properties": { "east": "up", "north": "up", "power": "15", "south": "side", "west": "none" - }, - "id": 2254 + } }, { + "id": 2453, "properties": { "east": "up", "north": "up", "power": "15", "south": "none", "west": "up" - }, - "id": 2255 + } }, { + "id": 2454, "properties": { "east": "up", "north": "up", "power": "15", "south": "none", "west": "side" - }, - "id": 2256 + } }, { + "id": 2455, "properties": { "east": "up", "north": "up", "power": "15", "south": "none", "west": "none" - }, - "id": 2257 + } }, { + "id": 2456, "properties": { "east": "up", "north": "side", "power": "0", "south": "up", "west": "up" - }, - "id": 2258 + } }, { + "id": 2457, "properties": { "east": "up", "north": "side", "power": "0", "south": "up", "west": "side" - }, - "id": 2259 + } }, { + "id": 2458, "properties": { "east": "up", "north": "side", "power": "0", "south": "up", "west": "none" - }, - "id": 2260 + } }, { + "id": 2459, "properties": { "east": "up", "north": "side", "power": "0", "south": "side", "west": "up" - }, - "id": 2261 + } }, { + "id": 2460, "properties": { "east": "up", "north": "side", "power": "0", "south": "side", "west": "side" - }, - "id": 2262 + } }, { + "id": 2461, "properties": { "east": "up", "north": "side", "power": "0", "south": "side", "west": "none" - }, - "id": 2263 + } }, { + "id": 2462, "properties": { "east": "up", "north": "side", "power": "0", "south": "none", "west": "up" - }, - "id": 2264 + } }, { + "id": 2463, "properties": { "east": "up", "north": "side", "power": "0", "south": "none", "west": "side" - }, - "id": 2265 + } }, { + "id": 2464, "properties": { "east": "up", "north": "side", "power": "0", "south": "none", "west": "none" - }, - "id": 2266 + } }, { + "id": 2465, "properties": { "east": "up", "north": "side", "power": "1", "south": "up", "west": "up" - }, - "id": 2267 + } }, { + "id": 2466, "properties": { "east": "up", "north": "side", "power": "1", "south": "up", "west": "side" - }, - "id": 2268 + } }, { + "id": 2467, "properties": { "east": "up", "north": "side", "power": "1", "south": "up", "west": "none" - }, - "id": 2269 + } }, { + "id": 2468, "properties": { "east": "up", "north": "side", "power": "1", "south": "side", "west": "up" - }, - "id": 2270 + } }, { + "id": 2469, "properties": { "east": "up", "north": "side", "power": "1", "south": "side", "west": "side" - }, - "id": 2271 + } }, { + "id": 2470, "properties": { "east": "up", "north": "side", "power": "1", "south": "side", "west": "none" - }, - "id": 2272 + } }, { + "id": 2471, "properties": { "east": "up", "north": "side", "power": "1", "south": "none", "west": "up" - }, - "id": 2273 + } }, { + "id": 2472, "properties": { "east": "up", "north": "side", "power": "1", "south": "none", "west": "side" - }, - "id": 2274 + } }, { + "id": 2473, "properties": { "east": "up", "north": "side", "power": "1", "south": "none", "west": "none" - }, - "id": 2275 + } }, { + "id": 2474, "properties": { "east": "up", "north": "side", "power": "2", "south": "up", "west": "up" - }, - "id": 2276 + } }, { + "id": 2475, "properties": { "east": "up", "north": "side", "power": "2", "south": "up", "west": "side" - }, - "id": 2277 + } }, { + "id": 2476, "properties": { "east": "up", "north": "side", "power": "2", "south": "up", "west": "none" - }, - "id": 2278 + } }, { + "id": 2477, "properties": { "east": "up", "north": "side", "power": "2", "south": "side", "west": "up" - }, - "id": 2279 + } }, { + "id": 2478, "properties": { "east": "up", "north": "side", "power": "2", "south": "side", "west": "side" - }, - "id": 2280 + } }, { + "id": 2479, "properties": { "east": "up", "north": "side", "power": "2", "south": "side", "west": "none" - }, - "id": 2281 + } }, { + "id": 2480, "properties": { "east": "up", "north": "side", "power": "2", "south": "none", "west": "up" - }, - "id": 2282 + } }, { + "id": 2481, "properties": { "east": "up", "north": "side", "power": "2", "south": "none", "west": "side" - }, - "id": 2283 + } }, { + "id": 2482, "properties": { "east": "up", "north": "side", "power": "2", "south": "none", "west": "none" - }, - "id": 2284 + } }, { + "id": 2483, "properties": { "east": "up", "north": "side", "power": "3", "south": "up", "west": "up" - }, - "id": 2285 + } }, { + "id": 2484, "properties": { "east": "up", "north": "side", "power": "3", "south": "up", "west": "side" - }, - "id": 2286 + } }, { + "id": 2485, "properties": { "east": "up", "north": "side", "power": "3", "south": "up", "west": "none" - }, - "id": 2287 + } }, { + "id": 2486, "properties": { "east": "up", "north": "side", "power": "3", "south": "side", "west": "up" - }, - "id": 2288 + } }, { + "id": 2487, "properties": { "east": "up", "north": "side", "power": "3", "south": "side", "west": "side" - }, - "id": 2289 + } }, { + "id": 2488, "properties": { "east": "up", "north": "side", "power": "3", "south": "side", "west": "none" - }, - "id": 2290 + } }, { + "id": 2489, "properties": { "east": "up", "north": "side", "power": "3", "south": "none", "west": "up" - }, - "id": 2291 + } }, { + "id": 2490, "properties": { "east": "up", "north": "side", "power": "3", "south": "none", "west": "side" - }, - "id": 2292 + } }, { + "id": 2491, "properties": { "east": "up", "north": "side", "power": "3", "south": "none", "west": "none" - }, - "id": 2293 + } }, { + "id": 2492, "properties": { "east": "up", "north": "side", "power": "4", "south": "up", "west": "up" - }, - "id": 2294 + } }, { + "id": 2493, "properties": { "east": "up", "north": "side", "power": "4", "south": "up", "west": "side" - }, - "id": 2295 + } }, { + "id": 2494, "properties": { "east": "up", "north": "side", "power": "4", "south": "up", "west": "none" - }, - "id": 2296 + } }, { + "id": 2495, "properties": { "east": "up", "north": "side", "power": "4", "south": "side", "west": "up" - }, - "id": 2297 + } }, { + "id": 2496, "properties": { "east": "up", "north": "side", "power": "4", "south": "side", "west": "side" - }, - "id": 2298 + } }, { + "id": 2497, "properties": { "east": "up", "north": "side", "power": "4", "south": "side", "west": "none" - }, - "id": 2299 + } }, { + "id": 2498, "properties": { "east": "up", "north": "side", "power": "4", "south": "none", "west": "up" - }, - "id": 2300 + } }, { + "id": 2499, "properties": { "east": "up", "north": "side", "power": "4", "south": "none", "west": "side" - }, - "id": 2301 + } }, { + "id": 2500, "properties": { "east": "up", "north": "side", "power": "4", "south": "none", "west": "none" - }, - "id": 2302 + } }, { + "id": 2501, "properties": { "east": "up", "north": "side", "power": "5", "south": "up", "west": "up" - }, - "id": 2303 + } }, { + "id": 2502, "properties": { "east": "up", "north": "side", "power": "5", "south": "up", "west": "side" - }, - "id": 2304 + } }, { + "id": 2503, "properties": { "east": "up", "north": "side", "power": "5", "south": "up", "west": "none" - }, - "id": 2305 + } }, { + "id": 2504, "properties": { "east": "up", "north": "side", "power": "5", "south": "side", "west": "up" - }, - "id": 2306 + } }, { + "id": 2505, "properties": { "east": "up", "north": "side", "power": "5", "south": "side", "west": "side" - }, - "id": 2307 + } }, { + "id": 2506, "properties": { "east": "up", "north": "side", "power": "5", "south": "side", "west": "none" - }, - "id": 2308 + } }, { + "id": 2507, "properties": { "east": "up", "north": "side", "power": "5", "south": "none", "west": "up" - }, - "id": 2309 + } }, { + "id": 2508, "properties": { "east": "up", "north": "side", "power": "5", "south": "none", "west": "side" - }, - "id": 2310 + } }, { + "id": 2509, "properties": { "east": "up", "north": "side", "power": "5", "south": "none", "west": "none" - }, - "id": 2311 + } }, { + "id": 2510, "properties": { "east": "up", "north": "side", "power": "6", "south": "up", "west": "up" - }, - "id": 2312 + } }, { + "id": 2511, "properties": { "east": "up", "north": "side", "power": "6", "south": "up", "west": "side" - }, - "id": 2313 + } }, { + "id": 2512, "properties": { "east": "up", "north": "side", "power": "6", "south": "up", "west": "none" - }, - "id": 2314 + } }, { + "id": 2513, "properties": { "east": "up", "north": "side", "power": "6", "south": "side", "west": "up" - }, - "id": 2315 + } }, { + "id": 2514, "properties": { "east": "up", "north": "side", "power": "6", "south": "side", "west": "side" - }, - "id": 2316 + } }, { + "id": 2515, "properties": { "east": "up", "north": "side", "power": "6", "south": "side", "west": "none" - }, - "id": 2317 + } }, { + "id": 2516, "properties": { "east": "up", "north": "side", "power": "6", "south": "none", "west": "up" - }, - "id": 2318 + } }, { + "id": 2517, "properties": { "east": "up", "north": "side", "power": "6", "south": "none", "west": "side" - }, - "id": 2319 + } }, { + "id": 2518, "properties": { "east": "up", "north": "side", "power": "6", "south": "none", "west": "none" - }, - "id": 2320 + } }, { + "id": 2519, "properties": { "east": "up", "north": "side", "power": "7", "south": "up", "west": "up" - }, - "id": 2321 + } }, { + "id": 2520, "properties": { "east": "up", "north": "side", "power": "7", "south": "up", "west": "side" - }, - "id": 2322 + } }, { + "id": 2521, "properties": { "east": "up", "north": "side", "power": "7", "south": "up", "west": "none" - }, - "id": 2323 + } }, { + "id": 2522, "properties": { "east": "up", "north": "side", "power": "7", "south": "side", "west": "up" - }, - "id": 2324 + } }, { + "id": 2523, "properties": { "east": "up", "north": "side", "power": "7", "south": "side", "west": "side" - }, - "id": 2325 + } }, { + "id": 2524, "properties": { "east": "up", "north": "side", "power": "7", "south": "side", "west": "none" - }, - "id": 2326 + } }, { + "id": 2525, "properties": { "east": "up", "north": "side", "power": "7", "south": "none", "west": "up" - }, - "id": 2327 + } }, { + "id": 2526, "properties": { "east": "up", "north": "side", "power": "7", "south": "none", "west": "side" - }, - "id": 2328 + } }, { + "id": 2527, "properties": { "east": "up", "north": "side", "power": "7", "south": "none", "west": "none" - }, - "id": 2329 + } }, { + "id": 2528, "properties": { "east": "up", "north": "side", "power": "8", "south": "up", "west": "up" - }, - "id": 2330 + } }, { + "id": 2529, "properties": { "east": "up", "north": "side", "power": "8", "south": "up", "west": "side" - }, - "id": 2331 + } }, { + "id": 2530, "properties": { "east": "up", "north": "side", "power": "8", "south": "up", "west": "none" - }, - "id": 2332 + } }, { + "id": 2531, "properties": { "east": "up", "north": "side", "power": "8", "south": "side", "west": "up" - }, - "id": 2333 + } }, { + "id": 2532, "properties": { "east": "up", "north": "side", "power": "8", "south": "side", "west": "side" - }, - "id": 2334 + } }, { + "id": 2533, "properties": { "east": "up", "north": "side", "power": "8", "south": "side", "west": "none" - }, - "id": 2335 + } }, { + "id": 2534, "properties": { "east": "up", "north": "side", "power": "8", "south": "none", "west": "up" - }, - "id": 2336 + } }, { + "id": 2535, "properties": { "east": "up", "north": "side", "power": "8", "south": "none", "west": "side" - }, - "id": 2337 + } }, { + "id": 2536, "properties": { "east": "up", "north": "side", "power": "8", "south": "none", "west": "none" - }, - "id": 2338 + } }, { + "id": 2537, "properties": { "east": "up", "north": "side", "power": "9", "south": "up", "west": "up" - }, - "id": 2339 + } }, { + "id": 2538, "properties": { "east": "up", "north": "side", "power": "9", "south": "up", "west": "side" - }, - "id": 2340 + } }, { + "id": 2539, "properties": { "east": "up", "north": "side", "power": "9", "south": "up", "west": "none" - }, - "id": 2341 + } }, { + "id": 2540, "properties": { "east": "up", "north": "side", "power": "9", "south": "side", "west": "up" - }, - "id": 2342 + } }, { + "id": 2541, "properties": { "east": "up", "north": "side", "power": "9", "south": "side", "west": "side" - }, - "id": 2343 + } }, { + "id": 2542, "properties": { "east": "up", "north": "side", "power": "9", "south": "side", "west": "none" - }, - "id": 2344 + } }, { + "id": 2543, "properties": { "east": "up", "north": "side", "power": "9", "south": "none", "west": "up" - }, - "id": 2345 + } }, { + "id": 2544, "properties": { "east": "up", "north": "side", "power": "9", "south": "none", "west": "side" - }, - "id": 2346 + } }, { + "id": 2545, "properties": { "east": "up", "north": "side", "power": "9", "south": "none", "west": "none" - }, - "id": 2347 + } }, { + "id": 2546, "properties": { "east": "up", "north": "side", "power": "10", "south": "up", "west": "up" - }, - "id": 2348 + } }, { + "id": 2547, "properties": { "east": "up", "north": "side", "power": "10", "south": "up", "west": "side" - }, - "id": 2349 + } }, { + "id": 2548, "properties": { "east": "up", "north": "side", "power": "10", "south": "up", "west": "none" - }, - "id": 2350 + } }, { + "id": 2549, "properties": { "east": "up", "north": "side", "power": "10", "south": "side", "west": "up" - }, - "id": 2351 + } }, { + "id": 2550, "properties": { "east": "up", "north": "side", "power": "10", "south": "side", "west": "side" - }, - "id": 2352 + } }, { + "id": 2551, "properties": { "east": "up", "north": "side", "power": "10", "south": "side", "west": "none" - }, - "id": 2353 + } }, { + "id": 2552, "properties": { "east": "up", "north": "side", "power": "10", "south": "none", "west": "up" - }, - "id": 2354 + } }, { + "id": 2553, "properties": { "east": "up", "north": "side", "power": "10", "south": "none", "west": "side" - }, - "id": 2355 + } }, { + "id": 2554, "properties": { "east": "up", "north": "side", "power": "10", "south": "none", "west": "none" - }, - "id": 2356 + } }, { + "id": 2555, "properties": { "east": "up", "north": "side", "power": "11", "south": "up", "west": "up" - }, - "id": 2357 + } }, { + "id": 2556, "properties": { "east": "up", "north": "side", "power": "11", "south": "up", "west": "side" - }, - "id": 2358 + } }, { + "id": 2557, "properties": { "east": "up", "north": "side", "power": "11", "south": "up", "west": "none" - }, - "id": 2359 + } }, { + "id": 2558, "properties": { "east": "up", "north": "side", "power": "11", "south": "side", "west": "up" - }, - "id": 2360 + } }, { + "id": 2559, "properties": { "east": "up", "north": "side", "power": "11", "south": "side", "west": "side" - }, - "id": 2361 + } }, { + "id": 2560, "properties": { "east": "up", "north": "side", "power": "11", "south": "side", "west": "none" - }, - "id": 2362 + } }, { + "id": 2561, "properties": { "east": "up", "north": "side", "power": "11", "south": "none", "west": "up" - }, - "id": 2363 + } }, { + "id": 2562, "properties": { "east": "up", "north": "side", "power": "11", "south": "none", "west": "side" - }, - "id": 2364 + } }, { + "id": 2563, "properties": { "east": "up", "north": "side", "power": "11", "south": "none", "west": "none" - }, - "id": 2365 + } }, { + "id": 2564, "properties": { "east": "up", "north": "side", "power": "12", "south": "up", "west": "up" - }, - "id": 2366 + } }, { + "id": 2565, "properties": { "east": "up", "north": "side", "power": "12", "south": "up", "west": "side" - }, - "id": 2367 + } }, { + "id": 2566, "properties": { "east": "up", "north": "side", "power": "12", "south": "up", "west": "none" - }, - "id": 2368 + } }, { + "id": 2567, "properties": { "east": "up", "north": "side", "power": "12", "south": "side", "west": "up" - }, - "id": 2369 + } }, { + "id": 2568, "properties": { "east": "up", "north": "side", "power": "12", "south": "side", "west": "side" - }, - "id": 2370 + } }, { + "id": 2569, "properties": { "east": "up", "north": "side", "power": "12", "south": "side", "west": "none" - }, - "id": 2371 + } }, { + "id": 2570, "properties": { "east": "up", "north": "side", "power": "12", "south": "none", "west": "up" - }, - "id": 2372 + } }, { + "id": 2571, "properties": { "east": "up", "north": "side", "power": "12", "south": "none", "west": "side" - }, - "id": 2373 + } }, { + "id": 2572, "properties": { "east": "up", "north": "side", "power": "12", "south": "none", "west": "none" - }, - "id": 2374 + } }, { + "id": 2573, "properties": { "east": "up", "north": "side", "power": "13", "south": "up", "west": "up" - }, - "id": 2375 + } }, { + "id": 2574, "properties": { "east": "up", "north": "side", "power": "13", "south": "up", "west": "side" - }, - "id": 2376 + } }, { + "id": 2575, "properties": { "east": "up", "north": "side", "power": "13", "south": "up", "west": "none" - }, - "id": 2377 + } }, { + "id": 2576, "properties": { "east": "up", "north": "side", "power": "13", "south": "side", "west": "up" - }, - "id": 2378 + } }, { + "id": 2577, "properties": { "east": "up", "north": "side", "power": "13", "south": "side", "west": "side" - }, - "id": 2379 + } }, { + "id": 2578, "properties": { "east": "up", "north": "side", "power": "13", "south": "side", "west": "none" - }, - "id": 2380 + } }, { + "id": 2579, "properties": { "east": "up", "north": "side", "power": "13", "south": "none", "west": "up" - }, - "id": 2381 + } }, { + "id": 2580, "properties": { "east": "up", "north": "side", "power": "13", "south": "none", "west": "side" - }, - "id": 2382 + } }, { + "id": 2581, "properties": { "east": "up", "north": "side", "power": "13", "south": "none", "west": "none" - }, - "id": 2383 + } }, { + "id": 2582, "properties": { "east": "up", "north": "side", "power": "14", "south": "up", "west": "up" - }, - "id": 2384 + } }, { + "id": 2583, "properties": { "east": "up", "north": "side", "power": "14", "south": "up", "west": "side" - }, - "id": 2385 + } }, { + "id": 2584, "properties": { "east": "up", "north": "side", "power": "14", "south": "up", "west": "none" - }, - "id": 2386 + } }, { + "id": 2585, "properties": { "east": "up", "north": "side", "power": "14", "south": "side", "west": "up" - }, - "id": 2387 + } }, { + "id": 2586, "properties": { "east": "up", "north": "side", "power": "14", "south": "side", "west": "side" - }, - "id": 2388 + } }, { + "id": 2587, "properties": { "east": "up", "north": "side", "power": "14", "south": "side", "west": "none" - }, - "id": 2389 + } }, { + "id": 2588, "properties": { "east": "up", "north": "side", "power": "14", "south": "none", "west": "up" - }, - "id": 2390 + } }, { + "id": 2589, "properties": { "east": "up", "north": "side", "power": "14", "south": "none", "west": "side" - }, - "id": 2391 + } }, { + "id": 2590, "properties": { "east": "up", "north": "side", "power": "14", "south": "none", "west": "none" - }, - "id": 2392 + } }, { + "id": 2591, "properties": { "east": "up", "north": "side", "power": "15", "south": "up", "west": "up" - }, - "id": 2393 + } }, { + "id": 2592, "properties": { "east": "up", "north": "side", "power": "15", "south": "up", "west": "side" - }, - "id": 2394 + } }, { + "id": 2593, "properties": { "east": "up", "north": "side", "power": "15", "south": "up", "west": "none" - }, - "id": 2395 + } }, { + "id": 2594, "properties": { "east": "up", "north": "side", "power": "15", "south": "side", "west": "up" - }, - "id": 2396 + } }, { + "id": 2595, "properties": { "east": "up", "north": "side", "power": "15", "south": "side", "west": "side" - }, - "id": 2397 + } }, { + "id": 2596, "properties": { "east": "up", "north": "side", "power": "15", "south": "side", "west": "none" - }, - "id": 2398 + } }, { + "id": 2597, "properties": { "east": "up", "north": "side", "power": "15", "south": "none", "west": "up" - }, - "id": 2399 + } }, { + "id": 2598, "properties": { "east": "up", "north": "side", "power": "15", "south": "none", "west": "side" - }, - "id": 2400 + } }, { + "id": 2599, "properties": { "east": "up", "north": "side", "power": "15", "south": "none", "west": "none" - }, - "id": 2401 + } }, { + "id": 2600, "properties": { "east": "up", "north": "none", "power": "0", "south": "up", "west": "up" - }, - "id": 2402 + } }, { + "id": 2601, "properties": { "east": "up", "north": "none", "power": "0", "south": "up", "west": "side" - }, - "id": 2403 + } }, { + "id": 2602, "properties": { "east": "up", "north": "none", "power": "0", "south": "up", "west": "none" - }, - "id": 2404 + } }, { + "id": 2603, "properties": { "east": "up", "north": "none", "power": "0", "south": "side", "west": "up" - }, - "id": 2405 + } }, { + "id": 2604, "properties": { "east": "up", "north": "none", "power": "0", "south": "side", "west": "side" - }, - "id": 2406 + } }, { + "id": 2605, "properties": { "east": "up", "north": "none", "power": "0", "south": "side", "west": "none" - }, - "id": 2407 + } }, { + "id": 2606, "properties": { "east": "up", "north": "none", "power": "0", "south": "none", "west": "up" - }, - "id": 2408 + } }, { + "id": 2607, "properties": { "east": "up", "north": "none", "power": "0", "south": "none", "west": "side" - }, - "id": 2409 + } }, { + "id": 2608, "properties": { "east": "up", "north": "none", "power": "0", "south": "none", "west": "none" - }, - "id": 2410 + } }, { + "id": 2609, "properties": { "east": "up", "north": "none", "power": "1", "south": "up", "west": "up" - }, - "id": 2411 + } }, { + "id": 2610, "properties": { "east": "up", "north": "none", "power": "1", "south": "up", "west": "side" - }, - "id": 2412 + } }, { + "id": 2611, "properties": { "east": "up", "north": "none", "power": "1", "south": "up", "west": "none" - }, - "id": 2413 + } }, { + "id": 2612, "properties": { "east": "up", "north": "none", "power": "1", "south": "side", "west": "up" - }, - "id": 2414 + } }, { + "id": 2613, "properties": { "east": "up", "north": "none", "power": "1", "south": "side", "west": "side" - }, - "id": 2415 + } }, { + "id": 2614, "properties": { "east": "up", "north": "none", "power": "1", "south": "side", "west": "none" - }, - "id": 2416 + } }, { + "id": 2615, "properties": { "east": "up", "north": "none", "power": "1", "south": "none", "west": "up" - }, - "id": 2417 + } }, { + "id": 2616, "properties": { "east": "up", "north": "none", "power": "1", "south": "none", "west": "side" - }, - "id": 2418 + } }, { + "id": 2617, "properties": { "east": "up", "north": "none", "power": "1", "south": "none", "west": "none" - }, - "id": 2419 + } }, { + "id": 2618, "properties": { "east": "up", "north": "none", "power": "2", "south": "up", "west": "up" - }, - "id": 2420 + } }, { + "id": 2619, "properties": { "east": "up", "north": "none", "power": "2", "south": "up", "west": "side" - }, - "id": 2421 + } }, { + "id": 2620, "properties": { "east": "up", "north": "none", "power": "2", "south": "up", "west": "none" - }, - "id": 2422 + } }, { + "id": 2621, "properties": { "east": "up", "north": "none", "power": "2", "south": "side", "west": "up" - }, - "id": 2423 + } }, { + "id": 2622, "properties": { "east": "up", "north": "none", "power": "2", "south": "side", "west": "side" - }, - "id": 2424 + } }, { + "id": 2623, "properties": { "east": "up", "north": "none", "power": "2", "south": "side", "west": "none" - }, - "id": 2425 + } }, { + "id": 2624, "properties": { "east": "up", "north": "none", "power": "2", "south": "none", "west": "up" - }, - "id": 2426 + } }, { + "id": 2625, "properties": { "east": "up", "north": "none", "power": "2", "south": "none", "west": "side" - }, - "id": 2427 + } }, { + "id": 2626, "properties": { "east": "up", "north": "none", "power": "2", "south": "none", "west": "none" - }, - "id": 2428 + } }, { + "id": 2627, "properties": { "east": "up", "north": "none", "power": "3", "south": "up", "west": "up" - }, - "id": 2429 + } }, { + "id": 2628, "properties": { "east": "up", "north": "none", "power": "3", "south": "up", "west": "side" - }, - "id": 2430 + } }, { + "id": 2629, "properties": { "east": "up", "north": "none", "power": "3", "south": "up", "west": "none" - }, - "id": 2431 + } }, { + "id": 2630, "properties": { "east": "up", "north": "none", "power": "3", "south": "side", "west": "up" - }, - "id": 2432 + } }, { + "id": 2631, "properties": { "east": "up", "north": "none", "power": "3", "south": "side", "west": "side" - }, - "id": 2433 + } }, { + "id": 2632, "properties": { "east": "up", "north": "none", "power": "3", "south": "side", "west": "none" - }, - "id": 2434 + } }, { + "id": 2633, "properties": { "east": "up", "north": "none", "power": "3", "south": "none", "west": "up" - }, - "id": 2435 + } }, { + "id": 2634, "properties": { "east": "up", "north": "none", "power": "3", "south": "none", "west": "side" - }, - "id": 2436 + } }, { + "id": 2635, "properties": { "east": "up", "north": "none", "power": "3", "south": "none", "west": "none" - }, - "id": 2437 + } }, { + "id": 2636, "properties": { "east": "up", "north": "none", "power": "4", "south": "up", "west": "up" - }, - "id": 2438 + } }, { + "id": 2637, "properties": { "east": "up", "north": "none", "power": "4", "south": "up", "west": "side" - }, - "id": 2439 + } }, { + "id": 2638, "properties": { "east": "up", "north": "none", "power": "4", "south": "up", "west": "none" - }, - "id": 2440 + } }, { + "id": 2639, "properties": { "east": "up", "north": "none", "power": "4", "south": "side", "west": "up" - }, - "id": 2441 + } }, { + "id": 2640, "properties": { "east": "up", "north": "none", "power": "4", "south": "side", "west": "side" - }, - "id": 2442 + } }, { + "id": 2641, "properties": { "east": "up", "north": "none", "power": "4", "south": "side", "west": "none" - }, - "id": 2443 + } }, { + "id": 2642, "properties": { "east": "up", "north": "none", "power": "4", "south": "none", "west": "up" - }, - "id": 2444 + } }, { + "id": 2643, "properties": { "east": "up", "north": "none", "power": "4", "south": "none", "west": "side" - }, - "id": 2445 + } }, { + "id": 2644, "properties": { "east": "up", "north": "none", "power": "4", "south": "none", "west": "none" - }, - "id": 2446 + } }, { + "id": 2645, "properties": { "east": "up", "north": "none", "power": "5", "south": "up", "west": "up" - }, - "id": 2447 + } }, { + "id": 2646, "properties": { "east": "up", "north": "none", "power": "5", "south": "up", "west": "side" - }, - "id": 2448 + } }, { + "id": 2647, "properties": { "east": "up", "north": "none", "power": "5", "south": "up", "west": "none" - }, - "id": 2449 + } }, { + "id": 2648, "properties": { "east": "up", "north": "none", "power": "5", "south": "side", "west": "up" - }, - "id": 2450 + } }, { + "id": 2649, "properties": { "east": "up", "north": "none", "power": "5", "south": "side", "west": "side" - }, - "id": 2451 + } }, { + "id": 2650, "properties": { "east": "up", "north": "none", "power": "5", "south": "side", "west": "none" - }, - "id": 2452 + } }, { + "id": 2651, "properties": { "east": "up", "north": "none", "power": "5", "south": "none", "west": "up" - }, - "id": 2453 + } }, { + "id": 2652, "properties": { "east": "up", "north": "none", "power": "5", "south": "none", "west": "side" - }, - "id": 2454 + } }, { + "id": 2653, "properties": { "east": "up", "north": "none", "power": "5", "south": "none", "west": "none" - }, - "id": 2455 + } }, { + "id": 2654, "properties": { "east": "up", "north": "none", "power": "6", "south": "up", "west": "up" - }, - "id": 2456 + } }, { + "id": 2655, "properties": { "east": "up", "north": "none", "power": "6", "south": "up", "west": "side" - }, - "id": 2457 + } }, { + "id": 2656, "properties": { "east": "up", "north": "none", "power": "6", "south": "up", "west": "none" - }, - "id": 2458 + } }, { + "id": 2657, "properties": { "east": "up", "north": "none", "power": "6", "south": "side", "west": "up" - }, - "id": 2459 + } }, { + "id": 2658, "properties": { "east": "up", "north": "none", "power": "6", "south": "side", "west": "side" - }, - "id": 2460 + } }, { + "id": 2659, "properties": { "east": "up", "north": "none", "power": "6", "south": "side", "west": "none" - }, - "id": 2461 + } }, { + "id": 2660, "properties": { "east": "up", "north": "none", "power": "6", "south": "none", "west": "up" - }, - "id": 2462 + } }, { + "id": 2661, "properties": { "east": "up", "north": "none", "power": "6", "south": "none", "west": "side" - }, - "id": 2463 + } }, { + "id": 2662, "properties": { "east": "up", "north": "none", "power": "6", "south": "none", "west": "none" - }, - "id": 2464 + } }, { + "id": 2663, "properties": { "east": "up", "north": "none", "power": "7", "south": "up", "west": "up" - }, - "id": 2465 + } }, { + "id": 2664, "properties": { "east": "up", "north": "none", "power": "7", "south": "up", "west": "side" - }, - "id": 2466 + } }, { + "id": 2665, "properties": { "east": "up", "north": "none", "power": "7", "south": "up", "west": "none" - }, - "id": 2467 + } }, { + "id": 2666, "properties": { "east": "up", "north": "none", "power": "7", "south": "side", "west": "up" - }, - "id": 2468 + } }, { + "id": 2667, "properties": { "east": "up", "north": "none", "power": "7", "south": "side", "west": "side" - }, - "id": 2469 + } }, { + "id": 2668, "properties": { "east": "up", "north": "none", "power": "7", "south": "side", "west": "none" - }, - "id": 2470 + } }, { + "id": 2669, "properties": { "east": "up", "north": "none", "power": "7", "south": "none", "west": "up" - }, - "id": 2471 + } }, { + "id": 2670, "properties": { "east": "up", "north": "none", "power": "7", "south": "none", "west": "side" - }, - "id": 2472 + } }, { + "id": 2671, "properties": { "east": "up", "north": "none", "power": "7", "south": "none", "west": "none" - }, - "id": 2473 + } }, { + "id": 2672, "properties": { "east": "up", "north": "none", "power": "8", "south": "up", "west": "up" - }, - "id": 2474 + } }, { + "id": 2673, "properties": { "east": "up", "north": "none", "power": "8", "south": "up", "west": "side" - }, - "id": 2475 + } }, { + "id": 2674, "properties": { "east": "up", "north": "none", "power": "8", "south": "up", "west": "none" - }, - "id": 2476 + } }, { + "id": 2675, "properties": { "east": "up", "north": "none", "power": "8", "south": "side", "west": "up" - }, - "id": 2477 + } }, { + "id": 2676, "properties": { "east": "up", "north": "none", "power": "8", "south": "side", "west": "side" - }, - "id": 2478 + } }, { + "id": 2677, "properties": { "east": "up", "north": "none", "power": "8", "south": "side", "west": "none" - }, - "id": 2479 + } }, { + "id": 2678, "properties": { "east": "up", "north": "none", "power": "8", "south": "none", "west": "up" - }, - "id": 2480 + } }, { + "id": 2679, "properties": { "east": "up", "north": "none", "power": "8", "south": "none", "west": "side" - }, - "id": 2481 + } }, { + "id": 2680, "properties": { "east": "up", "north": "none", "power": "8", "south": "none", "west": "none" - }, - "id": 2482 + } }, { + "id": 2681, "properties": { "east": "up", "north": "none", "power": "9", "south": "up", "west": "up" - }, - "id": 2483 + } }, { + "id": 2682, "properties": { "east": "up", "north": "none", "power": "9", "south": "up", "west": "side" - }, - "id": 2484 + } }, { + "id": 2683, "properties": { "east": "up", "north": "none", "power": "9", "south": "up", "west": "none" - }, - "id": 2485 + } }, { + "id": 2684, "properties": { "east": "up", "north": "none", "power": "9", "south": "side", "west": "up" - }, - "id": 2486 + } }, { + "id": 2685, "properties": { "east": "up", "north": "none", "power": "9", "south": "side", "west": "side" - }, - "id": 2487 + } }, { + "id": 2686, "properties": { "east": "up", "north": "none", "power": "9", "south": "side", "west": "none" - }, - "id": 2488 + } }, { + "id": 2687, "properties": { "east": "up", "north": "none", "power": "9", "south": "none", "west": "up" - }, - "id": 2489 + } }, { + "id": 2688, "properties": { "east": "up", "north": "none", "power": "9", "south": "none", "west": "side" - }, - "id": 2490 + } }, { + "id": 2689, "properties": { "east": "up", "north": "none", "power": "9", "south": "none", "west": "none" - }, - "id": 2491 + } }, { + "id": 2690, "properties": { "east": "up", "north": "none", "power": "10", "south": "up", "west": "up" - }, - "id": 2492 + } }, { + "id": 2691, "properties": { "east": "up", "north": "none", "power": "10", "south": "up", "west": "side" - }, - "id": 2493 + } }, { + "id": 2692, "properties": { "east": "up", "north": "none", "power": "10", "south": "up", "west": "none" - }, - "id": 2494 + } }, { + "id": 2693, "properties": { "east": "up", "north": "none", "power": "10", "south": "side", "west": "up" - }, - "id": 2495 + } }, { + "id": 2694, "properties": { "east": "up", "north": "none", "power": "10", "south": "side", "west": "side" - }, - "id": 2496 + } }, { + "id": 2695, "properties": { "east": "up", "north": "none", "power": "10", "south": "side", "west": "none" - }, - "id": 2497 + } }, { + "id": 2696, "properties": { "east": "up", "north": "none", "power": "10", "south": "none", "west": "up" - }, - "id": 2498 + } }, { + "id": 2697, "properties": { "east": "up", "north": "none", "power": "10", "south": "none", "west": "side" - }, - "id": 2499 + } }, { + "id": 2698, "properties": { "east": "up", "north": "none", "power": "10", "south": "none", "west": "none" - }, - "id": 2500 + } }, { + "id": 2699, "properties": { "east": "up", "north": "none", "power": "11", "south": "up", "west": "up" - }, - "id": 2501 + } }, { + "id": 2700, "properties": { "east": "up", "north": "none", "power": "11", "south": "up", "west": "side" - }, - "id": 2502 + } }, { + "id": 2701, "properties": { "east": "up", "north": "none", "power": "11", "south": "up", "west": "none" - }, - "id": 2503 + } }, { + "id": 2702, "properties": { "east": "up", "north": "none", "power": "11", "south": "side", "west": "up" - }, - "id": 2504 + } }, { + "id": 2703, "properties": { "east": "up", "north": "none", "power": "11", "south": "side", "west": "side" - }, - "id": 2505 + } }, { + "id": 2704, "properties": { "east": "up", "north": "none", "power": "11", "south": "side", "west": "none" - }, - "id": 2506 + } }, { + "id": 2705, "properties": { "east": "up", "north": "none", "power": "11", "south": "none", "west": "up" - }, - "id": 2507 + } }, { + "id": 2706, "properties": { "east": "up", "north": "none", "power": "11", "south": "none", "west": "side" - }, - "id": 2508 + } }, { + "id": 2707, "properties": { "east": "up", "north": "none", "power": "11", "south": "none", "west": "none" - }, - "id": 2509 + } }, { + "id": 2708, "properties": { "east": "up", "north": "none", "power": "12", "south": "up", "west": "up" - }, - "id": 2510 + } }, { + "id": 2709, "properties": { "east": "up", "north": "none", "power": "12", "south": "up", "west": "side" - }, - "id": 2511 + } }, { + "id": 2710, "properties": { "east": "up", "north": "none", "power": "12", "south": "up", "west": "none" - }, - "id": 2512 + } }, { + "id": 2711, "properties": { "east": "up", "north": "none", "power": "12", "south": "side", "west": "up" - }, - "id": 2513 + } }, { + "id": 2712, "properties": { "east": "up", "north": "none", "power": "12", "south": "side", "west": "side" - }, - "id": 2514 + } }, { + "id": 2713, "properties": { "east": "up", "north": "none", "power": "12", "south": "side", "west": "none" - }, - "id": 2515 + } }, { + "id": 2714, "properties": { "east": "up", "north": "none", "power": "12", "south": "none", "west": "up" - }, - "id": 2516 + } }, { + "id": 2715, "properties": { "east": "up", "north": "none", "power": "12", "south": "none", "west": "side" - }, - "id": 2517 + } }, { + "id": 2716, "properties": { "east": "up", "north": "none", "power": "12", "south": "none", "west": "none" - }, - "id": 2518 + } }, { + "id": 2717, "properties": { "east": "up", "north": "none", "power": "13", "south": "up", "west": "up" - }, - "id": 2519 + } }, { + "id": 2718, "properties": { "east": "up", "north": "none", "power": "13", "south": "up", "west": "side" - }, - "id": 2520 + } }, { + "id": 2719, "properties": { "east": "up", "north": "none", "power": "13", "south": "up", "west": "none" - }, - "id": 2521 + } }, { + "id": 2720, "properties": { "east": "up", "north": "none", "power": "13", "south": "side", "west": "up" - }, - "id": 2522 + } }, { + "id": 2721, "properties": { "east": "up", "north": "none", "power": "13", "south": "side", "west": "side" - }, - "id": 2523 + } }, { + "id": 2722, "properties": { "east": "up", "north": "none", "power": "13", "south": "side", "west": "none" - }, - "id": 2524 + } }, { + "id": 2723, "properties": { "east": "up", "north": "none", "power": "13", "south": "none", "west": "up" - }, - "id": 2525 + } }, { + "id": 2724, "properties": { "east": "up", "north": "none", "power": "13", "south": "none", "west": "side" - }, - "id": 2526 + } }, { + "id": 2725, "properties": { "east": "up", "north": "none", "power": "13", "south": "none", "west": "none" - }, - "id": 2527 + } }, { + "id": 2726, "properties": { "east": "up", "north": "none", "power": "14", "south": "up", "west": "up" - }, - "id": 2528 + } }, { + "id": 2727, "properties": { "east": "up", "north": "none", "power": "14", "south": "up", "west": "side" - }, - "id": 2529 + } }, { + "id": 2728, "properties": { "east": "up", "north": "none", "power": "14", "south": "up", "west": "none" - }, - "id": 2530 + } }, { + "id": 2729, "properties": { "east": "up", "north": "none", "power": "14", "south": "side", "west": "up" - }, - "id": 2531 + } }, { + "id": 2730, "properties": { "east": "up", "north": "none", "power": "14", "south": "side", "west": "side" - }, - "id": 2532 + } }, { + "id": 2731, "properties": { "east": "up", "north": "none", "power": "14", "south": "side", "west": "none" - }, - "id": 2533 + } }, { + "id": 2732, "properties": { "east": "up", "north": "none", "power": "14", "south": "none", "west": "up" - }, - "id": 2534 + } }, { + "id": 2733, "properties": { "east": "up", "north": "none", "power": "14", "south": "none", "west": "side" - }, - "id": 2535 + } }, { + "id": 2734, "properties": { "east": "up", "north": "none", "power": "14", "south": "none", "west": "none" - }, - "id": 2536 + } }, { + "id": 2735, "properties": { "east": "up", "north": "none", "power": "15", "south": "up", "west": "up" - }, - "id": 2537 + } }, { + "id": 2736, "properties": { "east": "up", "north": "none", "power": "15", "south": "up", "west": "side" - }, - "id": 2538 + } }, { + "id": 2737, "properties": { "east": "up", "north": "none", "power": "15", "south": "up", "west": "none" - }, - "id": 2539 + } }, { + "id": 2738, "properties": { "east": "up", "north": "none", "power": "15", "south": "side", "west": "up" - }, - "id": 2540 + } }, { + "id": 2739, "properties": { "east": "up", "north": "none", "power": "15", "south": "side", "west": "side" - }, - "id": 2541 + } }, { + "id": 2740, "properties": { "east": "up", "north": "none", "power": "15", "south": "side", "west": "none" - }, - "id": 2542 + } }, { + "id": 2741, "properties": { "east": "up", "north": "none", "power": "15", "south": "none", "west": "up" - }, - "id": 2543 + } }, { + "id": 2742, "properties": { "east": "up", "north": "none", "power": "15", "south": "none", "west": "side" - }, - "id": 2544 + } }, { + "id": 2743, "properties": { "east": "up", "north": "none", "power": "15", "south": "none", "west": "none" - }, - "id": 2545 + } }, { + "id": 2744, "properties": { "east": "side", "north": "up", "power": "0", "south": "up", "west": "up" - }, - "id": 2546 + } }, { + "id": 2745, "properties": { "east": "side", "north": "up", "power": "0", "south": "up", "west": "side" - }, - "id": 2547 + } }, { + "id": 2746, "properties": { "east": "side", "north": "up", "power": "0", "south": "up", "west": "none" - }, - "id": 2548 + } }, { + "id": 2747, "properties": { "east": "side", "north": "up", "power": "0", "south": "side", "west": "up" - }, - "id": 2549 + } }, { + "id": 2748, "properties": { "east": "side", "north": "up", "power": "0", "south": "side", "west": "side" - }, - "id": 2550 + } }, { + "id": 2749, "properties": { "east": "side", "north": "up", "power": "0", "south": "side", "west": "none" - }, - "id": 2551 + } }, { + "id": 2750, "properties": { "east": "side", "north": "up", "power": "0", "south": "none", "west": "up" - }, - "id": 2552 + } }, { + "id": 2751, "properties": { "east": "side", "north": "up", "power": "0", "south": "none", "west": "side" - }, - "id": 2553 + } }, { + "id": 2752, "properties": { "east": "side", "north": "up", "power": "0", "south": "none", "west": "none" - }, - "id": 2554 + } }, { + "id": 2753, "properties": { "east": "side", "north": "up", "power": "1", "south": "up", "west": "up" - }, - "id": 2555 + } }, { + "id": 2754, "properties": { "east": "side", "north": "up", "power": "1", "south": "up", "west": "side" - }, - "id": 2556 + } }, { + "id": 2755, "properties": { "east": "side", "north": "up", "power": "1", "south": "up", "west": "none" - }, - "id": 2557 + } }, { + "id": 2756, "properties": { "east": "side", "north": "up", "power": "1", "south": "side", "west": "up" - }, - "id": 2558 + } }, { + "id": 2757, "properties": { "east": "side", "north": "up", "power": "1", "south": "side", "west": "side" - }, - "id": 2559 + } }, { + "id": 2758, "properties": { "east": "side", "north": "up", "power": "1", "south": "side", "west": "none" - }, - "id": 2560 + } }, { + "id": 2759, "properties": { "east": "side", "north": "up", "power": "1", "south": "none", "west": "up" - }, - "id": 2561 + } }, { + "id": 2760, "properties": { "east": "side", "north": "up", "power": "1", "south": "none", "west": "side" - }, - "id": 2562 + } }, { + "id": 2761, "properties": { "east": "side", "north": "up", "power": "1", "south": "none", "west": "none" - }, - "id": 2563 + } }, { + "id": 2762, "properties": { "east": "side", "north": "up", "power": "2", "south": "up", "west": "up" - }, - "id": 2564 + } }, { + "id": 2763, "properties": { "east": "side", "north": "up", "power": "2", "south": "up", "west": "side" - }, - "id": 2565 + } }, { + "id": 2764, "properties": { "east": "side", "north": "up", "power": "2", "south": "up", "west": "none" - }, - "id": 2566 + } }, { + "id": 2765, "properties": { "east": "side", "north": "up", "power": "2", "south": "side", "west": "up" - }, - "id": 2567 + } }, { + "id": 2766, "properties": { "east": "side", "north": "up", "power": "2", "south": "side", "west": "side" - }, - "id": 2568 + } }, { + "id": 2767, "properties": { "east": "side", "north": "up", "power": "2", "south": "side", "west": "none" - }, - "id": 2569 + } }, { + "id": 2768, "properties": { "east": "side", "north": "up", "power": "2", "south": "none", "west": "up" - }, - "id": 2570 + } }, { + "id": 2769, "properties": { "east": "side", "north": "up", "power": "2", "south": "none", "west": "side" - }, - "id": 2571 + } }, { + "id": 2770, "properties": { "east": "side", "north": "up", "power": "2", "south": "none", "west": "none" - }, - "id": 2572 + } }, { + "id": 2771, "properties": { "east": "side", "north": "up", "power": "3", "south": "up", "west": "up" - }, - "id": 2573 + } }, { + "id": 2772, "properties": { "east": "side", "north": "up", "power": "3", "south": "up", "west": "side" - }, - "id": 2574 + } }, { + "id": 2773, "properties": { "east": "side", "north": "up", "power": "3", "south": "up", "west": "none" - }, - "id": 2575 + } }, { + "id": 2774, "properties": { "east": "side", "north": "up", "power": "3", "south": "side", "west": "up" - }, - "id": 2576 + } }, { + "id": 2775, "properties": { "east": "side", "north": "up", "power": "3", "south": "side", "west": "side" - }, - "id": 2577 + } }, { + "id": 2776, "properties": { "east": "side", "north": "up", "power": "3", "south": "side", "west": "none" - }, - "id": 2578 + } }, { + "id": 2777, "properties": { "east": "side", "north": "up", "power": "3", "south": "none", "west": "up" - }, - "id": 2579 + } }, { + "id": 2778, "properties": { "east": "side", "north": "up", "power": "3", "south": "none", "west": "side" - }, - "id": 2580 + } }, { + "id": 2779, "properties": { "east": "side", "north": "up", "power": "3", "south": "none", "west": "none" - }, - "id": 2581 + } }, { + "id": 2780, "properties": { "east": "side", "north": "up", "power": "4", "south": "up", "west": "up" - }, - "id": 2582 + } }, { + "id": 2781, "properties": { "east": "side", "north": "up", "power": "4", "south": "up", "west": "side" - }, - "id": 2583 + } }, { + "id": 2782, "properties": { "east": "side", "north": "up", "power": "4", "south": "up", "west": "none" - }, - "id": 2584 + } }, { + "id": 2783, "properties": { "east": "side", "north": "up", "power": "4", "south": "side", "west": "up" - }, - "id": 2585 + } }, { + "id": 2784, "properties": { "east": "side", "north": "up", "power": "4", "south": "side", "west": "side" - }, - "id": 2586 + } }, { + "id": 2785, "properties": { "east": "side", "north": "up", "power": "4", "south": "side", "west": "none" - }, - "id": 2587 + } }, { + "id": 2786, "properties": { "east": "side", "north": "up", "power": "4", "south": "none", "west": "up" - }, - "id": 2588 + } }, { + "id": 2787, "properties": { "east": "side", "north": "up", "power": "4", "south": "none", "west": "side" - }, - "id": 2589 + } }, { + "id": 2788, "properties": { "east": "side", "north": "up", "power": "4", "south": "none", "west": "none" - }, - "id": 2590 + } }, { + "id": 2789, "properties": { "east": "side", "north": "up", "power": "5", "south": "up", "west": "up" - }, - "id": 2591 + } }, { + "id": 2790, "properties": { "east": "side", "north": "up", "power": "5", "south": "up", "west": "side" - }, - "id": 2592 + } }, { + "id": 2791, "properties": { "east": "side", "north": "up", "power": "5", "south": "up", "west": "none" - }, - "id": 2593 + } }, { + "id": 2792, "properties": { "east": "side", "north": "up", "power": "5", "south": "side", "west": "up" - }, - "id": 2594 + } }, { + "id": 2793, "properties": { "east": "side", "north": "up", "power": "5", "south": "side", "west": "side" - }, - "id": 2595 + } }, { + "id": 2794, "properties": { "east": "side", "north": "up", "power": "5", "south": "side", "west": "none" - }, - "id": 2596 + } }, { + "id": 2795, "properties": { "east": "side", "north": "up", "power": "5", "south": "none", "west": "up" - }, - "id": 2597 + } }, { + "id": 2796, "properties": { "east": "side", "north": "up", "power": "5", "south": "none", "west": "side" - }, - "id": 2598 + } }, { + "id": 2797, "properties": { "east": "side", "north": "up", "power": "5", "south": "none", "west": "none" - }, - "id": 2599 + } }, { + "id": 2798, "properties": { "east": "side", "north": "up", "power": "6", "south": "up", "west": "up" - }, - "id": 2600 + } }, { + "id": 2799, "properties": { "east": "side", "north": "up", "power": "6", "south": "up", "west": "side" - }, - "id": 2601 + } }, { + "id": 2800, "properties": { "east": "side", "north": "up", "power": "6", "south": "up", "west": "none" - }, - "id": 2602 + } }, { + "id": 2801, "properties": { "east": "side", "north": "up", "power": "6", "south": "side", "west": "up" - }, - "id": 2603 + } }, { + "id": 2802, "properties": { "east": "side", "north": "up", "power": "6", "south": "side", "west": "side" - }, - "id": 2604 + } }, { + "id": 2803, "properties": { "east": "side", "north": "up", "power": "6", "south": "side", "west": "none" - }, - "id": 2605 + } }, { + "id": 2804, "properties": { "east": "side", "north": "up", "power": "6", "south": "none", "west": "up" - }, - "id": 2606 + } }, { + "id": 2805, "properties": { "east": "side", "north": "up", "power": "6", "south": "none", "west": "side" - }, - "id": 2607 + } }, { + "id": 2806, "properties": { "east": "side", "north": "up", "power": "6", "south": "none", "west": "none" - }, - "id": 2608 + } }, { + "id": 2807, "properties": { "east": "side", "north": "up", "power": "7", "south": "up", "west": "up" - }, - "id": 2609 + } }, { + "id": 2808, "properties": { "east": "side", "north": "up", "power": "7", "south": "up", "west": "side" - }, - "id": 2610 + } }, { + "id": 2809, "properties": { "east": "side", "north": "up", "power": "7", "south": "up", "west": "none" - }, - "id": 2611 + } }, { + "id": 2810, "properties": { "east": "side", "north": "up", "power": "7", "south": "side", "west": "up" - }, - "id": 2612 + } }, { + "id": 2811, "properties": { "east": "side", "north": "up", "power": "7", "south": "side", "west": "side" - }, - "id": 2613 + } }, { + "id": 2812, "properties": { "east": "side", "north": "up", "power": "7", "south": "side", "west": "none" - }, - "id": 2614 + } }, { + "id": 2813, "properties": { "east": "side", "north": "up", "power": "7", "south": "none", "west": "up" - }, - "id": 2615 + } }, { + "id": 2814, "properties": { "east": "side", "north": "up", "power": "7", "south": "none", "west": "side" - }, - "id": 2616 + } }, { + "id": 2815, "properties": { "east": "side", "north": "up", "power": "7", "south": "none", "west": "none" - }, - "id": 2617 + } }, { + "id": 2816, "properties": { "east": "side", "north": "up", "power": "8", "south": "up", "west": "up" - }, - "id": 2618 + } }, { + "id": 2817, "properties": { "east": "side", "north": "up", "power": "8", "south": "up", "west": "side" - }, - "id": 2619 + } }, { + "id": 2818, "properties": { "east": "side", "north": "up", "power": "8", "south": "up", "west": "none" - }, - "id": 2620 + } }, { + "id": 2819, "properties": { "east": "side", "north": "up", "power": "8", "south": "side", "west": "up" - }, - "id": 2621 + } }, { + "id": 2820, "properties": { "east": "side", "north": "up", "power": "8", "south": "side", "west": "side" - }, - "id": 2622 + } }, { + "id": 2821, "properties": { "east": "side", "north": "up", "power": "8", "south": "side", "west": "none" - }, - "id": 2623 + } }, { + "id": 2822, "properties": { "east": "side", "north": "up", "power": "8", "south": "none", "west": "up" - }, - "id": 2624 + } }, { + "id": 2823, "properties": { "east": "side", "north": "up", "power": "8", "south": "none", "west": "side" - }, - "id": 2625 + } }, { + "id": 2824, "properties": { "east": "side", "north": "up", "power": "8", "south": "none", "west": "none" - }, - "id": 2626 + } }, { + "id": 2825, "properties": { "east": "side", "north": "up", "power": "9", "south": "up", "west": "up" - }, - "id": 2627 + } }, { + "id": 2826, "properties": { "east": "side", "north": "up", "power": "9", "south": "up", "west": "side" - }, - "id": 2628 + } }, { + "id": 2827, "properties": { "east": "side", "north": "up", "power": "9", "south": "up", "west": "none" - }, - "id": 2629 + } }, { + "id": 2828, "properties": { "east": "side", "north": "up", "power": "9", "south": "side", "west": "up" - }, - "id": 2630 + } }, { + "id": 2829, "properties": { "east": "side", "north": "up", "power": "9", "south": "side", "west": "side" - }, - "id": 2631 + } }, { + "id": 2830, "properties": { "east": "side", "north": "up", "power": "9", "south": "side", "west": "none" - }, - "id": 2632 + } }, { + "id": 2831, "properties": { "east": "side", "north": "up", "power": "9", "south": "none", "west": "up" - }, - "id": 2633 + } }, { + "id": 2832, "properties": { "east": "side", "north": "up", "power": "9", "south": "none", "west": "side" - }, - "id": 2634 + } }, { + "id": 2833, "properties": { "east": "side", "north": "up", "power": "9", "south": "none", "west": "none" - }, - "id": 2635 + } }, { + "id": 2834, "properties": { "east": "side", "north": "up", "power": "10", "south": "up", "west": "up" - }, - "id": 2636 + } }, { + "id": 2835, "properties": { "east": "side", "north": "up", "power": "10", "south": "up", "west": "side" - }, - "id": 2637 + } }, { + "id": 2836, "properties": { "east": "side", "north": "up", "power": "10", "south": "up", "west": "none" - }, - "id": 2638 + } }, { + "id": 2837, "properties": { "east": "side", "north": "up", "power": "10", "south": "side", "west": "up" - }, - "id": 2639 + } }, { + "id": 2838, "properties": { "east": "side", "north": "up", "power": "10", "south": "side", "west": "side" - }, - "id": 2640 + } }, { + "id": 2839, "properties": { "east": "side", "north": "up", "power": "10", "south": "side", "west": "none" - }, - "id": 2641 + } }, { + "id": 2840, "properties": { "east": "side", "north": "up", "power": "10", "south": "none", "west": "up" - }, - "id": 2642 + } }, { + "id": 2841, "properties": { "east": "side", "north": "up", "power": "10", "south": "none", "west": "side" - }, - "id": 2643 + } }, { + "id": 2842, "properties": { "east": "side", "north": "up", "power": "10", "south": "none", "west": "none" - }, - "id": 2644 + } }, { + "id": 2843, "properties": { "east": "side", "north": "up", "power": "11", "south": "up", "west": "up" - }, - "id": 2645 + } }, { + "id": 2844, "properties": { "east": "side", "north": "up", "power": "11", "south": "up", "west": "side" - }, - "id": 2646 + } }, { + "id": 2845, "properties": { "east": "side", "north": "up", "power": "11", "south": "up", "west": "none" - }, - "id": 2647 + } }, { + "id": 2846, "properties": { "east": "side", "north": "up", "power": "11", "south": "side", "west": "up" - }, - "id": 2648 + } }, { + "id": 2847, "properties": { "east": "side", "north": "up", "power": "11", "south": "side", "west": "side" - }, - "id": 2649 + } }, { + "id": 2848, "properties": { "east": "side", "north": "up", "power": "11", "south": "side", "west": "none" - }, - "id": 2650 + } }, { + "id": 2849, "properties": { "east": "side", "north": "up", "power": "11", "south": "none", "west": "up" - }, - "id": 2651 + } }, { + "id": 2850, "properties": { "east": "side", "north": "up", "power": "11", "south": "none", "west": "side" - }, - "id": 2652 + } }, { + "id": 2851, "properties": { "east": "side", "north": "up", "power": "11", "south": "none", "west": "none" - }, - "id": 2653 + } }, { + "id": 2852, "properties": { "east": "side", "north": "up", "power": "12", "south": "up", "west": "up" - }, - "id": 2654 + } }, { + "id": 2853, "properties": { "east": "side", "north": "up", "power": "12", "south": "up", "west": "side" - }, - "id": 2655 + } }, { + "id": 2854, "properties": { "east": "side", "north": "up", "power": "12", "south": "up", "west": "none" - }, - "id": 2656 + } }, { + "id": 2855, "properties": { "east": "side", "north": "up", "power": "12", "south": "side", "west": "up" - }, - "id": 2657 + } }, { + "id": 2856, "properties": { "east": "side", "north": "up", "power": "12", "south": "side", "west": "side" - }, - "id": 2658 + } }, { + "id": 2857, "properties": { "east": "side", "north": "up", "power": "12", "south": "side", "west": "none" - }, - "id": 2659 + } }, { + "id": 2858, "properties": { "east": "side", "north": "up", "power": "12", "south": "none", "west": "up" - }, - "id": 2660 + } }, { + "id": 2859, "properties": { "east": "side", "north": "up", "power": "12", "south": "none", "west": "side" - }, - "id": 2661 + } }, { + "id": 2860, "properties": { "east": "side", "north": "up", "power": "12", "south": "none", "west": "none" - }, - "id": 2662 + } }, { + "id": 2861, "properties": { "east": "side", "north": "up", "power": "13", "south": "up", "west": "up" - }, - "id": 2663 + } }, { + "id": 2862, "properties": { "east": "side", "north": "up", "power": "13", "south": "up", "west": "side" - }, - "id": 2664 + } }, { + "id": 2863, "properties": { "east": "side", "north": "up", "power": "13", "south": "up", "west": "none" - }, - "id": 2665 + } }, { + "id": 2864, "properties": { "east": "side", "north": "up", "power": "13", "south": "side", "west": "up" - }, - "id": 2666 + } }, { + "id": 2865, "properties": { "east": "side", "north": "up", "power": "13", "south": "side", "west": "side" - }, - "id": 2667 + } }, { + "id": 2866, "properties": { "east": "side", "north": "up", "power": "13", "south": "side", "west": "none" - }, - "id": 2668 + } }, { + "id": 2867, "properties": { "east": "side", "north": "up", "power": "13", "south": "none", "west": "up" - }, - "id": 2669 + } }, { + "id": 2868, "properties": { "east": "side", "north": "up", "power": "13", "south": "none", "west": "side" - }, - "id": 2670 + } }, { + "id": 2869, "properties": { "east": "side", "north": "up", "power": "13", "south": "none", "west": "none" - }, - "id": 2671 + } }, { + "id": 2870, "properties": { "east": "side", "north": "up", "power": "14", "south": "up", "west": "up" - }, - "id": 2672 + } }, { + "id": 2871, "properties": { "east": "side", "north": "up", "power": "14", "south": "up", "west": "side" - }, - "id": 2673 + } }, { + "id": 2872, "properties": { "east": "side", "north": "up", "power": "14", "south": "up", "west": "none" - }, - "id": 2674 + } }, { + "id": 2873, "properties": { "east": "side", "north": "up", "power": "14", "south": "side", "west": "up" - }, - "id": 2675 + } }, { + "id": 2874, "properties": { "east": "side", "north": "up", "power": "14", "south": "side", "west": "side" - }, - "id": 2676 + } }, { + "id": 2875, "properties": { "east": "side", "north": "up", "power": "14", "south": "side", "west": "none" - }, - "id": 2677 + } }, { + "id": 2876, "properties": { "east": "side", "north": "up", "power": "14", "south": "none", "west": "up" - }, - "id": 2678 + } }, { + "id": 2877, "properties": { "east": "side", "north": "up", "power": "14", "south": "none", "west": "side" - }, - "id": 2679 + } }, { + "id": 2878, "properties": { "east": "side", "north": "up", "power": "14", "south": "none", "west": "none" - }, - "id": 2680 + } }, { + "id": 2879, "properties": { "east": "side", "north": "up", "power": "15", "south": "up", "west": "up" - }, - "id": 2681 + } }, { + "id": 2880, "properties": { "east": "side", "north": "up", "power": "15", "south": "up", "west": "side" - }, - "id": 2682 + } }, { + "id": 2881, "properties": { "east": "side", "north": "up", "power": "15", "south": "up", "west": "none" - }, - "id": 2683 + } }, { + "id": 2882, "properties": { "east": "side", "north": "up", "power": "15", "south": "side", "west": "up" - }, - "id": 2684 + } }, { + "id": 2883, "properties": { "east": "side", "north": "up", "power": "15", "south": "side", "west": "side" - }, - "id": 2685 + } }, { + "id": 2884, "properties": { "east": "side", "north": "up", "power": "15", "south": "side", "west": "none" - }, - "id": 2686 + } }, { + "id": 2885, "properties": { "east": "side", "north": "up", "power": "15", "south": "none", "west": "up" - }, - "id": 2687 + } }, { + "id": 2886, "properties": { "east": "side", "north": "up", "power": "15", "south": "none", "west": "side" - }, - "id": 2688 + } }, { + "id": 2887, "properties": { "east": "side", "north": "up", "power": "15", "south": "none", "west": "none" - }, - "id": 2689 + } }, { + "id": 2888, "properties": { "east": "side", "north": "side", "power": "0", "south": "up", "west": "up" - }, - "id": 2690 + } }, { + "id": 2889, "properties": { "east": "side", "north": "side", "power": "0", "south": "up", "west": "side" - }, - "id": 2691 + } }, { + "id": 2890, "properties": { "east": "side", "north": "side", "power": "0", "south": "up", "west": "none" - }, - "id": 2692 + } }, { + "id": 2891, "properties": { "east": "side", "north": "side", "power": "0", "south": "side", "west": "up" - }, - "id": 2693 + } }, { + "id": 2892, "properties": { "east": "side", "north": "side", "power": "0", "south": "side", "west": "side" - }, - "id": 2694 + } }, { + "id": 2893, "properties": { "east": "side", "north": "side", "power": "0", "south": "side", "west": "none" - }, - "id": 2695 + } }, { + "id": 2894, "properties": { "east": "side", "north": "side", "power": "0", "south": "none", "west": "up" - }, - "id": 2696 + } }, { + "id": 2895, "properties": { "east": "side", "north": "side", "power": "0", "south": "none", "west": "side" - }, - "id": 2697 + } }, { + "id": 2896, "properties": { "east": "side", "north": "side", "power": "0", "south": "none", "west": "none" - }, - "id": 2698 + } }, { + "id": 2897, "properties": { "east": "side", "north": "side", "power": "1", "south": "up", "west": "up" - }, - "id": 2699 + } }, { + "id": 2898, "properties": { "east": "side", "north": "side", "power": "1", "south": "up", "west": "side" - }, - "id": 2700 + } }, { + "id": 2899, "properties": { "east": "side", "north": "side", "power": "1", "south": "up", "west": "none" - }, - "id": 2701 + } }, { + "id": 2900, "properties": { "east": "side", "north": "side", "power": "1", "south": "side", "west": "up" - }, - "id": 2702 + } }, { + "id": 2901, "properties": { "east": "side", "north": "side", "power": "1", "south": "side", "west": "side" - }, - "id": 2703 + } }, { + "id": 2902, "properties": { "east": "side", "north": "side", "power": "1", "south": "side", "west": "none" - }, - "id": 2704 + } }, { + "id": 2903, "properties": { "east": "side", "north": "side", "power": "1", "south": "none", "west": "up" - }, - "id": 2705 + } }, { + "id": 2904, "properties": { "east": "side", "north": "side", "power": "1", "south": "none", "west": "side" - }, - "id": 2706 + } }, { + "id": 2905, "properties": { "east": "side", "north": "side", "power": "1", "south": "none", "west": "none" - }, - "id": 2707 + } }, { + "id": 2906, "properties": { "east": "side", "north": "side", "power": "2", "south": "up", "west": "up" - }, - "id": 2708 + } }, { + "id": 2907, "properties": { "east": "side", "north": "side", "power": "2", "south": "up", "west": "side" - }, - "id": 2709 + } }, { + "id": 2908, "properties": { "east": "side", "north": "side", "power": "2", "south": "up", "west": "none" - }, - "id": 2710 + } }, { + "id": 2909, "properties": { "east": "side", "north": "side", "power": "2", "south": "side", "west": "up" - }, - "id": 2711 + } }, { + "id": 2910, "properties": { "east": "side", "north": "side", "power": "2", "south": "side", "west": "side" - }, - "id": 2712 + } }, { + "id": 2911, "properties": { "east": "side", "north": "side", "power": "2", "south": "side", "west": "none" - }, - "id": 2713 + } }, { + "id": 2912, "properties": { "east": "side", "north": "side", "power": "2", "south": "none", "west": "up" - }, - "id": 2714 + } }, { + "id": 2913, "properties": { "east": "side", "north": "side", "power": "2", "south": "none", "west": "side" - }, - "id": 2715 + } }, { + "id": 2914, "properties": { "east": "side", "north": "side", "power": "2", "south": "none", "west": "none" - }, - "id": 2716 + } }, { + "id": 2915, "properties": { "east": "side", "north": "side", "power": "3", "south": "up", "west": "up" - }, - "id": 2717 + } }, { + "id": 2916, "properties": { "east": "side", "north": "side", "power": "3", "south": "up", "west": "side" - }, - "id": 2718 + } }, { + "id": 2917, "properties": { "east": "side", "north": "side", "power": "3", "south": "up", "west": "none" - }, - "id": 2719 + } }, { + "id": 2918, "properties": { "east": "side", "north": "side", "power": "3", "south": "side", "west": "up" - }, - "id": 2720 + } }, { + "id": 2919, "properties": { "east": "side", "north": "side", "power": "3", "south": "side", "west": "side" - }, - "id": 2721 + } }, { + "id": 2920, "properties": { "east": "side", "north": "side", "power": "3", "south": "side", "west": "none" - }, - "id": 2722 + } }, { + "id": 2921, "properties": { "east": "side", "north": "side", "power": "3", "south": "none", "west": "up" - }, - "id": 2723 + } }, { + "id": 2922, "properties": { "east": "side", "north": "side", "power": "3", "south": "none", "west": "side" - }, - "id": 2724 + } }, { + "id": 2923, "properties": { "east": "side", "north": "side", "power": "3", "south": "none", "west": "none" - }, - "id": 2725 + } }, { + "id": 2924, "properties": { "east": "side", "north": "side", "power": "4", "south": "up", "west": "up" - }, - "id": 2726 + } }, { + "id": 2925, "properties": { "east": "side", "north": "side", "power": "4", "south": "up", "west": "side" - }, - "id": 2727 + } }, { + "id": 2926, "properties": { "east": "side", "north": "side", "power": "4", "south": "up", "west": "none" - }, - "id": 2728 + } }, { + "id": 2927, "properties": { "east": "side", "north": "side", "power": "4", "south": "side", "west": "up" - }, - "id": 2729 + } }, { + "id": 2928, "properties": { "east": "side", "north": "side", "power": "4", "south": "side", "west": "side" - }, - "id": 2730 + } }, { + "id": 2929, "properties": { "east": "side", "north": "side", "power": "4", "south": "side", "west": "none" - }, - "id": 2731 + } }, { + "id": 2930, "properties": { "east": "side", "north": "side", "power": "4", "south": "none", "west": "up" - }, - "id": 2732 + } }, { + "id": 2931, "properties": { "east": "side", "north": "side", "power": "4", "south": "none", "west": "side" - }, - "id": 2733 + } }, { + "id": 2932, "properties": { "east": "side", "north": "side", "power": "4", "south": "none", "west": "none" - }, - "id": 2734 + } }, { + "id": 2933, "properties": { "east": "side", "north": "side", "power": "5", "south": "up", "west": "up" - }, - "id": 2735 + } }, { + "id": 2934, "properties": { "east": "side", "north": "side", "power": "5", "south": "up", "west": "side" - }, - "id": 2736 + } }, { + "id": 2935, "properties": { "east": "side", "north": "side", "power": "5", "south": "up", "west": "none" - }, - "id": 2737 + } }, { + "id": 2936, "properties": { "east": "side", "north": "side", "power": "5", "south": "side", "west": "up" - }, - "id": 2738 + } }, { + "id": 2937, "properties": { "east": "side", "north": "side", "power": "5", "south": "side", "west": "side" - }, - "id": 2739 + } }, { + "id": 2938, "properties": { "east": "side", "north": "side", "power": "5", "south": "side", "west": "none" - }, - "id": 2740 + } }, { + "id": 2939, "properties": { "east": "side", "north": "side", "power": "5", "south": "none", "west": "up" - }, - "id": 2741 + } }, { + "id": 2940, "properties": { "east": "side", "north": "side", "power": "5", "south": "none", "west": "side" - }, - "id": 2742 + } }, { + "id": 2941, "properties": { "east": "side", "north": "side", "power": "5", "south": "none", "west": "none" - }, - "id": 2743 + } }, { + "id": 2942, "properties": { "east": "side", "north": "side", "power": "6", "south": "up", "west": "up" - }, - "id": 2744 + } }, { + "id": 2943, "properties": { "east": "side", "north": "side", "power": "6", "south": "up", "west": "side" - }, - "id": 2745 + } }, { + "id": 2944, "properties": { "east": "side", "north": "side", "power": "6", "south": "up", "west": "none" - }, - "id": 2746 + } }, { + "id": 2945, "properties": { "east": "side", "north": "side", "power": "6", "south": "side", "west": "up" - }, - "id": 2747 + } }, { + "id": 2946, "properties": { "east": "side", "north": "side", "power": "6", "south": "side", "west": "side" - }, - "id": 2748 + } }, { + "id": 2947, "properties": { "east": "side", "north": "side", "power": "6", "south": "side", "west": "none" - }, - "id": 2749 + } }, { + "id": 2948, "properties": { "east": "side", "north": "side", "power": "6", "south": "none", "west": "up" - }, - "id": 2750 + } }, { + "id": 2949, "properties": { "east": "side", "north": "side", "power": "6", "south": "none", "west": "side" - }, - "id": 2751 + } }, { + "id": 2950, "properties": { "east": "side", "north": "side", "power": "6", "south": "none", "west": "none" - }, - "id": 2752 + } }, { + "id": 2951, "properties": { "east": "side", "north": "side", "power": "7", "south": "up", "west": "up" - }, - "id": 2753 + } }, { + "id": 2952, "properties": { "east": "side", "north": "side", "power": "7", "south": "up", "west": "side" - }, - "id": 2754 + } }, { + "id": 2953, "properties": { "east": "side", "north": "side", "power": "7", "south": "up", "west": "none" - }, - "id": 2755 + } }, { + "id": 2954, "properties": { "east": "side", "north": "side", "power": "7", "south": "side", "west": "up" - }, - "id": 2756 + } }, { + "id": 2955, "properties": { "east": "side", "north": "side", "power": "7", "south": "side", "west": "side" - }, - "id": 2757 + } }, { + "id": 2956, "properties": { "east": "side", "north": "side", "power": "7", "south": "side", "west": "none" - }, - "id": 2758 + } }, { + "id": 2957, "properties": { "east": "side", "north": "side", "power": "7", "south": "none", "west": "up" - }, - "id": 2759 + } }, { + "id": 2958, "properties": { "east": "side", "north": "side", "power": "7", "south": "none", "west": "side" - }, - "id": 2760 + } }, { + "id": 2959, "properties": { "east": "side", "north": "side", "power": "7", "south": "none", "west": "none" - }, - "id": 2761 + } }, { + "id": 2960, "properties": { "east": "side", "north": "side", "power": "8", "south": "up", "west": "up" - }, - "id": 2762 + } }, { + "id": 2961, "properties": { "east": "side", "north": "side", "power": "8", "south": "up", "west": "side" - }, - "id": 2763 + } }, { + "id": 2962, "properties": { "east": "side", "north": "side", "power": "8", "south": "up", "west": "none" - }, - "id": 2764 + } }, { + "id": 2963, "properties": { "east": "side", "north": "side", "power": "8", "south": "side", "west": "up" - }, - "id": 2765 + } }, { + "id": 2964, "properties": { "east": "side", "north": "side", "power": "8", "south": "side", "west": "side" - }, - "id": 2766 + } }, { + "id": 2965, "properties": { "east": "side", "north": "side", "power": "8", "south": "side", "west": "none" - }, - "id": 2767 + } }, { + "id": 2966, "properties": { "east": "side", "north": "side", "power": "8", "south": "none", "west": "up" - }, - "id": 2768 + } }, { + "id": 2967, "properties": { "east": "side", "north": "side", "power": "8", "south": "none", "west": "side" - }, - "id": 2769 + } }, { + "id": 2968, "properties": { "east": "side", "north": "side", "power": "8", "south": "none", "west": "none" - }, - "id": 2770 + } }, { + "id": 2969, "properties": { "east": "side", "north": "side", "power": "9", "south": "up", "west": "up" - }, - "id": 2771 + } }, { + "id": 2970, "properties": { "east": "side", "north": "side", "power": "9", "south": "up", "west": "side" - }, - "id": 2772 + } }, { + "id": 2971, "properties": { "east": "side", "north": "side", "power": "9", "south": "up", "west": "none" - }, - "id": 2773 + } }, { + "id": 2972, "properties": { "east": "side", "north": "side", "power": "9", "south": "side", "west": "up" - }, - "id": 2774 + } }, { + "id": 2973, "properties": { "east": "side", "north": "side", "power": "9", "south": "side", "west": "side" - }, - "id": 2775 + } }, { + "id": 2974, "properties": { "east": "side", "north": "side", "power": "9", "south": "side", "west": "none" - }, - "id": 2776 + } }, { + "id": 2975, "properties": { "east": "side", "north": "side", "power": "9", "south": "none", "west": "up" - }, - "id": 2777 + } }, { + "id": 2976, "properties": { "east": "side", "north": "side", "power": "9", "south": "none", "west": "side" - }, - "id": 2778 + } }, { + "id": 2977, "properties": { "east": "side", "north": "side", "power": "9", "south": "none", "west": "none" - }, - "id": 2779 + } }, { + "id": 2978, "properties": { "east": "side", "north": "side", "power": "10", "south": "up", "west": "up" - }, - "id": 2780 + } }, { + "id": 2979, "properties": { "east": "side", "north": "side", "power": "10", "south": "up", "west": "side" - }, - "id": 2781 + } }, { + "id": 2980, "properties": { "east": "side", "north": "side", "power": "10", "south": "up", "west": "none" - }, - "id": 2782 + } }, { + "id": 2981, "properties": { "east": "side", "north": "side", "power": "10", "south": "side", "west": "up" - }, - "id": 2783 + } }, { + "id": 2982, "properties": { "east": "side", "north": "side", "power": "10", "south": "side", "west": "side" - }, - "id": 2784 + } }, { + "id": 2983, "properties": { "east": "side", "north": "side", "power": "10", "south": "side", "west": "none" - }, - "id": 2785 + } }, { + "id": 2984, "properties": { "east": "side", "north": "side", "power": "10", "south": "none", "west": "up" - }, - "id": 2786 + } }, { + "id": 2985, "properties": { "east": "side", "north": "side", "power": "10", "south": "none", "west": "side" - }, - "id": 2787 + } }, { + "id": 2986, "properties": { "east": "side", "north": "side", "power": "10", "south": "none", "west": "none" - }, - "id": 2788 + } }, { + "id": 2987, "properties": { "east": "side", "north": "side", "power": "11", "south": "up", "west": "up" - }, - "id": 2789 + } }, { + "id": 2988, "properties": { "east": "side", "north": "side", "power": "11", "south": "up", "west": "side" - }, - "id": 2790 + } }, { + "id": 2989, "properties": { "east": "side", "north": "side", "power": "11", "south": "up", "west": "none" - }, - "id": 2791 + } }, { + "id": 2990, "properties": { "east": "side", "north": "side", "power": "11", "south": "side", "west": "up" - }, - "id": 2792 + } }, { + "id": 2991, "properties": { "east": "side", "north": "side", "power": "11", "south": "side", "west": "side" - }, - "id": 2793 + } }, { + "id": 2992, "properties": { "east": "side", "north": "side", "power": "11", "south": "side", "west": "none" - }, - "id": 2794 + } }, { + "id": 2993, "properties": { "east": "side", "north": "side", "power": "11", "south": "none", "west": "up" - }, - "id": 2795 + } }, { + "id": 2994, "properties": { "east": "side", "north": "side", "power": "11", "south": "none", "west": "side" - }, - "id": 2796 + } }, { + "id": 2995, "properties": { "east": "side", "north": "side", "power": "11", "south": "none", "west": "none" - }, - "id": 2797 + } }, { + "id": 2996, "properties": { "east": "side", "north": "side", "power": "12", "south": "up", "west": "up" - }, - "id": 2798 + } }, { + "id": 2997, "properties": { "east": "side", "north": "side", "power": "12", "south": "up", "west": "side" - }, - "id": 2799 + } }, { + "id": 2998, "properties": { "east": "side", "north": "side", "power": "12", "south": "up", "west": "none" - }, - "id": 2800 + } }, { + "id": 2999, "properties": { "east": "side", "north": "side", "power": "12", "south": "side", "west": "up" - }, - "id": 2801 + } }, { + "id": 3000, "properties": { "east": "side", "north": "side", "power": "12", "south": "side", "west": "side" - }, - "id": 2802 + } }, { + "id": 3001, "properties": { "east": "side", "north": "side", "power": "12", "south": "side", "west": "none" - }, - "id": 2803 + } }, { + "id": 3002, "properties": { "east": "side", "north": "side", "power": "12", "south": "none", "west": "up" - }, - "id": 2804 + } }, { + "id": 3003, "properties": { "east": "side", "north": "side", "power": "12", "south": "none", "west": "side" - }, - "id": 2805 + } }, { + "id": 3004, "properties": { "east": "side", "north": "side", "power": "12", "south": "none", "west": "none" - }, - "id": 2806 + } }, { + "id": 3005, "properties": { "east": "side", "north": "side", "power": "13", "south": "up", "west": "up" - }, - "id": 2807 + } }, { + "id": 3006, "properties": { "east": "side", "north": "side", "power": "13", "south": "up", "west": "side" - }, - "id": 2808 + } }, { + "id": 3007, "properties": { "east": "side", "north": "side", "power": "13", "south": "up", "west": "none" - }, - "id": 2809 + } }, { + "id": 3008, "properties": { "east": "side", "north": "side", "power": "13", "south": "side", "west": "up" - }, - "id": 2810 + } }, { + "id": 3009, "properties": { "east": "side", "north": "side", "power": "13", "south": "side", "west": "side" - }, - "id": 2811 + } }, { + "id": 3010, "properties": { "east": "side", "north": "side", "power": "13", "south": "side", "west": "none" - }, - "id": 2812 + } }, { + "id": 3011, "properties": { "east": "side", "north": "side", "power": "13", "south": "none", "west": "up" - }, - "id": 2813 + } }, { + "id": 3012, "properties": { "east": "side", "north": "side", "power": "13", "south": "none", "west": "side" - }, - "id": 2814 + } }, { + "id": 3013, "properties": { "east": "side", "north": "side", "power": "13", "south": "none", "west": "none" - }, - "id": 2815 + } }, { + "id": 3014, "properties": { "east": "side", "north": "side", "power": "14", "south": "up", "west": "up" - }, - "id": 2816 + } }, { + "id": 3015, "properties": { "east": "side", "north": "side", "power": "14", "south": "up", "west": "side" - }, - "id": 2817 + } }, { + "id": 3016, "properties": { "east": "side", "north": "side", "power": "14", "south": "up", "west": "none" - }, - "id": 2818 + } }, { + "id": 3017, "properties": { "east": "side", "north": "side", "power": "14", "south": "side", "west": "up" - }, - "id": 2819 + } }, { + "id": 3018, "properties": { "east": "side", "north": "side", "power": "14", "south": "side", "west": "side" - }, - "id": 2820 + } }, { + "id": 3019, "properties": { "east": "side", "north": "side", "power": "14", "south": "side", "west": "none" - }, - "id": 2821 + } }, { + "id": 3020, "properties": { "east": "side", "north": "side", "power": "14", "south": "none", "west": "up" - }, - "id": 2822 + } }, { + "id": 3021, "properties": { "east": "side", "north": "side", "power": "14", "south": "none", "west": "side" - }, - "id": 2823 + } }, { + "id": 3022, "properties": { "east": "side", "north": "side", "power": "14", "south": "none", "west": "none" - }, - "id": 2824 + } }, { + "id": 3023, "properties": { "east": "side", "north": "side", "power": "15", "south": "up", "west": "up" - }, - "id": 2825 + } }, { + "id": 3024, "properties": { "east": "side", "north": "side", "power": "15", "south": "up", "west": "side" - }, - "id": 2826 + } }, { + "id": 3025, "properties": { "east": "side", "north": "side", "power": "15", "south": "up", "west": "none" - }, - "id": 2827 + } }, { + "id": 3026, "properties": { "east": "side", "north": "side", "power": "15", "south": "side", "west": "up" - }, - "id": 2828 + } }, { + "id": 3027, "properties": { "east": "side", "north": "side", "power": "15", "south": "side", "west": "side" - }, - "id": 2829 + } }, { + "id": 3028, "properties": { "east": "side", "north": "side", "power": "15", "south": "side", "west": "none" - }, - "id": 2830 + } }, { + "id": 3029, "properties": { "east": "side", "north": "side", "power": "15", "south": "none", "west": "up" - }, - "id": 2831 + } }, { + "id": 3030, "properties": { "east": "side", "north": "side", "power": "15", "south": "none", "west": "side" - }, - "id": 2832 + } }, { + "id": 3031, "properties": { "east": "side", "north": "side", "power": "15", "south": "none", "west": "none" - }, - "id": 2833 + } }, { + "id": 3032, "properties": { "east": "side", "north": "none", "power": "0", "south": "up", "west": "up" - }, - "id": 2834 + } }, { + "id": 3033, "properties": { "east": "side", "north": "none", "power": "0", "south": "up", "west": "side" - }, - "id": 2835 + } }, { + "id": 3034, "properties": { "east": "side", "north": "none", "power": "0", "south": "up", "west": "none" - }, - "id": 2836 + } }, { + "id": 3035, "properties": { "east": "side", "north": "none", "power": "0", "south": "side", "west": "up" - }, - "id": 2837 + } }, { + "id": 3036, "properties": { "east": "side", "north": "none", "power": "0", "south": "side", "west": "side" - }, - "id": 2838 + } }, { + "id": 3037, "properties": { "east": "side", "north": "none", "power": "0", "south": "side", "west": "none" - }, - "id": 2839 + } }, { + "id": 3038, "properties": { "east": "side", "north": "none", "power": "0", "south": "none", "west": "up" - }, - "id": 2840 + } }, { + "id": 3039, "properties": { "east": "side", "north": "none", "power": "0", "south": "none", "west": "side" - }, - "id": 2841 + } }, { + "id": 3040, "properties": { "east": "side", "north": "none", "power": "0", "south": "none", "west": "none" - }, - "id": 2842 + } }, { + "id": 3041, "properties": { "east": "side", "north": "none", "power": "1", "south": "up", "west": "up" - }, - "id": 2843 + } }, { + "id": 3042, "properties": { "east": "side", "north": "none", "power": "1", "south": "up", "west": "side" - }, - "id": 2844 + } }, { + "id": 3043, "properties": { "east": "side", "north": "none", "power": "1", "south": "up", "west": "none" - }, - "id": 2845 + } }, { + "id": 3044, "properties": { "east": "side", "north": "none", "power": "1", "south": "side", "west": "up" - }, - "id": 2846 + } }, { + "id": 3045, "properties": { "east": "side", "north": "none", "power": "1", "south": "side", "west": "side" - }, - "id": 2847 + } }, { + "id": 3046, "properties": { "east": "side", "north": "none", "power": "1", "south": "side", "west": "none" - }, - "id": 2848 + } }, { + "id": 3047, "properties": { "east": "side", "north": "none", "power": "1", "south": "none", "west": "up" - }, - "id": 2849 + } }, { + "id": 3048, "properties": { "east": "side", "north": "none", "power": "1", "south": "none", "west": "side" - }, - "id": 2850 + } }, { + "id": 3049, "properties": { "east": "side", "north": "none", "power": "1", "south": "none", "west": "none" - }, - "id": 2851 + } }, { + "id": 3050, "properties": { "east": "side", "north": "none", "power": "2", "south": "up", "west": "up" - }, - "id": 2852 + } }, { + "id": 3051, "properties": { "east": "side", "north": "none", "power": "2", "south": "up", "west": "side" - }, - "id": 2853 + } }, { + "id": 3052, "properties": { "east": "side", "north": "none", "power": "2", "south": "up", "west": "none" - }, - "id": 2854 + } }, { + "id": 3053, "properties": { "east": "side", "north": "none", "power": "2", "south": "side", "west": "up" - }, - "id": 2855 + } }, { + "id": 3054, "properties": { "east": "side", "north": "none", "power": "2", "south": "side", "west": "side" - }, - "id": 2856 + } }, { + "id": 3055, "properties": { "east": "side", "north": "none", "power": "2", "south": "side", "west": "none" - }, - "id": 2857 + } }, { + "id": 3056, "properties": { "east": "side", "north": "none", "power": "2", "south": "none", "west": "up" - }, - "id": 2858 + } }, { + "id": 3057, "properties": { "east": "side", "north": "none", "power": "2", "south": "none", "west": "side" - }, - "id": 2859 + } }, { + "id": 3058, "properties": { "east": "side", "north": "none", "power": "2", "south": "none", "west": "none" - }, - "id": 2860 + } }, { + "id": 3059, "properties": { "east": "side", "north": "none", "power": "3", "south": "up", "west": "up" - }, - "id": 2861 + } }, { + "id": 3060, "properties": { "east": "side", "north": "none", "power": "3", "south": "up", "west": "side" - }, - "id": 2862 + } }, { + "id": 3061, "properties": { "east": "side", "north": "none", "power": "3", "south": "up", "west": "none" - }, - "id": 2863 + } }, { + "id": 3062, "properties": { "east": "side", "north": "none", "power": "3", "south": "side", "west": "up" - }, - "id": 2864 + } }, { + "id": 3063, "properties": { "east": "side", "north": "none", "power": "3", "south": "side", "west": "side" - }, - "id": 2865 + } }, { + "id": 3064, "properties": { "east": "side", "north": "none", "power": "3", "south": "side", "west": "none" - }, - "id": 2866 + } }, { + "id": 3065, "properties": { "east": "side", "north": "none", "power": "3", "south": "none", "west": "up" - }, - "id": 2867 + } }, { + "id": 3066, "properties": { "east": "side", "north": "none", "power": "3", "south": "none", "west": "side" - }, - "id": 2868 + } }, { + "id": 3067, "properties": { "east": "side", "north": "none", "power": "3", "south": "none", "west": "none" - }, - "id": 2869 + } }, { + "id": 3068, "properties": { "east": "side", "north": "none", "power": "4", "south": "up", "west": "up" - }, - "id": 2870 + } }, { + "id": 3069, "properties": { "east": "side", "north": "none", "power": "4", "south": "up", "west": "side" - }, - "id": 2871 + } }, { + "id": 3070, "properties": { "east": "side", "north": "none", "power": "4", "south": "up", "west": "none" - }, - "id": 2872 + } }, { + "id": 3071, "properties": { "east": "side", "north": "none", "power": "4", "south": "side", "west": "up" - }, - "id": 2873 + } }, { + "id": 3072, "properties": { "east": "side", "north": "none", "power": "4", "south": "side", "west": "side" - }, - "id": 2874 + } }, { + "id": 3073, "properties": { "east": "side", "north": "none", "power": "4", "south": "side", "west": "none" - }, - "id": 2875 + } }, { + "id": 3074, "properties": { "east": "side", "north": "none", "power": "4", "south": "none", "west": "up" - }, - "id": 2876 + } }, { + "id": 3075, "properties": { "east": "side", "north": "none", "power": "4", "south": "none", "west": "side" - }, - "id": 2877 + } }, { + "id": 3076, "properties": { "east": "side", "north": "none", "power": "4", "south": "none", "west": "none" - }, - "id": 2878 + } }, { + "id": 3077, "properties": { "east": "side", "north": "none", "power": "5", "south": "up", "west": "up" - }, - "id": 2879 + } }, { + "id": 3078, "properties": { "east": "side", "north": "none", "power": "5", "south": "up", "west": "side" - }, - "id": 2880 + } }, { + "id": 3079, "properties": { "east": "side", "north": "none", "power": "5", "south": "up", "west": "none" - }, - "id": 2881 + } }, { + "id": 3080, "properties": { "east": "side", "north": "none", "power": "5", "south": "side", "west": "up" - }, - "id": 2882 + } }, { + "id": 3081, "properties": { "east": "side", "north": "none", "power": "5", "south": "side", "west": "side" - }, - "id": 2883 + } }, { + "id": 3082, "properties": { "east": "side", "north": "none", "power": "5", "south": "side", "west": "none" - }, - "id": 2884 + } }, { + "id": 3083, "properties": { "east": "side", "north": "none", "power": "5", "south": "none", "west": "up" - }, - "id": 2885 + } }, { + "id": 3084, "properties": { "east": "side", "north": "none", "power": "5", "south": "none", "west": "side" - }, - "id": 2886 + } }, { + "id": 3085, "properties": { "east": "side", "north": "none", "power": "5", "south": "none", "west": "none" - }, - "id": 2887 + } }, { + "id": 3086, "properties": { "east": "side", "north": "none", "power": "6", "south": "up", "west": "up" - }, - "id": 2888 + } }, { + "id": 3087, "properties": { "east": "side", "north": "none", "power": "6", "south": "up", "west": "side" - }, - "id": 2889 + } }, { + "id": 3088, "properties": { "east": "side", "north": "none", "power": "6", "south": "up", "west": "none" - }, - "id": 2890 + } }, { + "id": 3089, "properties": { "east": "side", "north": "none", "power": "6", "south": "side", "west": "up" - }, - "id": 2891 + } }, { + "id": 3090, "properties": { "east": "side", "north": "none", "power": "6", "south": "side", "west": "side" - }, - "id": 2892 + } }, { + "id": 3091, "properties": { "east": "side", "north": "none", "power": "6", "south": "side", "west": "none" - }, - "id": 2893 + } }, { + "id": 3092, "properties": { "east": "side", "north": "none", "power": "6", "south": "none", "west": "up" - }, - "id": 2894 + } }, { + "id": 3093, "properties": { "east": "side", "north": "none", "power": "6", "south": "none", "west": "side" - }, - "id": 2895 + } }, { + "id": 3094, "properties": { "east": "side", "north": "none", "power": "6", "south": "none", "west": "none" - }, - "id": 2896 + } }, { + "id": 3095, "properties": { "east": "side", "north": "none", "power": "7", "south": "up", "west": "up" - }, - "id": 2897 + } }, { + "id": 3096, "properties": { "east": "side", "north": "none", "power": "7", "south": "up", "west": "side" - }, - "id": 2898 + } }, { + "id": 3097, "properties": { "east": "side", "north": "none", "power": "7", "south": "up", "west": "none" - }, - "id": 2899 + } }, { + "id": 3098, "properties": { "east": "side", "north": "none", "power": "7", "south": "side", "west": "up" - }, - "id": 2900 + } }, { + "id": 3099, "properties": { "east": "side", "north": "none", "power": "7", "south": "side", "west": "side" - }, - "id": 2901 + } }, { + "id": 3100, "properties": { "east": "side", "north": "none", "power": "7", "south": "side", "west": "none" - }, - "id": 2902 + } }, { + "id": 3101, "properties": { "east": "side", "north": "none", "power": "7", "south": "none", "west": "up" - }, - "id": 2903 + } }, { + "id": 3102, "properties": { "east": "side", "north": "none", "power": "7", "south": "none", "west": "side" - }, - "id": 2904 + } }, { + "id": 3103, "properties": { "east": "side", "north": "none", "power": "7", "south": "none", "west": "none" - }, - "id": 2905 + } }, { + "id": 3104, "properties": { "east": "side", "north": "none", "power": "8", "south": "up", "west": "up" - }, - "id": 2906 + } }, { + "id": 3105, "properties": { "east": "side", "north": "none", "power": "8", "south": "up", "west": "side" - }, - "id": 2907 + } }, { + "id": 3106, "properties": { "east": "side", "north": "none", "power": "8", "south": "up", "west": "none" - }, - "id": 2908 + } }, { + "id": 3107, "properties": { "east": "side", "north": "none", "power": "8", "south": "side", "west": "up" - }, - "id": 2909 + } }, { + "id": 3108, "properties": { "east": "side", "north": "none", "power": "8", "south": "side", "west": "side" - }, - "id": 2910 + } }, { + "id": 3109, "properties": { "east": "side", "north": "none", "power": "8", "south": "side", "west": "none" - }, - "id": 2911 + } }, { + "id": 3110, "properties": { "east": "side", "north": "none", "power": "8", "south": "none", "west": "up" - }, - "id": 2912 + } }, { + "id": 3111, "properties": { "east": "side", "north": "none", "power": "8", "south": "none", "west": "side" - }, - "id": 2913 + } }, { + "id": 3112, "properties": { "east": "side", "north": "none", "power": "8", "south": "none", "west": "none" - }, - "id": 2914 + } }, { + "id": 3113, "properties": { "east": "side", "north": "none", "power": "9", "south": "up", "west": "up" - }, - "id": 2915 + } }, { + "id": 3114, "properties": { "east": "side", "north": "none", "power": "9", "south": "up", "west": "side" - }, - "id": 2916 + } }, { + "id": 3115, "properties": { "east": "side", "north": "none", "power": "9", "south": "up", "west": "none" - }, - "id": 2917 + } }, { + "id": 3116, "properties": { "east": "side", "north": "none", "power": "9", "south": "side", "west": "up" - }, - "id": 2918 + } }, { + "id": 3117, "properties": { "east": "side", "north": "none", "power": "9", "south": "side", "west": "side" - }, - "id": 2919 + } }, { + "id": 3118, "properties": { "east": "side", "north": "none", "power": "9", "south": "side", "west": "none" - }, - "id": 2920 + } }, { + "id": 3119, "properties": { "east": "side", "north": "none", "power": "9", "south": "none", "west": "up" - }, - "id": 2921 + } }, { + "id": 3120, "properties": { "east": "side", "north": "none", "power": "9", "south": "none", "west": "side" - }, - "id": 2922 + } }, { + "id": 3121, "properties": { "east": "side", "north": "none", "power": "9", "south": "none", "west": "none" - }, - "id": 2923 + } }, { + "id": 3122, "properties": { "east": "side", "north": "none", "power": "10", "south": "up", "west": "up" - }, - "id": 2924 + } }, { + "id": 3123, "properties": { "east": "side", "north": "none", "power": "10", "south": "up", "west": "side" - }, - "id": 2925 + } }, { + "id": 3124, "properties": { "east": "side", "north": "none", "power": "10", "south": "up", "west": "none" - }, - "id": 2926 + } }, { + "id": 3125, "properties": { "east": "side", "north": "none", "power": "10", "south": "side", "west": "up" - }, - "id": 2927 + } }, { + "id": 3126, "properties": { "east": "side", "north": "none", "power": "10", "south": "side", "west": "side" - }, - "id": 2928 + } }, { + "id": 3127, "properties": { "east": "side", "north": "none", "power": "10", "south": "side", "west": "none" - }, - "id": 2929 + } }, { + "id": 3128, "properties": { "east": "side", "north": "none", "power": "10", "south": "none", "west": "up" - }, - "id": 2930 + } }, { + "id": 3129, "properties": { "east": "side", "north": "none", "power": "10", "south": "none", "west": "side" - }, - "id": 2931 + } }, { + "id": 3130, "properties": { "east": "side", "north": "none", "power": "10", "south": "none", "west": "none" - }, - "id": 2932 + } }, { + "id": 3131, "properties": { "east": "side", "north": "none", "power": "11", "south": "up", "west": "up" - }, - "id": 2933 + } }, { + "id": 3132, "properties": { "east": "side", "north": "none", "power": "11", "south": "up", "west": "side" - }, - "id": 2934 + } }, { + "id": 3133, "properties": { "east": "side", "north": "none", "power": "11", "south": "up", "west": "none" - }, - "id": 2935 + } }, { + "id": 3134, "properties": { "east": "side", "north": "none", "power": "11", "south": "side", "west": "up" - }, - "id": 2936 + } }, { + "id": 3135, "properties": { "east": "side", "north": "none", "power": "11", "south": "side", "west": "side" - }, - "id": 2937 + } }, { + "id": 3136, "properties": { "east": "side", "north": "none", "power": "11", "south": "side", "west": "none" - }, - "id": 2938 + } }, { + "id": 3137, "properties": { "east": "side", "north": "none", "power": "11", "south": "none", "west": "up" - }, - "id": 2939 + } }, { + "id": 3138, "properties": { "east": "side", "north": "none", "power": "11", "south": "none", "west": "side" - }, - "id": 2940 + } }, { + "id": 3139, "properties": { "east": "side", "north": "none", "power": "11", "south": "none", "west": "none" - }, - "id": 2941 + } }, { + "id": 3140, "properties": { "east": "side", "north": "none", "power": "12", "south": "up", "west": "up" - }, - "id": 2942 + } }, { + "id": 3141, "properties": { "east": "side", "north": "none", "power": "12", "south": "up", "west": "side" - }, - "id": 2943 + } }, { + "id": 3142, "properties": { "east": "side", "north": "none", "power": "12", "south": "up", "west": "none" - }, - "id": 2944 + } }, { + "id": 3143, "properties": { "east": "side", "north": "none", "power": "12", "south": "side", "west": "up" - }, - "id": 2945 + } }, { + "id": 3144, "properties": { "east": "side", "north": "none", "power": "12", "south": "side", "west": "side" - }, - "id": 2946 + } }, { + "id": 3145, "properties": { "east": "side", "north": "none", "power": "12", "south": "side", "west": "none" - }, - "id": 2947 + } }, { + "id": 3146, "properties": { "east": "side", "north": "none", "power": "12", "south": "none", "west": "up" - }, - "id": 2948 + } }, { + "id": 3147, "properties": { "east": "side", "north": "none", "power": "12", "south": "none", "west": "side" - }, - "id": 2949 + } }, { + "id": 3148, "properties": { "east": "side", "north": "none", "power": "12", "south": "none", "west": "none" - }, - "id": 2950 + } }, { + "id": 3149, "properties": { "east": "side", "north": "none", "power": "13", "south": "up", "west": "up" - }, - "id": 2951 + } }, { + "id": 3150, "properties": { "east": "side", "north": "none", "power": "13", "south": "up", "west": "side" - }, - "id": 2952 + } }, { + "id": 3151, "properties": { "east": "side", "north": "none", "power": "13", "south": "up", "west": "none" - }, - "id": 2953 + } }, { + "id": 3152, "properties": { "east": "side", "north": "none", "power": "13", "south": "side", "west": "up" - }, - "id": 2954 + } }, { + "id": 3153, "properties": { "east": "side", "north": "none", "power": "13", "south": "side", "west": "side" - }, - "id": 2955 + } }, { + "id": 3154, "properties": { "east": "side", "north": "none", "power": "13", "south": "side", "west": "none" - }, - "id": 2956 + } }, { + "id": 3155, "properties": { "east": "side", "north": "none", "power": "13", "south": "none", "west": "up" - }, - "id": 2957 + } }, { + "id": 3156, "properties": { "east": "side", "north": "none", "power": "13", "south": "none", "west": "side" - }, - "id": 2958 + } }, { + "id": 3157, "properties": { "east": "side", "north": "none", "power": "13", "south": "none", "west": "none" - }, - "id": 2959 + } }, { + "id": 3158, "properties": { "east": "side", "north": "none", "power": "14", "south": "up", "west": "up" - }, - "id": 2960 + } }, { + "id": 3159, "properties": { "east": "side", "north": "none", "power": "14", "south": "up", "west": "side" - }, - "id": 2961 + } }, { + "id": 3160, "properties": { "east": "side", "north": "none", "power": "14", "south": "up", "west": "none" - }, - "id": 2962 + } }, { + "id": 3161, "properties": { "east": "side", "north": "none", "power": "14", "south": "side", "west": "up" - }, - "id": 2963 + } }, { + "id": 3162, "properties": { "east": "side", "north": "none", "power": "14", "south": "side", "west": "side" - }, - "id": 2964 + } }, { + "id": 3163, "properties": { "east": "side", "north": "none", "power": "14", "south": "side", "west": "none" - }, - "id": 2965 + } }, { + "id": 3164, "properties": { "east": "side", "north": "none", "power": "14", "south": "none", "west": "up" - }, - "id": 2966 + } }, { + "id": 3165, "properties": { "east": "side", "north": "none", "power": "14", "south": "none", "west": "side" - }, - "id": 2967 + } }, { + "id": 3166, "properties": { "east": "side", "north": "none", "power": "14", "south": "none", "west": "none" - }, - "id": 2968 + } }, { + "id": 3167, "properties": { "east": "side", "north": "none", "power": "15", "south": "up", "west": "up" - }, - "id": 2969 + } }, { + "id": 3168, "properties": { "east": "side", "north": "none", "power": "15", "south": "up", "west": "side" - }, - "id": 2970 + } }, { + "id": 3169, "properties": { "east": "side", "north": "none", "power": "15", "south": "up", "west": "none" - }, - "id": 2971 + } }, { + "id": 3170, "properties": { "east": "side", "north": "none", "power": "15", "south": "side", "west": "up" - }, - "id": 2972 + } }, { + "id": 3171, "properties": { "east": "side", "north": "none", "power": "15", "south": "side", "west": "side" - }, - "id": 2973 + } }, { + "id": 3172, "properties": { "east": "side", "north": "none", "power": "15", "south": "side", "west": "none" - }, - "id": 2974 + } }, { + "id": 3173, "properties": { "east": "side", "north": "none", "power": "15", "south": "none", "west": "up" - }, - "id": 2975 + } }, { + "id": 3174, "properties": { "east": "side", "north": "none", "power": "15", "south": "none", "west": "side" - }, - "id": 2976 + } }, { + "id": 3175, "properties": { "east": "side", "north": "none", "power": "15", "south": "none", "west": "none" - }, - "id": 2977 + } }, { + "id": 3176, "properties": { "east": "none", "north": "up", "power": "0", "south": "up", "west": "up" - }, - "id": 2978 + } }, { + "id": 3177, "properties": { "east": "none", "north": "up", "power": "0", "south": "up", "west": "side" - }, - "id": 2979 + } }, { + "id": 3178, "properties": { "east": "none", "north": "up", "power": "0", "south": "up", "west": "none" - }, - "id": 2980 + } }, { + "id": 3179, "properties": { "east": "none", "north": "up", "power": "0", "south": "side", "west": "up" - }, - "id": 2981 + } }, { + "id": 3180, "properties": { "east": "none", "north": "up", "power": "0", "south": "side", "west": "side" - }, - "id": 2982 + } }, { + "id": 3181, "properties": { "east": "none", "north": "up", "power": "0", "south": "side", "west": "none" - }, - "id": 2983 + } }, { + "id": 3182, "properties": { "east": "none", "north": "up", "power": "0", "south": "none", "west": "up" - }, - "id": 2984 + } }, { + "id": 3183, "properties": { "east": "none", "north": "up", "power": "0", "south": "none", "west": "side" - }, - "id": 2985 + } }, { + "id": 3184, "properties": { "east": "none", "north": "up", "power": "0", "south": "none", "west": "none" - }, - "id": 2986 + } }, { + "id": 3185, "properties": { "east": "none", "north": "up", "power": "1", "south": "up", "west": "up" - }, - "id": 2987 + } }, { + "id": 3186, "properties": { "east": "none", "north": "up", "power": "1", "south": "up", "west": "side" - }, - "id": 2988 + } }, { + "id": 3187, "properties": { "east": "none", "north": "up", "power": "1", "south": "up", "west": "none" - }, - "id": 2989 + } }, { + "id": 3188, "properties": { "east": "none", "north": "up", "power": "1", "south": "side", "west": "up" - }, - "id": 2990 + } }, { + "id": 3189, "properties": { "east": "none", "north": "up", "power": "1", "south": "side", "west": "side" - }, - "id": 2991 + } }, { + "id": 3190, "properties": { "east": "none", "north": "up", "power": "1", "south": "side", "west": "none" - }, - "id": 2992 + } }, { + "id": 3191, "properties": { "east": "none", "north": "up", "power": "1", "south": "none", "west": "up" - }, - "id": 2993 + } }, { + "id": 3192, "properties": { "east": "none", "north": "up", "power": "1", "south": "none", "west": "side" - }, - "id": 2994 + } }, { + "id": 3193, "properties": { "east": "none", "north": "up", "power": "1", "south": "none", "west": "none" - }, - "id": 2995 + } }, { + "id": 3194, "properties": { "east": "none", "north": "up", "power": "2", "south": "up", "west": "up" - }, - "id": 2996 + } }, { + "id": 3195, "properties": { "east": "none", "north": "up", "power": "2", "south": "up", "west": "side" - }, - "id": 2997 + } }, { + "id": 3196, "properties": { "east": "none", "north": "up", "power": "2", "south": "up", "west": "none" - }, - "id": 2998 + } }, { + "id": 3197, "properties": { "east": "none", "north": "up", "power": "2", "south": "side", "west": "up" - }, - "id": 2999 + } }, { + "id": 3198, "properties": { "east": "none", "north": "up", "power": "2", "south": "side", "west": "side" - }, - "id": 3000 + } }, { + "id": 3199, "properties": { "east": "none", "north": "up", "power": "2", "south": "side", "west": "none" - }, - "id": 3001 + } }, { + "id": 3200, "properties": { "east": "none", "north": "up", "power": "2", "south": "none", "west": "up" - }, - "id": 3002 + } }, { + "id": 3201, "properties": { "east": "none", "north": "up", "power": "2", "south": "none", "west": "side" - }, - "id": 3003 + } }, { + "id": 3202, "properties": { "east": "none", "north": "up", "power": "2", "south": "none", "west": "none" - }, - "id": 3004 + } }, { + "id": 3203, "properties": { "east": "none", "north": "up", "power": "3", "south": "up", "west": "up" - }, - "id": 3005 + } }, { + "id": 3204, "properties": { "east": "none", "north": "up", "power": "3", "south": "up", "west": "side" - }, - "id": 3006 + } }, { + "id": 3205, "properties": { "east": "none", "north": "up", "power": "3", "south": "up", "west": "none" - }, - "id": 3007 + } }, { + "id": 3206, "properties": { "east": "none", "north": "up", "power": "3", "south": "side", "west": "up" - }, - "id": 3008 + } }, { + "id": 3207, "properties": { "east": "none", "north": "up", "power": "3", "south": "side", "west": "side" - }, - "id": 3009 + } }, { + "id": 3208, "properties": { "east": "none", "north": "up", "power": "3", "south": "side", "west": "none" - }, - "id": 3010 + } }, { + "id": 3209, "properties": { "east": "none", "north": "up", "power": "3", "south": "none", "west": "up" - }, - "id": 3011 + } }, { + "id": 3210, "properties": { "east": "none", "north": "up", "power": "3", "south": "none", "west": "side" - }, - "id": 3012 + } }, { + "id": 3211, "properties": { "east": "none", "north": "up", "power": "3", "south": "none", "west": "none" - }, - "id": 3013 + } }, { + "id": 3212, "properties": { "east": "none", "north": "up", "power": "4", "south": "up", "west": "up" - }, - "id": 3014 + } }, { + "id": 3213, "properties": { "east": "none", "north": "up", "power": "4", "south": "up", "west": "side" - }, - "id": 3015 + } }, { + "id": 3214, "properties": { "east": "none", "north": "up", "power": "4", "south": "up", "west": "none" - }, - "id": 3016 + } }, { + "id": 3215, "properties": { "east": "none", "north": "up", "power": "4", "south": "side", "west": "up" - }, - "id": 3017 + } }, { + "id": 3216, "properties": { "east": "none", "north": "up", "power": "4", "south": "side", "west": "side" - }, - "id": 3018 + } }, { + "id": 3217, "properties": { "east": "none", "north": "up", "power": "4", "south": "side", "west": "none" - }, - "id": 3019 + } }, { + "id": 3218, "properties": { "east": "none", "north": "up", "power": "4", "south": "none", "west": "up" - }, - "id": 3020 + } }, { + "id": 3219, "properties": { "east": "none", "north": "up", "power": "4", "south": "none", "west": "side" - }, - "id": 3021 + } }, { + "id": 3220, "properties": { "east": "none", "north": "up", "power": "4", "south": "none", "west": "none" - }, - "id": 3022 + } }, { + "id": 3221, "properties": { "east": "none", "north": "up", "power": "5", "south": "up", "west": "up" - }, - "id": 3023 + } }, { + "id": 3222, "properties": { "east": "none", "north": "up", "power": "5", "south": "up", "west": "side" - }, - "id": 3024 + } }, { + "id": 3223, "properties": { "east": "none", "north": "up", "power": "5", "south": "up", "west": "none" - }, - "id": 3025 + } }, { + "id": 3224, "properties": { "east": "none", "north": "up", "power": "5", "south": "side", "west": "up" - }, - "id": 3026 + } }, { + "id": 3225, "properties": { "east": "none", "north": "up", "power": "5", "south": "side", "west": "side" - }, - "id": 3027 + } }, { + "id": 3226, "properties": { "east": "none", "north": "up", "power": "5", "south": "side", "west": "none" - }, - "id": 3028 + } }, { + "id": 3227, "properties": { "east": "none", "north": "up", "power": "5", "south": "none", "west": "up" - }, - "id": 3029 + } }, { + "id": 3228, "properties": { "east": "none", "north": "up", "power": "5", "south": "none", "west": "side" - }, - "id": 3030 + } }, { + "id": 3229, "properties": { "east": "none", "north": "up", "power": "5", "south": "none", "west": "none" - }, - "id": 3031 + } }, { + "id": 3230, "properties": { "east": "none", "north": "up", "power": "6", "south": "up", "west": "up" - }, - "id": 3032 + } }, { + "id": 3231, "properties": { "east": "none", "north": "up", "power": "6", "south": "up", "west": "side" - }, - "id": 3033 + } }, { + "id": 3232, "properties": { "east": "none", "north": "up", "power": "6", "south": "up", "west": "none" - }, - "id": 3034 + } }, { + "id": 3233, "properties": { "east": "none", "north": "up", "power": "6", "south": "side", "west": "up" - }, - "id": 3035 + } }, { + "id": 3234, "properties": { "east": "none", "north": "up", "power": "6", "south": "side", "west": "side" - }, - "id": 3036 + } }, { + "id": 3235, "properties": { "east": "none", "north": "up", "power": "6", "south": "side", "west": "none" - }, - "id": 3037 + } }, { + "id": 3236, "properties": { "east": "none", "north": "up", "power": "6", "south": "none", "west": "up" - }, - "id": 3038 + } }, { + "id": 3237, "properties": { "east": "none", "north": "up", "power": "6", "south": "none", "west": "side" - }, - "id": 3039 + } }, { + "id": 3238, "properties": { "east": "none", "north": "up", "power": "6", "south": "none", "west": "none" - }, - "id": 3040 + } }, { + "id": 3239, "properties": { "east": "none", "north": "up", "power": "7", "south": "up", "west": "up" - }, - "id": 3041 + } }, { + "id": 3240, "properties": { "east": "none", "north": "up", "power": "7", "south": "up", "west": "side" - }, - "id": 3042 + } }, { + "id": 3241, "properties": { "east": "none", "north": "up", "power": "7", "south": "up", "west": "none" - }, - "id": 3043 + } }, { + "id": 3242, "properties": { "east": "none", "north": "up", "power": "7", "south": "side", "west": "up" - }, - "id": 3044 + } }, { + "id": 3243, "properties": { "east": "none", "north": "up", "power": "7", "south": "side", "west": "side" - }, - "id": 3045 + } }, { + "id": 3244, "properties": { "east": "none", "north": "up", "power": "7", "south": "side", "west": "none" - }, - "id": 3046 + } }, { + "id": 3245, "properties": { "east": "none", "north": "up", "power": "7", "south": "none", "west": "up" - }, - "id": 3047 + } }, { + "id": 3246, "properties": { "east": "none", "north": "up", "power": "7", "south": "none", "west": "side" - }, - "id": 3048 + } }, { + "id": 3247, "properties": { "east": "none", "north": "up", "power": "7", "south": "none", "west": "none" - }, - "id": 3049 + } }, { + "id": 3248, "properties": { "east": "none", "north": "up", "power": "8", "south": "up", "west": "up" - }, - "id": 3050 + } }, { + "id": 3249, "properties": { "east": "none", "north": "up", "power": "8", "south": "up", "west": "side" - }, - "id": 3051 + } }, { + "id": 3250, "properties": { "east": "none", "north": "up", "power": "8", "south": "up", "west": "none" - }, - "id": 3052 + } }, { + "id": 3251, "properties": { "east": "none", "north": "up", "power": "8", "south": "side", "west": "up" - }, - "id": 3053 + } }, { + "id": 3252, "properties": { "east": "none", "north": "up", "power": "8", "south": "side", "west": "side" - }, - "id": 3054 + } }, { + "id": 3253, "properties": { "east": "none", "north": "up", "power": "8", "south": "side", "west": "none" - }, - "id": 3055 + } }, { + "id": 3254, "properties": { "east": "none", "north": "up", "power": "8", "south": "none", "west": "up" - }, - "id": 3056 + } }, { + "id": 3255, "properties": { "east": "none", "north": "up", "power": "8", "south": "none", "west": "side" - }, - "id": 3057 + } }, { + "id": 3256, "properties": { "east": "none", "north": "up", "power": "8", "south": "none", "west": "none" - }, - "id": 3058 + } }, { + "id": 3257, "properties": { "east": "none", "north": "up", "power": "9", "south": "up", "west": "up" - }, - "id": 3059 + } }, { + "id": 3258, "properties": { "east": "none", "north": "up", "power": "9", "south": "up", "west": "side" - }, - "id": 3060 + } }, { + "id": 3259, "properties": { "east": "none", "north": "up", "power": "9", "south": "up", "west": "none" - }, - "id": 3061 + } }, { + "id": 3260, "properties": { "east": "none", "north": "up", "power": "9", "south": "side", "west": "up" - }, - "id": 3062 + } }, { + "id": 3261, "properties": { "east": "none", "north": "up", "power": "9", "south": "side", "west": "side" - }, - "id": 3063 + } }, { + "id": 3262, "properties": { "east": "none", "north": "up", "power": "9", "south": "side", "west": "none" - }, - "id": 3064 + } }, { + "id": 3263, "properties": { "east": "none", "north": "up", "power": "9", "south": "none", "west": "up" - }, - "id": 3065 + } }, { + "id": 3264, "properties": { "east": "none", "north": "up", "power": "9", "south": "none", "west": "side" - }, - "id": 3066 + } }, { + "id": 3265, "properties": { "east": "none", "north": "up", "power": "9", "south": "none", "west": "none" - }, - "id": 3067 + } }, { + "id": 3266, "properties": { "east": "none", "north": "up", "power": "10", "south": "up", "west": "up" - }, - "id": 3068 + } }, { + "id": 3267, "properties": { "east": "none", "north": "up", "power": "10", "south": "up", "west": "side" - }, - "id": 3069 + } }, { + "id": 3268, "properties": { "east": "none", "north": "up", "power": "10", "south": "up", "west": "none" - }, - "id": 3070 + } }, { + "id": 3269, "properties": { "east": "none", "north": "up", "power": "10", "south": "side", "west": "up" - }, - "id": 3071 + } }, { + "id": 3270, "properties": { "east": "none", "north": "up", "power": "10", "south": "side", "west": "side" - }, - "id": 3072 + } }, { + "id": 3271, "properties": { "east": "none", "north": "up", "power": "10", "south": "side", "west": "none" - }, - "id": 3073 + } }, { + "id": 3272, "properties": { "east": "none", "north": "up", "power": "10", "south": "none", "west": "up" - }, - "id": 3074 + } }, { + "id": 3273, "properties": { "east": "none", "north": "up", "power": "10", "south": "none", "west": "side" - }, - "id": 3075 + } }, { - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 3076 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 3077 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 3078 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 3079 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 3080 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 3081 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 3082 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 3083 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 3084 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 3085 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 3086 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 3087 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 3088 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 3089 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 3090 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 3091 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 3092 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 3093 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 3094 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 3095 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 3096 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 3097 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 3098 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 3099 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 3100 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 3101 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 3102 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 3103 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 3104 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 3105 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 3106 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 3107 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 3108 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 3109 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 3110 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 3111 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 3112 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 3113 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 3114 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 3115 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 3116 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 3117 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 3118 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 3119 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 3120 - }, - { - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 3121 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 3122 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 3123 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 3124 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 3125 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 3126 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 3127 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 3128 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 3129 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 3130 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 3131 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 3132 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 3133 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 3134 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 3135 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 3136 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 3137 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 3138 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 3139 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 3140 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 3141 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 3142 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 3143 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 3144 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 3145 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 3146 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 3147 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 3148 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 3149 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 3150 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 3151 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 3152 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 3153 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 3154 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 3155 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 3156 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 3157 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 3158 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 3159 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 3160 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 3161 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 3162 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 3163 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 3164 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 3165 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 3166 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 3167 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 3168 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 3169 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 3170 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 3171 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 3172 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 3173 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 3174 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 3175 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 3176 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 3177 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 3178 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 3179 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 3180 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 3181 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 3182 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 3183 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 3184 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 3185 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 3186 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 3187 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 3188 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 3189 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 3190 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 3191 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 3192 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 3193 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 3194 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 3195 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 3196 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 3197 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 3198 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 3199 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 3200 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 3201 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 3202 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 3203 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 3204 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 3205 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 3206 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 3207 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 3208 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 3209 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 3210 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 3211 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 3212 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 3213 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 3214 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 3215 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 3216 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 3217 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 3218 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 3219 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 3220 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 3221 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 3222 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 3223 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 3224 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 3225 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 3226 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 3227 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 3228 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 3229 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 3230 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 3231 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 3232 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 3233 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 3234 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 3235 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 3236 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 3237 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 3238 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 3239 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 3240 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 3241 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 3242 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 3243 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 3244 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 3245 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 3246 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 3247 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 3248 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 3249 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 3250 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 3251 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 3252 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 3253 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 3254 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 3255 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 3256 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 3257 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 3258 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 3259 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 3260 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 3261 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 3262 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 3263 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 3264 - }, - { - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 3265 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 3266 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 3267 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 3268 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 3269 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 3270 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 3271 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 3272 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 3273 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "none" - }, "id": 3274, - "default": true - }, - { "properties": { "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 3275 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 3276 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 3277 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 3278 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 3279 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 3280 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 3281 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 3282 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 3283 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 3284 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 3285 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 3286 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 3287 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 3288 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 3289 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 3290 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 3291 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 3292 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 3293 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 3294 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 3295 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 3296 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 3297 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 3298 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 3299 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 3300 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 3301 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 3302 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 3303 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 3304 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 3305 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 3306 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 3307 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 3308 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 3309 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 3310 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 3311 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 3312 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 3313 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 3314 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 3315 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 3316 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 3317 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 3318 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 3319 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 3320 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 3321 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 3322 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 3323 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 3324 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 3325 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 3326 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 3327 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 3328 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 3329 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 3330 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 3331 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 3332 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 3333 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 3334 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 3335 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 3336 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 3337 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 3338 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 3339 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 3340 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 3341 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 3342 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 3343 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 3344 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 3345 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 3346 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 3347 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 3348 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 3349 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 3350 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 3351 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 3352 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 3353 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 3354 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 3355 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 3356 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 3357 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 3358 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 3359 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 3360 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 3361 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 3362 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 3363 - }, - { - "properties": { - "east": "none", - "north": "none", + "north": "up", "power": "10", "south": "none", "west": "none" - }, - "id": 3364 + } }, { + "id": 3275, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "11", "south": "up", "west": "up" - }, - "id": 3365 + } }, { + "id": 3276, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "11", "south": "up", "west": "side" - }, - "id": 3366 + } }, { + "id": 3277, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "11", "south": "up", "west": "none" - }, - "id": 3367 + } }, { + "id": 3278, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "11", "south": "side", "west": "up" - }, - "id": 3368 + } }, { + "id": 3279, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "11", "south": "side", "west": "side" - }, - "id": 3369 + } }, { + "id": 3280, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "11", "south": "side", "west": "none" - }, - "id": 3370 + } }, { + "id": 3281, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "11", "south": "none", "west": "up" - }, - "id": 3371 + } }, { + "id": 3282, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "11", "south": "none", "west": "side" - }, - "id": 3372 + } }, { + "id": 3283, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "11", "south": "none", "west": "none" - }, - "id": 3373 + } }, { + "id": 3284, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "12", "south": "up", "west": "up" - }, - "id": 3374 + } }, { + "id": 3285, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "12", "south": "up", "west": "side" - }, - "id": 3375 + } }, { + "id": 3286, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "12", "south": "up", "west": "none" - }, - "id": 3376 + } }, { + "id": 3287, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "12", "south": "side", "west": "up" - }, - "id": 3377 + } }, { + "id": 3288, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "12", "south": "side", "west": "side" - }, - "id": 3378 + } }, { + "id": 3289, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "12", "south": "side", "west": "none" - }, - "id": 3379 + } }, { + "id": 3290, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "12", "south": "none", "west": "up" - }, - "id": 3380 + } }, { + "id": 3291, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "12", "south": "none", "west": "side" - }, - "id": 3381 + } }, { + "id": 3292, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "12", "south": "none", "west": "none" - }, - "id": 3382 + } }, { + "id": 3293, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "13", "south": "up", "west": "up" - }, - "id": 3383 + } }, { + "id": 3294, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "13", "south": "up", "west": "side" - }, - "id": 3384 + } }, { + "id": 3295, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "13", "south": "up", "west": "none" - }, - "id": 3385 + } }, { + "id": 3296, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "13", "south": "side", "west": "up" - }, - "id": 3386 + } }, { + "id": 3297, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "13", "south": "side", "west": "side" - }, - "id": 3387 + } }, { + "id": 3298, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "13", "south": "side", "west": "none" - }, - "id": 3388 + } }, { + "id": 3299, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "13", "south": "none", "west": "up" - }, - "id": 3389 + } }, { + "id": 3300, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "13", "south": "none", "west": "side" - }, - "id": 3390 + } }, { + "id": 3301, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "13", "south": "none", "west": "none" - }, - "id": 3391 + } }, { + "id": 3302, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "14", "south": "up", "west": "up" - }, - "id": 3392 + } }, { + "id": 3303, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "14", "south": "up", "west": "side" - }, - "id": 3393 + } }, { + "id": 3304, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "14", "south": "up", "west": "none" - }, - "id": 3394 + } }, { + "id": 3305, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "14", "south": "side", "west": "up" - }, - "id": 3395 + } }, { + "id": 3306, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "14", "south": "side", "west": "side" - }, - "id": 3396 + } }, { + "id": 3307, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "14", "south": "side", "west": "none" - }, - "id": 3397 + } }, { + "id": 3308, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "14", "south": "none", "west": "up" - }, - "id": 3398 + } }, { + "id": 3309, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "14", "south": "none", "west": "side" - }, - "id": 3399 + } }, { + "id": 3310, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "14", "south": "none", "west": "none" - }, - "id": 3400 + } }, { + "id": 3311, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "15", "south": "up", "west": "up" - }, - "id": 3401 + } }, { + "id": 3312, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "15", "south": "up", "west": "side" - }, - "id": 3402 + } }, { + "id": 3313, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "15", "south": "up", "west": "none" - }, - "id": 3403 + } }, { + "id": 3314, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "15", "south": "side", "west": "up" - }, - "id": 3404 + } }, { + "id": 3315, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "15", "south": "side", "west": "side" - }, - "id": 3405 + } }, { + "id": 3316, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "15", "south": "side", "west": "none" - }, - "id": 3406 + } }, { + "id": 3317, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "15", "south": "none", "west": "up" - }, - "id": 3407 + } }, { + "id": 3318, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "15", "south": "none", "west": "side" - }, - "id": 3408 + } }, { + "id": 3319, "properties": { "east": "none", - "north": "none", + "north": "up", "power": "15", "south": "none", "west": "none" - }, - "id": 3409 - } - ] - }, - "minecraft:diamond_ore": { - "states": [ + } + }, + { + "id": 3320, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3321, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3322, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3323, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3324, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3325, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3326, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3327, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3328, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3329, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3330, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3331, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3332, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3333, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3334, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3335, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3336, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3337, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3338, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3339, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3340, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3341, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3342, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3343, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3344, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3345, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3346, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3347, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3348, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3349, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3350, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3351, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3352, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3353, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3354, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3355, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3356, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3357, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3358, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3359, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3360, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3361, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3362, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3363, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3364, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3365, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3366, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3367, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3368, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3369, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3370, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3371, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3372, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3373, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3374, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3375, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3376, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3377, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3378, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3379, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3380, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3381, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3382, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3383, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3384, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3385, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3386, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3387, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3388, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3389, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3390, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3391, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3392, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3393, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3394, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3395, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3396, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3397, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3398, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3399, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3400, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3401, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3402, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3403, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3404, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3405, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3406, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3407, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3408, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3409, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, { "id": 3410, - "default": true - } - ] - }, - "minecraft:deepslate_diamond_ore": { - "states": [ + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, { "id": 3411, - "default": true - } - ] - }, - "minecraft:diamond_block": { - "states": [ + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, { "id": 3412, - "default": true - } - ] - }, - "minecraft:crafting_table": { - "states": [ + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, { "id": 3413, - "default": true - } - ] - }, - "minecraft:wheat": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { "properties": { - "age": "0" - }, + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { "id": 3414, - "default": true + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } }, { + "id": 3415, "properties": { - "age": "1" - }, - "id": 3415 + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } }, { + "id": 3416, "properties": { - "age": "2" - }, - "id": 3416 + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } }, { + "id": 3417, "properties": { - "age": "3" - }, - "id": 3417 + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } }, { + "id": 3418, "properties": { - "age": "4" - }, - "id": 3418 + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } }, { + "id": 3419, "properties": { - "age": "5" - }, - "id": 3419 + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } }, { + "id": 3420, "properties": { - "age": "6" - }, - "id": 3420 + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } }, { + "id": 3421, "properties": { - "age": "7" - }, - "id": 3421 - } - ] - }, - "minecraft:farmland": { - "properties": { - "moisture": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, { - "properties": { - "moisture": "0" - }, "id": 3422, - "default": true + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } }, { + "id": 3423, "properties": { - "moisture": "1" - }, - "id": 3423 + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } }, { + "id": 3424, "properties": { - "moisture": "2" - }, - "id": 3424 + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } }, { + "id": 3425, "properties": { - "moisture": "3" - }, - "id": 3425 + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } }, { + "id": 3426, "properties": { - "moisture": "4" - }, - "id": 3426 + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } }, { + "id": 3427, "properties": { - "moisture": "5" - }, - "id": 3427 + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } }, { + "id": 3428, "properties": { - "moisture": "6" - }, - "id": 3428 + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } }, { + "id": 3429, "properties": { - "moisture": "7" - }, - "id": 3429 - } - ] - }, - "minecraft:furnace": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "lit": "true" - }, - "id": 3430 + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } }, { + "id": 3430, "properties": { - "facing": "north", - "lit": "false" - }, + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { "id": 3431, - "default": true + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } }, { + "id": 3432, "properties": { - "facing": "south", - "lit": "true" - }, - "id": 3432 + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } }, { + "id": 3433, "properties": { - "facing": "south", - "lit": "false" - }, - "id": 3433 + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } }, { + "id": 3434, "properties": { - "facing": "west", - "lit": "true" - }, - "id": 3434 + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } }, { + "id": 3435, "properties": { - "facing": "west", - "lit": "false" - }, - "id": 3435 + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } }, { + "id": 3436, "properties": { - "facing": "east", - "lit": "true" - }, - "id": 3436 + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } }, { + "id": 3437, "properties": { - "facing": "east", - "lit": "false" - }, - "id": 3437 - } - ] - }, - "minecraft:oak_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3438 + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } }, { + "id": 3438, "properties": { - "rotation": "0", - "waterlogged": "false" - }, + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { "id": 3439, - "default": true + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } }, { + "id": 3440, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3440 + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } }, { + "id": 3441, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3441 + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } }, { + "id": 3442, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3442 + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } }, { + "id": 3443, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3443 + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } }, { + "id": 3444, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3444 + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } }, { + "id": 3445, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3445 + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } }, { + "id": 3446, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3446 + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } }, { + "id": 3447, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3447 + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } }, { + "id": 3448, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3448 + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } }, { + "id": 3449, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3449 + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } }, { + "id": 3450, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3450 + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } }, { + "id": 3451, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3451 + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } }, { + "id": 3452, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3452 + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } }, { + "id": 3453, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3453 + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } }, { + "id": 3454, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3454 + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } }, { + "id": 3455, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3455 + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } }, { + "id": 3456, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3456 + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } }, { + "id": 3457, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3457 + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } }, { + "id": 3458, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3458 + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } }, { + "id": 3459, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3459 + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } }, { + "id": 3460, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3460 + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } }, { + "id": 3461, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3461 + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } }, { + "id": 3462, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3462 + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } }, { + "id": 3463, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3463 + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } }, { + "id": 3464, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3464 + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } }, { + "id": 3465, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3465 + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } }, { + "id": 3466, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3466 + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } }, { + "id": 3467, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3467 + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } }, { + "id": 3468, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3468 + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } }, { + "id": 3469, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3469 - } - ] - }, - "minecraft:spruce_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3470 + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } }, { + "id": 3470, "properties": { - "rotation": "0", - "waterlogged": "false" - }, + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { "id": 3471, - "default": true + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } }, { + "default": true, + "id": 3472, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3472 + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } }, { + "id": 3473, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3473 + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } }, { + "id": 3474, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3474 + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } }, { + "id": 3475, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3475 + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } }, { + "id": 3476, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3476 + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } }, { + "id": 3477, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3477 + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } }, { + "id": 3478, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3478 + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } }, { + "id": 3479, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3479 + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } }, { + "id": 3480, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3480 + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } }, { + "id": 3481, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3481 + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } }, { + "id": 3482, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3482 + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } }, { + "id": 3483, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3483 + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } }, { + "id": 3484, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3484 + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } }, { + "id": 3485, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3485 + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } }, { + "id": 3486, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3486 + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } }, { + "id": 3487, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3487 + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } }, { + "id": 3488, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3488 + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } }, { + "id": 3489, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3489 + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } }, { + "id": 3490, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3490 + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } }, { + "id": 3491, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3491 + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } }, { + "id": 3492, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3492 + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } }, { + "id": 3493, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3493 + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } }, { + "id": 3494, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3494 + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } }, { + "id": 3495, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3495 + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } }, { + "id": 3496, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3496 + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } }, { + "id": 3497, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3497 + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } }, { + "id": 3498, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3498 + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } }, { + "id": 3499, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3499 + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } }, { + "id": 3500, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3500 + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } }, { + "id": 3501, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3501 - } - ] - }, - "minecraft:birch_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3502 + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } }, { + "id": 3502, "properties": { - "rotation": "0", - "waterlogged": "false" - }, + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { "id": 3503, - "default": true + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } }, { + "id": 3504, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3504 + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } }, { + "id": 3505, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3505 + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } }, { + "id": 3506, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3506 + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } }, { + "id": 3507, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3507 + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } }, { + "id": 3508, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3508 + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } }, { + "id": 3509, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3509 + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } }, { + "id": 3510, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3510 + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } }, { + "id": 3511, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3511 + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } }, { + "id": 3512, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3512 + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } }, { + "id": 3513, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3513 + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } }, { + "id": 3514, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3514 + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } }, { + "id": 3515, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3515 + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } }, { + "id": 3516, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3516 + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } }, { + "id": 3517, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3517 + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } }, { + "id": 3518, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3518 + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } }, { + "id": 3519, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3519 + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } }, { + "id": 3520, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3520 + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } }, { + "id": 3521, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3521 + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } }, { + "id": 3522, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3522 + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } }, { + "id": 3523, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3523 + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } }, { + "id": 3524, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3524 + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } }, { + "id": 3525, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3525 + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } }, { + "id": 3526, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3526 + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } }, { + "id": 3527, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3527 + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } }, { + "id": 3528, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3528 + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } }, { + "id": 3529, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3529 + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } }, { + "id": 3530, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3530 + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } }, { + "id": 3531, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3531 + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } }, { + "id": 3532, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3532 + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } }, { + "id": 3533, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3533 - } - ] - }, - "minecraft:acacia_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3534 + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } }, { + "id": 3534, "properties": { - "rotation": "0", - "waterlogged": "false" - }, + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { "id": 3535, - "default": true + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } }, { + "id": 3536, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3536 + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } }, { + "id": 3537, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3537 + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } }, { + "id": 3538, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3538 + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } }, { + "id": 3539, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3539 + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } }, { + "id": 3540, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3540 + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } }, { + "id": 3541, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3541 + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } }, { + "id": 3542, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3542 + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } }, { + "id": 3543, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3543 + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } }, { + "id": 3544, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3544 + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } }, { + "id": 3545, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3545 + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } }, { + "id": 3546, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3546 + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } }, { + "id": 3547, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3547 + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } }, { + "id": 3548, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3548 + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } }, { + "id": 3549, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3549 + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } }, { + "id": 3550, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3550 + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } }, { + "id": 3551, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3551 + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } }, { + "id": 3552, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3552 + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } }, { + "id": 3553, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3553 + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } }, { + "id": 3554, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3554 + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } }, { + "id": 3555, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3555 + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } }, { + "id": 3556, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3556 + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } }, { + "id": 3557, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3557 + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } }, { + "id": 3558, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3558 + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } }, { + "id": 3559, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3559 + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } }, { + "id": 3560, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3560 + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } }, { + "id": 3561, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3561 + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } }, { + "id": 3562, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3562 + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } }, { + "id": 3563, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3563 + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } }, { + "id": 3564, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3564 + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } }, { + "id": 3565, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3565 - } - ] - }, - "minecraft:jungle_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3566 + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } }, { + "id": 3566, "properties": { - "rotation": "0", - "waterlogged": "false" - }, + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { "id": 3567, - "default": true + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } }, { + "id": 3568, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3568 + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } }, { + "id": 3569, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3569 + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } }, { + "id": 3570, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3570 + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } }, { + "id": 3571, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3571 + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } }, { + "id": 3572, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3572 + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } }, { + "id": 3573, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3573 + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } }, { + "id": 3574, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3574 + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } }, { + "id": 3575, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3575 + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } }, { + "id": 3576, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3576 + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } }, { + "id": 3577, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3577 + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } }, { + "id": 3578, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3578 + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } }, { + "id": 3579, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3579 + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } }, { + "id": 3580, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3580 + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } }, { + "id": 3581, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3581 + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } }, { + "id": 3582, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3582 + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } }, { + "id": 3583, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3583 + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } }, { + "id": 3584, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3584 + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } }, { + "id": 3585, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3585 + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } }, { + "id": 3586, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3586 + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } }, { + "id": 3587, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3587 + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } }, { + "id": 3588, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3588 + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } }, { + "id": 3589, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3589 + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } }, { + "id": 3590, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3590 + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } }, { + "id": 3591, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3591 + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } }, { + "id": 3592, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3592 + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } }, { + "id": 3593, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3593 + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } }, { + "id": 3594, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3594 + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } }, { + "id": 3595, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3595 + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } }, { + "id": 3596, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3596 + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } }, { + "id": 3597, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3597 - } - ] - }, - "minecraft:dark_oak_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3598 + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } }, { + "id": 3598, "properties": { - "rotation": "0", - "waterlogged": "false" - }, + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { "id": 3599, - "default": true + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } }, { + "id": 3600, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3600 + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } }, { + "id": 3601, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3601 + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } }, { + "id": 3602, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3602 + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } }, { + "id": 3603, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3603 + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } }, { + "id": 3604, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3604 + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } }, { + "id": 3605, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3605 + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } }, { + "id": 3606, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3606 + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } }, { + "id": 3607, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3607 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3608 - }, - { - "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3609 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3610 - }, - { - "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3611 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3612 - }, - { - "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3613 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3614 - }, - { - "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3615 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3616 - }, - { - "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3617 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3618 - }, - { - "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3619 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3620 - }, - { - "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3621 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3622 - }, - { - "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3623 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3624 - }, - { - "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3625 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3626 - }, - { - "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3627 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3628 - }, - { - "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3629 + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } } ] }, - "minecraft:oak_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, + "minecraft:reinforced_deepslate": { "states": [ { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3630 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3631 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3632 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3633 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3634 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3635 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3636 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3637 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3638 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3639 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3640 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3641, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3642 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3643 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3644 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3645 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3646 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3647 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3648 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3649 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3650 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3651 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3652 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3653 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3654 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3655 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3656 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3657 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3658 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3659 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3660 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3661 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3662 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3663 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3664 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3665 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3666 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3667 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3668 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3669 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3670 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3671 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3672 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3673 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3674 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3675 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3676 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3677 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3678 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3679 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3680 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3681 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3682 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3683 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3684 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3685 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3686 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3687 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3688 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3689 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3690 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3691 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3692 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3693 - } - ] - }, - "minecraft:ladder": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3694 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3695, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3696 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3697 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3698 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3699 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3700 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3701 - } - ] - }, - "minecraft:rail": { - "properties": { - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south", - "south_east", - "south_west", - "north_west", - "north_east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "shape": "north_south", - "waterlogged": "true" - }, - "id": 3702 - }, - { - "properties": { - "shape": "north_south", - "waterlogged": "false" - }, - "id": 3703, - "default": true - }, - { - "properties": { - "shape": "east_west", - "waterlogged": "true" - }, - "id": 3704 - }, - { - "properties": { - "shape": "east_west", - "waterlogged": "false" - }, - "id": 3705 - }, - { - "properties": { - "shape": "ascending_east", - "waterlogged": "true" - }, - "id": 3706 - }, - { - "properties": { - "shape": "ascending_east", - "waterlogged": "false" - }, - "id": 3707 - }, - { - "properties": { - "shape": "ascending_west", - "waterlogged": "true" - }, - "id": 3708 - }, - { - "properties": { - "shape": "ascending_west", - "waterlogged": "false" - }, - "id": 3709 - }, - { - "properties": { - "shape": "ascending_north", - "waterlogged": "true" - }, - "id": 3710 - }, - { - "properties": { - "shape": "ascending_north", - "waterlogged": "false" - }, - "id": 3711 - }, - { - "properties": { - "shape": "ascending_south", - "waterlogged": "true" - }, - "id": 3712 - }, - { - "properties": { - "shape": "ascending_south", - "waterlogged": "false" - }, - "id": 3713 - }, - { - "properties": { - "shape": "south_east", - "waterlogged": "true" - }, - "id": 3714 - }, - { - "properties": { - "shape": "south_east", - "waterlogged": "false" - }, - "id": 3715 - }, - { - "properties": { - "shape": "south_west", - "waterlogged": "true" - }, - "id": 3716 - }, - { - "properties": { - "shape": "south_west", - "waterlogged": "false" - }, - "id": 3717 - }, - { - "properties": { - "shape": "north_west", - "waterlogged": "true" - }, - "id": 3718 - }, - { - "properties": { - "shape": "north_west", - "waterlogged": "false" - }, - "id": 3719 - }, - { - "properties": { - "shape": "north_east", - "waterlogged": "true" - }, - "id": 3720 - }, - { - "properties": { - "shape": "north_east", - "waterlogged": "false" - }, - "id": 3721 - } - ] - }, - "minecraft:cobblestone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3722 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3723 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3724 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3725 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3726 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3727 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3728 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3729 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3730 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3731 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3732 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3733, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3734 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3735 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3736 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3737 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3738 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3739 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3740 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3741 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3742 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3743 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3744 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3745 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3746 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3747 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3748 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3749 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3750 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3751 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3752 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3753 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3754 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3755 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3756 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3757 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3758 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3759 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3760 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3761 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3762 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3763 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3764 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3765 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3766 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3767 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3768 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3769 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3770 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3771 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3772 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3773 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3774 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3775 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3776 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3777 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3778 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3779 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3780 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3781 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3782 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3783 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3784 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3785 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3786 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3787 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3788 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3789 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3790 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3791 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3792 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3793 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3794 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3795 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3796 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3797 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3798 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3799 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3800 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3801 - } - ] - }, - "minecraft:oak_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3802 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3803, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3804 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3805 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3806 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3807 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3808 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3809 - } - ] - }, - "minecraft:spruce_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3810 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3811, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3812 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3813 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3814 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3815 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3816 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3817 - } - ] - }, - "minecraft:birch_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3818 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3819, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3820 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3821 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3822 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3823 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3824 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3825 - } - ] - }, - "minecraft:acacia_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3826 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3827, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3828 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3829 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3830 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3831 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3832 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3833 - } - ] - }, - "minecraft:jungle_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3834 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3835, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3836 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3837 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3838 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3839 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3840 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3841 - } - ] - }, - "minecraft:dark_oak_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3842 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3843, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3844 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3845 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3846 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3847 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3848 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3849 - } - ] - }, - "minecraft:lever": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 3850 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 3851 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 3852 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 3853 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 3854 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 3855 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 3856 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 3857 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 3858 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 3859, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 3860 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 3861 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 3862 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 3863 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 3864 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 3865 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 3866 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 3867 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 3868 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 3869 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 3870 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 3871 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 3872 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 3873 - } - ] - }, - "minecraft:stone_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3874 - }, - { - "properties": { - "powered": "false" - }, - "id": 3875, - "default": true - } - ] - }, - "minecraft:iron_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3876 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3877 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3878 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3879 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3880 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3881 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3882 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3883 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3884 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3885 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3886 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3887, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3888 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3889 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3890 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3891 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3892 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3893 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3894 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3895 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3896 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3897 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3898 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3899 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3900 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3901 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3902 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3903 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3904 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3905 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3906 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3907 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3908 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3909 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3910 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3911 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3912 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3913 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3914 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3915 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3916 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3917 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3918 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3919 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3920 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3921 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3922 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3923 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3924 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3925 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3926 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3927 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3928 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3929 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3930 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3931 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3932 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3933 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3934 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3935 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3936 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3937 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3938 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3939 - } - ] - }, - "minecraft:oak_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3940 - }, - { - "properties": { - "powered": "false" - }, - "id": 3941, - "default": true - } - ] - }, - "minecraft:spruce_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3942 - }, - { - "properties": { - "powered": "false" - }, - "id": 3943, - "default": true - } - ] - }, - "minecraft:birch_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3944 - }, - { - "properties": { - "powered": "false" - }, - "id": 3945, - "default": true - } - ] - }, - "minecraft:jungle_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3946 - }, - { - "properties": { - "powered": "false" - }, - "id": 3947, - "default": true - } - ] - }, - "minecraft:acacia_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3948 - }, - { - "properties": { - "powered": "false" - }, - "id": 3949, - "default": true - } - ] - }, - "minecraft:dark_oak_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3950 - }, - { - "properties": { - "powered": "false" - }, - "id": 3951, - "default": true - } - ] - }, - "minecraft:redstone_ore": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 3952 - }, - { - "properties": { - "lit": "false" - }, - "id": 3953, - "default": true - } - ] - }, - "minecraft:deepslate_redstone_ore": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 3954 - }, - { - "properties": { - "lit": "false" - }, - "id": 3955, - "default": true - } - ] - }, - "minecraft:redstone_torch": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 3956, - "default": true - }, - { - "properties": { - "lit": "false" - }, - "id": 3957 - } - ] - }, - "minecraft:redstone_wall_torch": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "lit": "true" - }, - "id": 3958, - "default": true - }, - { - "properties": { - "facing": "north", - "lit": "false" - }, - "id": 3959 - }, - { - "properties": { - "facing": "south", - "lit": "true" - }, - "id": 3960 - }, - { - "properties": { - "facing": "south", - "lit": "false" - }, - "id": 3961 - }, - { - "properties": { - "facing": "west", - "lit": "true" - }, - "id": 3962 - }, - { - "properties": { - "facing": "west", - "lit": "false" - }, - "id": 3963 - }, - { - "properties": { - "facing": "east", - "lit": "true" - }, - "id": 3964 - }, - { - "properties": { - "facing": "east", - "lit": "false" - }, - "id": 3965 - } - ] - }, - "minecraft:stone_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 3966 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 3967 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 3968 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 3969 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 3970 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 3971 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 3972 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 3973 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 3974 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 3975, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 3976 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 3977 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 3978 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 3979 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 3980 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 3981 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 3982 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 3983 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 3984 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 3985 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 3986 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 3987 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 3988 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 3989 - } - ] - }, - "minecraft:snow": { - "properties": { - "layers": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8" - ] - }, - "states": [ - { - "properties": { - "layers": "1" - }, - "id": 3990, - "default": true - }, - { - "properties": { - "layers": "2" - }, - "id": 3991 - }, - { - "properties": { - "layers": "3" - }, - "id": 3992 - }, - { - "properties": { - "layers": "4" - }, - "id": 3993 - }, - { - "properties": { - "layers": "5" - }, - "id": 3994 - }, - { - "properties": { - "layers": "6" - }, - "id": 3995 - }, - { - "properties": { - "layers": "7" - }, - "id": 3996 - }, - { - "properties": { - "layers": "8" - }, - "id": 3997 - } - ] - }, - "minecraft:ice": { - "states": [ - { - "id": 3998, - "default": true - } - ] - }, - "minecraft:snow_block": { - "states": [ - { - "id": 3999, - "default": true - } - ] - }, - "minecraft:cactus": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 4000, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 4001 - }, - { - "properties": { - "age": "2" - }, - "id": 4002 - }, - { - "properties": { - "age": "3" - }, - "id": 4003 - }, - { - "properties": { - "age": "4" - }, - "id": 4004 - }, - { - "properties": { - "age": "5" - }, - "id": 4005 - }, - { - "properties": { - "age": "6" - }, - "id": 4006 - }, - { - "properties": { - "age": "7" - }, - "id": 4007 - }, - { - "properties": { - "age": "8" - }, - "id": 4008 - }, - { - "properties": { - "age": "9" - }, - "id": 4009 - }, - { - "properties": { - "age": "10" - }, - "id": 4010 - }, - { - "properties": { - "age": "11" - }, - "id": 4011 - }, - { - "properties": { - "age": "12" - }, - "id": 4012 - }, - { - "properties": { - "age": "13" - }, - "id": 4013 - }, - { - "properties": { - "age": "14" - }, - "id": 4014 - }, - { - "properties": { - "age": "15" - }, - "id": 4015 - } - ] - }, - "minecraft:clay": { - "states": [ - { - "id": 4016, - "default": true - } - ] - }, - "minecraft:sugar_cane": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 4017, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 4018 - }, - { - "properties": { - "age": "2" - }, - "id": 4019 - }, - { - "properties": { - "age": "3" - }, - "id": 4020 - }, - { - "properties": { - "age": "4" - }, - "id": 4021 - }, - { - "properties": { - "age": "5" - }, - "id": 4022 - }, - { - "properties": { - "age": "6" - }, - "id": 4023 - }, - { - "properties": { - "age": "7" - }, - "id": 4024 - }, - { - "properties": { - "age": "8" - }, - "id": 4025 - }, - { - "properties": { - "age": "9" - }, - "id": 4026 - }, - { - "properties": { - "age": "10" - }, - "id": 4027 - }, - { - "properties": { - "age": "11" - }, - "id": 4028 - }, - { - "properties": { - "age": "12" - }, - "id": 4029 - }, - { - "properties": { - "age": "13" - }, - "id": 4030 - }, - { - "properties": { - "age": "14" - }, - "id": 4031 - }, - { - "properties": { - "age": "15" - }, - "id": 4032 - } - ] - }, - "minecraft:jukebox": { - "properties": { - "has_record": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "has_record": "true" - }, - "id": 4033 - }, - { - "properties": { - "has_record": "false" - }, - "id": 4034, - "default": true - } - ] - }, - "minecraft:oak_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4035 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4036 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4037 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4038 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4039 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4040 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4041 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4042 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4043 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4044 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4045 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4046 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4047 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4048 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4049 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4050 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4051 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4052 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4053 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4054 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4055 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4056 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4057 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4058 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4059 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4060 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4061 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4062 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4063 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4064 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4065 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4066, - "default": true - } - ] - }, - "minecraft:pumpkin": { - "states": [ - { - "id": 4067, - "default": true - } - ] - }, - "minecraft:netherrack": { - "states": [ - { - "id": 4068, - "default": true - } - ] - }, - "minecraft:soul_sand": { - "states": [ - { - "id": 4069, - "default": true - } - ] - }, - "minecraft:soul_soil": { - "states": [ - { - "id": 4070, - "default": true - } - ] - }, - "minecraft:basalt": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 4071 - }, - { - "properties": { - "axis": "y" - }, - "id": 4072, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 4073 - } - ] - }, - "minecraft:polished_basalt": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 4074 - }, - { - "properties": { - "axis": "y" - }, - "id": 4075, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 4076 - } - ] - }, - "minecraft:soul_torch": { - "states": [ - { - "id": 4077, - "default": true - } - ] - }, - "minecraft:soul_wall_torch": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 4078, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 4079 - }, - { - "properties": { - "facing": "west" - }, - "id": 4080 - }, - { - "properties": { - "facing": "east" - }, - "id": 4081 - } - ] - }, - "minecraft:glowstone": { - "states": [ - { - "id": 4082, - "default": true - } - ] - }, - "minecraft:nether_portal": { - "properties": { - "axis": [ - "x", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 4083, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 4084 - } - ] - }, - "minecraft:carved_pumpkin": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 4085, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 4086 - }, - { - "properties": { - "facing": "west" - }, - "id": 4087 - }, - { - "properties": { - "facing": "east" - }, - "id": 4088 - } - ] - }, - "minecraft:jack_o_lantern": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 4089, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 4090 - }, - { - "properties": { - "facing": "west" - }, - "id": 4091 - }, - { - "properties": { - "facing": "east" - }, - "id": 4092 - } - ] - }, - "minecraft:cake": { - "properties": { - "bites": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6" - ] - }, - "states": [ - { - "properties": { - "bites": "0" - }, - "id": 4093, - "default": true - }, - { - "properties": { - "bites": "1" - }, - "id": 4094 - }, - { - "properties": { - "bites": "2" - }, - "id": 4095 - }, - { - "properties": { - "bites": "3" - }, - "id": 4096 - }, - { - "properties": { - "bites": "4" - }, - "id": 4097 - }, - { - "properties": { - "bites": "5" - }, - "id": 4098 - }, - { - "properties": { - "bites": "6" - }, - "id": 4099 + "default": true, + "id": 21447 } ] }, @@ -38639,10224 +180961,784 @@ }, "states": [ { + "id": 4340, "properties": { "delay": "1", "facing": "north", "locked": "true", "powered": "true" - }, - "id": 4100 + } }, { + "id": 4341, "properties": { "delay": "1", "facing": "north", "locked": "true", "powered": "false" - }, - "id": 4101 + } }, { + "id": 4342, "properties": { "delay": "1", "facing": "north", "locked": "false", "powered": "true" - }, - "id": 4102 + } }, { + "default": true, + "id": 4343, "properties": { "delay": "1", "facing": "north", "locked": "false", "powered": "false" - }, - "id": 4103, - "default": true + } }, { + "id": 4344, "properties": { "delay": "1", "facing": "south", "locked": "true", "powered": "true" - }, - "id": 4104 + } }, { + "id": 4345, "properties": { "delay": "1", "facing": "south", "locked": "true", "powered": "false" - }, - "id": 4105 + } }, { + "id": 4346, "properties": { "delay": "1", "facing": "south", "locked": "false", "powered": "true" - }, - "id": 4106 + } }, { + "id": 4347, "properties": { "delay": "1", "facing": "south", "locked": "false", "powered": "false" - }, - "id": 4107 + } }, { + "id": 4348, "properties": { "delay": "1", "facing": "west", "locked": "true", "powered": "true" - }, - "id": 4108 + } }, { + "id": 4349, "properties": { "delay": "1", "facing": "west", "locked": "true", "powered": "false" - }, - "id": 4109 + } }, { + "id": 4350, "properties": { "delay": "1", "facing": "west", "locked": "false", "powered": "true" - }, - "id": 4110 + } }, { + "id": 4351, "properties": { "delay": "1", "facing": "west", "locked": "false", "powered": "false" - }, - "id": 4111 + } }, { + "id": 4352, "properties": { "delay": "1", "facing": "east", "locked": "true", "powered": "true" - }, - "id": 4112 + } }, { + "id": 4353, "properties": { "delay": "1", "facing": "east", "locked": "true", "powered": "false" - }, - "id": 4113 + } }, { + "id": 4354, "properties": { "delay": "1", "facing": "east", "locked": "false", "powered": "true" - }, - "id": 4114 + } }, { + "id": 4355, "properties": { "delay": "1", "facing": "east", "locked": "false", "powered": "false" - }, - "id": 4115 + } }, { + "id": 4356, "properties": { "delay": "2", "facing": "north", "locked": "true", "powered": "true" - }, - "id": 4116 + } }, { + "id": 4357, "properties": { "delay": "2", "facing": "north", "locked": "true", "powered": "false" - }, - "id": 4117 + } }, { + "id": 4358, "properties": { "delay": "2", "facing": "north", "locked": "false", "powered": "true" - }, - "id": 4118 + } }, { + "id": 4359, "properties": { "delay": "2", "facing": "north", "locked": "false", "powered": "false" - }, - "id": 4119 + } }, { + "id": 4360, "properties": { "delay": "2", "facing": "south", "locked": "true", "powered": "true" - }, - "id": 4120 + } }, { + "id": 4361, "properties": { "delay": "2", "facing": "south", "locked": "true", "powered": "false" - }, - "id": 4121 + } }, { + "id": 4362, "properties": { "delay": "2", "facing": "south", "locked": "false", "powered": "true" - }, - "id": 4122 + } }, { + "id": 4363, "properties": { "delay": "2", "facing": "south", "locked": "false", "powered": "false" - }, - "id": 4123 + } }, { + "id": 4364, "properties": { "delay": "2", "facing": "west", "locked": "true", "powered": "true" - }, - "id": 4124 + } }, { + "id": 4365, "properties": { "delay": "2", "facing": "west", "locked": "true", "powered": "false" - }, - "id": 4125 + } }, { + "id": 4366, "properties": { "delay": "2", "facing": "west", "locked": "false", "powered": "true" - }, - "id": 4126 + } }, { + "id": 4367, "properties": { "delay": "2", "facing": "west", "locked": "false", "powered": "false" - }, - "id": 4127 + } }, { + "id": 4368, "properties": { "delay": "2", "facing": "east", "locked": "true", "powered": "true" - }, - "id": 4128 + } }, { + "id": 4369, "properties": { "delay": "2", "facing": "east", "locked": "true", "powered": "false" - }, - "id": 4129 + } }, { + "id": 4370, "properties": { "delay": "2", "facing": "east", "locked": "false", "powered": "true" - }, - "id": 4130 + } }, { + "id": 4371, "properties": { "delay": "2", "facing": "east", "locked": "false", "powered": "false" - }, - "id": 4131 + } }, { + "id": 4372, "properties": { "delay": "3", "facing": "north", "locked": "true", "powered": "true" - }, - "id": 4132 + } }, { + "id": 4373, "properties": { "delay": "3", "facing": "north", "locked": "true", "powered": "false" - }, - "id": 4133 + } }, { + "id": 4374, "properties": { "delay": "3", "facing": "north", "locked": "false", "powered": "true" - }, - "id": 4134 + } }, { + "id": 4375, "properties": { "delay": "3", "facing": "north", "locked": "false", "powered": "false" - }, - "id": 4135 + } }, { + "id": 4376, "properties": { "delay": "3", "facing": "south", "locked": "true", "powered": "true" - }, - "id": 4136 + } }, { + "id": 4377, "properties": { "delay": "3", "facing": "south", "locked": "true", "powered": "false" - }, - "id": 4137 + } }, { + "id": 4378, "properties": { "delay": "3", "facing": "south", "locked": "false", "powered": "true" - }, - "id": 4138 + } }, { + "id": 4379, "properties": { "delay": "3", "facing": "south", "locked": "false", "powered": "false" - }, - "id": 4139 + } }, { + "id": 4380, "properties": { "delay": "3", "facing": "west", "locked": "true", "powered": "true" - }, - "id": 4140 + } }, { + "id": 4381, "properties": { "delay": "3", "facing": "west", "locked": "true", "powered": "false" - }, - "id": 4141 + } }, { + "id": 4382, "properties": { "delay": "3", "facing": "west", "locked": "false", "powered": "true" - }, - "id": 4142 + } }, { + "id": 4383, "properties": { "delay": "3", "facing": "west", "locked": "false", "powered": "false" - }, - "id": 4143 + } }, { + "id": 4384, "properties": { "delay": "3", "facing": "east", "locked": "true", "powered": "true" - }, - "id": 4144 + } }, { + "id": 4385, "properties": { "delay": "3", "facing": "east", "locked": "true", "powered": "false" - }, - "id": 4145 + } }, { + "id": 4386, "properties": { "delay": "3", "facing": "east", "locked": "false", "powered": "true" - }, - "id": 4146 + } }, { - "properties": { - "delay": "3", - "facing": "east", - "locked": "false", - "powered": "false" - }, - "id": 4147 - }, - { - "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "true" - }, - "id": 4148 - }, - { - "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "false" - }, - "id": 4149 - }, - { - "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "true" - }, - "id": 4150 - }, - { - "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "false" - }, - "id": 4151 - }, - { - "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "true" - }, - "id": 4152 - }, - { - "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "false" - }, - "id": 4153 - }, - { - "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "true" - }, - "id": 4154 - }, - { - "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "false" - }, - "id": 4155 - }, - { - "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "true" - }, - "id": 4156 - }, - { - "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "false" - }, - "id": 4157 - }, - { - "properties": { - "delay": "4", - "facing": "west", - "locked": "false", - "powered": "true" - }, - "id": 4158 - }, - { - "properties": { - "delay": "4", - "facing": "west", - "locked": "false", - "powered": "false" - }, - "id": 4159 - }, - { - "properties": { - "delay": "4", - "facing": "east", - "locked": "true", - "powered": "true" - }, - "id": 4160 - }, - { - "properties": { - "delay": "4", - "facing": "east", - "locked": "true", - "powered": "false" - }, - "id": 4161 - }, - { - "properties": { - "delay": "4", - "facing": "east", - "locked": "false", - "powered": "true" - }, - "id": 4162 - }, - { - "properties": { - "delay": "4", - "facing": "east", - "locked": "false", - "powered": "false" - }, - "id": 4163 - } - ] - }, - "minecraft:white_stained_glass": { - "states": [ - { - "id": 4164, - "default": true - } - ] - }, - "minecraft:orange_stained_glass": { - "states": [ - { - "id": 4165, - "default": true - } - ] - }, - "minecraft:magenta_stained_glass": { - "states": [ - { - "id": 4166, - "default": true - } - ] - }, - "minecraft:light_blue_stained_glass": { - "states": [ - { - "id": 4167, - "default": true - } - ] - }, - "minecraft:yellow_stained_glass": { - "states": [ - { - "id": 4168, - "default": true - } - ] - }, - "minecraft:lime_stained_glass": { - "states": [ - { - "id": 4169, - "default": true - } - ] - }, - "minecraft:pink_stained_glass": { - "states": [ - { - "id": 4170, - "default": true - } - ] - }, - "minecraft:gray_stained_glass": { - "states": [ - { - "id": 4171, - "default": true - } - ] - }, - "minecraft:light_gray_stained_glass": { - "states": [ - { - "id": 4172, - "default": true - } - ] - }, - "minecraft:cyan_stained_glass": { - "states": [ - { - "id": 4173, - "default": true - } - ] - }, - "minecraft:purple_stained_glass": { - "states": [ - { - "id": 4174, - "default": true - } - ] - }, - "minecraft:blue_stained_glass": { - "states": [ - { - "id": 4175, - "default": true - } - ] - }, - "minecraft:brown_stained_glass": { - "states": [ - { - "id": 4176, - "default": true - } - ] - }, - "minecraft:green_stained_glass": { - "states": [ - { - "id": 4177, - "default": true - } - ] - }, - "minecraft:red_stained_glass": { - "states": [ - { - "id": 4178, - "default": true - } - ] - }, - "minecraft:black_stained_glass": { - "states": [ - { - "id": 4179, - "default": true - } - ] - }, - "minecraft:oak_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4180 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4181 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4182 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4183 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4184 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4185 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4186 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4187 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4188 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4189 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4190 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4191 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4192 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4193 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4194 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4195, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4196 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4197 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4198 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4199 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4200 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4201 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4202 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4203 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4204 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4205 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4206 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4207 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4208 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4209 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4210 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4211 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4212 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4213 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4214 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4215 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4216 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4217 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4218 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4219 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4220 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4221 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4222 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4223 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4224 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4225 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4226 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4227 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4228 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4229 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4230 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4231 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4232 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4233 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4234 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4235 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4236 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4237 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4238 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4239 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4240 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4241 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4242 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4243 - } - ] - }, - "minecraft:spruce_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4244 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4245 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4246 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4247 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4248 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4249 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4250 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4251 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4252 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4253 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4254 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4255 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4256 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4257 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4258 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4259, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4260 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4261 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4262 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4263 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4264 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4265 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4266 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4267 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4268 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4269 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4270 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4271 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4272 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4273 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4274 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4275 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4276 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4277 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4278 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4279 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4280 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4281 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4282 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4283 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4284 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4285 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4286 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4287 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4288 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4289 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4290 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4291 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4292 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4293 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4294 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4295 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4296 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4297 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4298 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4299 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4300 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4301 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4302 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4303 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4304 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4305 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4306 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4307 - } - ] - }, - "minecraft:birch_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4308 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4309 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4310 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4311 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4312 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4313 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4314 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4315 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4316 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4317 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4318 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4319 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4320 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4321 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4322 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4323, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4324 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4325 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4326 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4327 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4328 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4329 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4330 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4331 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4332 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4333 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4334 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4335 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4336 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4337 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4338 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4339 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4340 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4341 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4342 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4343 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4344 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4345 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4346 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4347 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4348 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4349 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4350 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4351 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4352 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4353 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4354 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4355 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4356 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4357 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4358 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4359 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4360 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4361 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4362 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4363 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4364 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4365 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4366 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4367 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4368 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4369 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4370 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4371 - } - ] - }, - "minecraft:jungle_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4372 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4373 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4374 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4375 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4376 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4377 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4378 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4379 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4380 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4381 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4382 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4383 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4384 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4385 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4386 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, "id": 4387, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4388 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4389 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4390 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4391 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4392 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4393 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4394 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4395 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4396 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4397 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4398 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4399 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4400 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4401 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4402 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4403 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4404 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4405 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4406 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4407 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4408 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4409 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4410 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4411 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4412 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4413 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4414 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4415 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4416 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4417 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4418 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4419 - }, - { "properties": { + "delay": "3", "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4420 + "locked": "false", + "powered": "false" + } }, { + "id": 4388, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4421 + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "true" + } }, { + "id": 4389, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4422 + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "false" + } }, { + "id": 4390, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4423 + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "true" + } }, { + "id": 4391, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4424 + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "false" + } }, { + "id": 4392, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4425 + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "true" + } }, { + "id": 4393, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4426 + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "false" + } }, { + "id": 4394, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4427 + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "true" + } }, { + "id": 4395, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4428 + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "false" + } }, { + "id": 4396, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4429 + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "true" + } }, { + "id": 4397, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4430 + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "false" + } }, { + "id": 4398, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4431 + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "true" + } }, { + "id": 4399, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4432 + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "false" + } }, { + "id": 4400, "properties": { + "delay": "4", "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4433 + "locked": "true", + "powered": "true" + } }, { + "id": 4401, "properties": { + "delay": "4", "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4434 + "locked": "true", + "powered": "false" + } }, { + "id": 4402, "properties": { + "delay": "4", "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4435 + "locked": "false", + "powered": "true" + } + }, + { + "id": 4403, + "properties": { + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "false" + } } ] }, - "minecraft:acacia_trapdoor": { + "minecraft:repeating_command_block": { "properties": { + "conditional": [ + "true", + "false" + ], "facing": [ "north", + "east", "south", "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4436 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4437 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4438 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4439 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4440 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4441 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4442 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4443 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4444 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4445 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4446 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4447 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4448 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4449 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4450 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4451, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4452 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4453 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4454 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4455 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4456 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4457 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4458 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4459 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4460 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4461 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4462 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4463 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4464 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4465 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4466 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4467 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4468 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4469 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4470 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4471 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4472 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4473 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4474 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4475 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4476 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4477 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4478 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4479 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4480 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4481 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4482 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4483 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4484 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4485 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4486 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4487 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4488 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4489 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4490 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4491 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4492 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4493 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4494 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4495 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4496 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4497 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4498 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4499 - } - ] - }, - "minecraft:dark_oak_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4500 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4501 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4502 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4503 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4504 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4505 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4506 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4507 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4508 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4509 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4510 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4511 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4512 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4513 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4514 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4515, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4516 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4517 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4518 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4519 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4520 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4521 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4522 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4523 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4524 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4525 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4526 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4527 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4528 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4529 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4530 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4531 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4532 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4533 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4534 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4535 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4536 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4537 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4538 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4539 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4540 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4541 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4542 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4543 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4544 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4545 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4546 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4547 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4548 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4549 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4550 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4551 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4552 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4553 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4554 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4555 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4556 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4557 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4558 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4559 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4560 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4561 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4562 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4563 - } - ] - }, - "minecraft:stone_bricks": { - "states": [ - { - "id": 4564, - "default": true - } - ] - }, - "minecraft:mossy_stone_bricks": { - "states": [ - { - "id": 4565, - "default": true - } - ] - }, - "minecraft:cracked_stone_bricks": { - "states": [ - { - "id": 4566, - "default": true - } - ] - }, - "minecraft:chiseled_stone_bricks": { - "states": [ - { - "id": 4567, - "default": true - } - ] - }, - "minecraft:infested_stone": { - "states": [ - { - "id": 4568, - "default": true - } - ] - }, - "minecraft:infested_cobblestone": { - "states": [ - { - "id": 4569, - "default": true - } - ] - }, - "minecraft:infested_stone_bricks": { - "states": [ - { - "id": 4570, - "default": true - } - ] - }, - "minecraft:infested_mossy_stone_bricks": { - "states": [ - { - "id": 4571, - "default": true - } - ] - }, - "minecraft:infested_cracked_stone_bricks": { - "states": [ - { - "id": 4572, - "default": true - } - ] - }, - "minecraft:infested_chiseled_stone_bricks": { - "states": [ - { - "id": 4573, - "default": true - } - ] - }, - "minecraft:brown_mushroom_block": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4574, - "default": true - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4575 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4576 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4577 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4578 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4579 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4580 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4581 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4582 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4583 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4584 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4585 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4586 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4587 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4588 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4589 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4590 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4591 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4592 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4593 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4594 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4595 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4596 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4597 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4598 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4599 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4600 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4601 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4602 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4603 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4604 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4605 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4606 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4607 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4608 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4609 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4610 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4611 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4612 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4613 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4614 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4615 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4616 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4617 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4618 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4619 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4620 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4621 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4622 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4623 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4624 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4625 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4626 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4627 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4628 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4629 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4630 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4631 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4632 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4633 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4634 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4635 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4636 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4637 - } - ] - }, - "minecraft:red_mushroom_block": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4638, - "default": true - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4639 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4640 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4641 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4642 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4643 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4644 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4645 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4646 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4647 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4648 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4649 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4650 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4651 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4652 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4653 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4654 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4655 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4656 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4657 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4658 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4659 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4660 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4661 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4662 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4663 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4664 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4665 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4666 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4667 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4668 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4669 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4670 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4671 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4672 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4673 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4674 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4675 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4676 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4677 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4678 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4679 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4680 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4681 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4682 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4683 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4684 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4685 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4686 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4687 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4688 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4689 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4690 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4691 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4692 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4693 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4694 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4695 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4696 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4697 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4698 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4699 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4700 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4701 - } - ] - }, - "minecraft:mushroom_stem": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4702, - "default": true - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4703 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4704 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4705 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4706 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4707 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4708 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4709 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4710 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4711 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4712 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4713 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4714 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4715 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4716 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4717 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4718 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4719 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4720 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4721 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4722 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4723 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4724 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4725 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4726 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4727 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4728 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4729 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4730 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4731 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4732 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4733 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4734 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4735 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4736 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4737 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4738 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4739 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4740 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4741 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4742 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4743 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4744 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4745 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4746 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4747 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4748 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4749 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4750 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4751 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4752 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4753 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4754 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4755 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4756 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4757 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4758 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4759 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4760 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4761 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4762 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4763 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4764 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4765 - } - ] - }, - "minecraft:iron_bars": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4766 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4767 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4768 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4769 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4770 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4771 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4772 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4773 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4774 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4775 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4776 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4777 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4778 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4779 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4780 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4781 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4782 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4783 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4784 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4785 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4786 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4787 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4788 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4789 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4790 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4791 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4792 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4793 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4794 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4795 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4796 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4797, - "default": true - } - ] - }, - "minecraft:chain": { - "properties": { - "axis": [ - "x", - "y", - "z" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "axis": "x", - "waterlogged": "true" - }, - "id": 4798 - }, - { - "properties": { - "axis": "x", - "waterlogged": "false" - }, - "id": 4799 - }, - { - "properties": { - "axis": "y", - "waterlogged": "true" - }, - "id": 4800 - }, - { - "properties": { - "axis": "y", - "waterlogged": "false" - }, - "id": 4801, - "default": true - }, - { - "properties": { - "axis": "z", - "waterlogged": "true" - }, - "id": 4802 - }, - { - "properties": { - "axis": "z", - "waterlogged": "false" - }, - "id": 4803 - } - ] - }, - "minecraft:glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4804 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4805 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4806 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4807 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4808 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4809 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4810 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4811 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4812 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4813 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4814 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4815 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4816 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4817 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4818 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4819 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4820 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4821 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4822 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4823 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4824 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4825 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4826 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4827 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4828 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4829 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4830 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4831 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4832 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4833 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4834 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4835, - "default": true - } - ] - }, - "minecraft:melon": { - "states": [ - { - "id": 4836, - "default": true - } - ] - }, - "minecraft:attached_pumpkin_stem": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "up", + "down" ] }, "states": [ { + "id": 10106, "properties": { + "conditional": "true", "facing": "north" - }, - "id": 4837, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 4838 - }, - { - "properties": { - "facing": "west" - }, - "id": 4839 + } }, { + "id": 10107, "properties": { + "conditional": "true", "facing": "east" - }, - "id": 4840 - } - ] - }, - "minecraft:attached_melon_stem": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + } + }, { + "id": 10108, "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 10109, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 10110, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 10111, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 10112, + "properties": { + "conditional": "false", "facing": "north" - }, - "id": 4841, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 4842 - }, - { - "properties": { - "facing": "west" - }, - "id": 4843 + } }, { + "id": 10113, "properties": { + "conditional": "false", "facing": "east" - }, - "id": 4844 + } + }, + { + "id": 10114, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 10115, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 10116, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 10117, + "properties": { + "conditional": "false", + "facing": "down" + } } ] }, - "minecraft:pumpkin_stem": { + "minecraft:respawn_anchor": { "properties": { - "age": [ + "charges": [ "0", "1", "2", "3", - "4", - "5", - "6", - "7" + "4" ] }, "states": [ { + "default": true, + "id": 17038, "properties": { - "age": "0" - }, - "id": 4845, - "default": true + "charges": "0" + } }, { + "id": 17039, "properties": { - "age": "1" - }, - "id": 4846 + "charges": "1" + } }, { + "id": 17040, "properties": { - "age": "2" - }, - "id": 4847 + "charges": "2" + } }, { + "id": 17041, "properties": { - "age": "3" - }, - "id": 4848 + "charges": "3" + } }, { + "id": 17042, "properties": { - "age": "4" - }, - "id": 4849 - }, - { - "properties": { - "age": "5" - }, - "id": 4850 - }, - { - "properties": { - "age": "6" - }, - "id": 4851 - }, - { - "properties": { - "age": "7" - }, - "id": 4852 + "charges": "4" + } } ] }, - "minecraft:melon_stem": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, + "minecraft:rooted_dirt": { "states": [ { - "properties": { - "age": "0" - }, - "id": 4853, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 4854 - }, - { - "properties": { - "age": "2" - }, - "id": 4855 - }, - { - "properties": { - "age": "3" - }, - "id": 4856 - }, - { - "properties": { - "age": "4" - }, - "id": 4857 - }, - { - "properties": { - "age": "5" - }, - "id": 4858 - }, - { - "properties": { - "age": "6" - }, - "id": 4859 - }, - { - "properties": { - "age": "7" - }, - "id": 4860 + "default": true, + "id": 19776 } ] }, - "minecraft:vine": { + "minecraft:rose_bush": { "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4861 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4862 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4863 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4864 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4865 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4866 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4867 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4868 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4869 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4870 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4871 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4872 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4873 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4874 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4875 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4876 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4877 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4878 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4879 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4880 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4881 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4882 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4883 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4884 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4885 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4886 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4887 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4888 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4889 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4890 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4891 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4892, - "default": true - } - ] - }, - "minecraft:glow_lichen": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4893 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4894 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4895 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4896 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4897 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4898 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4899 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4900 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4901 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4902 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4903 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4904 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4905 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4906 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4907 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4908 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4909 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4910 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4911 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4912 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4913 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4914 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4915 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4916 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4917 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4918 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4919 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4920 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4921 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4922 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4923 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4924 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4925 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4926 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4927 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4928 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4929 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4930 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4931 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4932 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4933 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4934 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4935 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4936 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4937 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4938 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4939 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4940 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4941 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4942 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4943 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4944 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4945 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4946 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4947 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4948 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4949 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4950 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4951 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4952 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4953 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4954 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4955 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4956 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4957 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4958 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4959 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4960 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4961 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4962 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4963 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4964 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4965 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4966 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4967 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4968 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4969 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4970 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4971 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4972 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4973 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4974 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4975 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4976 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4977 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4978 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4979 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4980 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4981 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4982 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4983 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4984 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4985 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4986 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4987 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4988 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4989 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4990 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4991 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4992 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4993 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4994 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4995 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4996 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4997 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4998 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4999 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5000 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5001 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5002 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5003 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5004 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5005 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5006 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5007 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5008 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5009 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5010 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5011 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5012 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5013 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5014 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5015 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5016 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5017 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5018 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5019 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5020, - "default": true - } - ] - }, - "minecraft:oak_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 5021 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 5022 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 5023 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 5024 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 5025 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 5026 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 5027 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 5028, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 5029 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 5030 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 5031 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 5032 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 5033 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 5034 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 5035 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 5036 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 5037 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 5038 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 5039 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 5040 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 5041 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 5042 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 5043 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 5044 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 5045 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 5046 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 5047 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 5048 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 5049 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 5050 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 5051 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 5052 - } - ] - }, - "minecraft:brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 8630, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 8631, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:sand": { + "states": [ + { + "default": true, + "id": 107 + } + ] + }, + "minecraft:sandstone": { + "states": [ + { + "default": true, + "id": 476 + } + ] + }, + "minecraft:sandstone_slab": { + "properties": { + "type": [ "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "bottom", + "double" ], "waterlogged": [ "true", @@ -48865,3033 +181747,47 @@ }, "states": [ { + "id": 9095, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", + "type": "top", "waterlogged": "true" - }, - "id": 5053 + } }, { + "id": 9096, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", + "type": "top", "waterlogged": "false" - }, - "id": 5054 + } }, { + "id": 9097, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", + "type": "bottom", "waterlogged": "true" - }, - "id": 5055 + } }, { + "default": true, + "id": 9098, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", + "type": "bottom", "waterlogged": "false" - }, - "id": 5056 + } }, { + "id": 9099, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", + "type": "double", "waterlogged": "true" - }, - "id": 5057 + } }, { + "id": 9100, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", + "type": "double", "waterlogged": "false" - }, - "id": 5058 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5059 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5060 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5061 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5062 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5063 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5064, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5065 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5066 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5067 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5068 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5069 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5070 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5071 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5072 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5073 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5074 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5075 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5076 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5077 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5078 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5079 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5080 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5081 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5082 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5083 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5084 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5085 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5086 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5087 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5088 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5089 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5090 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5091 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5092 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5093 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5094 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5095 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5096 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5097 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5098 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5099 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5100 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5101 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5102 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5103 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5104 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5105 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5106 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5107 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5108 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5109 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5110 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5111 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5112 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5113 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5114 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5115 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5116 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5117 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5118 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5119 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5120 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5121 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5122 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5123 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5124 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5125 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5126 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5127 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5128 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5129 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5130 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5131 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5132 - } - ] - }, - "minecraft:stone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5133 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5134 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5135 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5136 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5137 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5138 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5139 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5140 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5141 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5142 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5143 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5144, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5145 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5146 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5147 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5148 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5149 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5150 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5151 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5152 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5153 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5154 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5155 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5156 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5157 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5158 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5159 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5160 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5161 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5162 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5163 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5164 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5165 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5166 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5167 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5168 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5169 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5170 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5171 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5172 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5173 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5174 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5175 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5176 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5177 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5178 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5179 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5180 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5181 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5182 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5183 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5184 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5185 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5186 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5187 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5188 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5189 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5190 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5191 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5192 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5193 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5194 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5195 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5196 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5197 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5198 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5199 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5200 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5201 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5202 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5203 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5204 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5205 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5206 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5207 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5208 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5209 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5210 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5211 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5212 - } - ] - }, - "minecraft:mycelium": { - "properties": { - "snowy": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "snowy": "true" - }, - "id": 5213 - }, - { - "properties": { - "snowy": "false" - }, - "id": 5214, - "default": true - } - ] - }, - "minecraft:lily_pad": { - "states": [ - { - "id": 5215, - "default": true - } - ] - }, - "minecraft:nether_bricks": { - "states": [ - { - "id": 5216, - "default": true - } - ] - }, - "minecraft:nether_brick_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5217 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5218 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5219 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5220 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5221 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5222 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5223 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5224 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5225 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5226 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5227 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5228 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5229 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5230 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5231 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5232 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5233 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5234 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5235 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5236 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5237 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5238 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5239 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5240 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5241 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5242 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5243 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5244 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5245 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5246 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5247 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5248, - "default": true - } - ] - }, - "minecraft:nether_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5249 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5250 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5251 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5252 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5253 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5254 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5255 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5256 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5257 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5258 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5259 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5260, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5261 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5262 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5263 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5264 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5265 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5266 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5267 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5268 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5269 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5270 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5271 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5272 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5273 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5274 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5275 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5276 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5277 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5278 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5279 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5280 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5281 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5282 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5283 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5284 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5285 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5286 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5287 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5288 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5289 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5290 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5291 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5292 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5293 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5294 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5295 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5296 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5297 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5298 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5299 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5300 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5301 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5302 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5303 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5304 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5305 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5306 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5307 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5308 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5309 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5310 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5311 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5312 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5313 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5314 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5315 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5316 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5317 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5318 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5319 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5320 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5321 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5322 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5323 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5324 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5325 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5326 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5327 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5328 - } - ] - }, - "minecraft:nether_wart": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 5329, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 5330 - }, - { - "properties": { - "age": "2" - }, - "id": 5331 - }, - { - "properties": { - "age": "3" - }, - "id": 5332 - } - ] - }, - "minecraft:enchanting_table": { - "states": [ - { - "id": 5333, - "default": true - } - ] - }, - "minecraft:brewing_stand": { - "properties": { - "has_bottle_0": [ - "true", - "false" - ], - "has_bottle_1": [ - "true", - "false" - ], - "has_bottle_2": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "true", - "has_bottle_2": "true" - }, - "id": 5334 - }, - { - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "true", - "has_bottle_2": "false" - }, - "id": 5335 - }, - { - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "false", - "has_bottle_2": "true" - }, - "id": 5336 - }, - { - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "false", - "has_bottle_2": "false" - }, - "id": 5337 - }, - { - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "true", - "has_bottle_2": "true" - }, - "id": 5338 - }, - { - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "true", - "has_bottle_2": "false" - }, - "id": 5339 - }, - { - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "false", - "has_bottle_2": "true" - }, - "id": 5340 - }, - { - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "false", - "has_bottle_2": "false" - }, - "id": 5341, - "default": true - } - ] - }, - "minecraft:cauldron": { - "states": [ - { - "id": 5342, - "default": true - } - ] - }, - "minecraft:water_cauldron": { - "properties": { - "level": [ - "1", - "2", - "3" - ] - }, - "states": [ - { - "properties": { - "level": "1" - }, - "id": 5343, - "default": true - }, - { - "properties": { - "level": "2" - }, - "id": 5344 - }, - { - "properties": { - "level": "3" - }, - "id": 5345 - } - ] - }, - "minecraft:lava_cauldron": { - "states": [ - { - "id": 5346, - "default": true - } - ] - }, - "minecraft:powder_snow_cauldron": { - "properties": { - "level": [ - "1", - "2", - "3" - ] - }, - "states": [ - { - "properties": { - "level": "1" - }, - "id": 5347, - "default": true - }, - { - "properties": { - "level": "2" - }, - "id": 5348 - }, - { - "properties": { - "level": "3" - }, - "id": 5349 - } - ] - }, - "minecraft:end_portal": { - "states": [ - { - "id": 5350, - "default": true - } - ] - }, - "minecraft:end_portal_frame": { - "properties": { - "eye": [ - "true", - "false" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "eye": "true", - "facing": "north" - }, - "id": 5351 - }, - { - "properties": { - "eye": "true", - "facing": "south" - }, - "id": 5352 - }, - { - "properties": { - "eye": "true", - "facing": "west" - }, - "id": 5353 - }, - { - "properties": { - "eye": "true", - "facing": "east" - }, - "id": 5354 - }, - { - "properties": { - "eye": "false", - "facing": "north" - }, - "id": 5355, - "default": true - }, - { - "properties": { - "eye": "false", - "facing": "south" - }, - "id": 5356 - }, - { - "properties": { - "eye": "false", - "facing": "west" - }, - "id": 5357 - }, - { - "properties": { - "eye": "false", - "facing": "east" - }, - "id": 5358 - } - ] - }, - "minecraft:end_stone": { - "states": [ - { - "id": 5359, - "default": true - } - ] - }, - "minecraft:dragon_egg": { - "states": [ - { - "id": 5360, - "default": true - } - ] - }, - "minecraft:redstone_lamp": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 5361 - }, - { - "properties": { - "lit": "false" - }, - "id": 5362, - "default": true - } - ] - }, - "minecraft:cocoa": { - "properties": { - "age": [ - "0", - "1", - "2" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "age": "0", - "facing": "north" - }, - "id": 5363, - "default": true - }, - { - "properties": { - "age": "0", - "facing": "south" - }, - "id": 5364 - }, - { - "properties": { - "age": "0", - "facing": "west" - }, - "id": 5365 - }, - { - "properties": { - "age": "0", - "facing": "east" - }, - "id": 5366 - }, - { - "properties": { - "age": "1", - "facing": "north" - }, - "id": 5367 - }, - { - "properties": { - "age": "1", - "facing": "south" - }, - "id": 5368 - }, - { - "properties": { - "age": "1", - "facing": "west" - }, - "id": 5369 - }, - { - "properties": { - "age": "1", - "facing": "east" - }, - "id": 5370 - }, - { - "properties": { - "age": "2", - "facing": "north" - }, - "id": 5371 - }, - { - "properties": { - "age": "2", - "facing": "south" - }, - "id": 5372 - }, - { - "properties": { - "age": "2", - "facing": "west" - }, - "id": 5373 - }, - { - "properties": { - "age": "2", - "facing": "east" - }, - "id": 5374 + } } ] }, @@ -51921,88083 +181817,725 @@ }, "states": [ { + "id": 5761, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 5375 + } }, { + "id": 5762, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 5376 + } }, { + "id": 5763, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5377 + } }, { + "id": 5764, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5378 + } }, { + "id": 5765, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5379 + } }, { + "id": 5766, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5380 + } }, { + "id": 5767, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5381 + } }, { + "id": 5768, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5382 + } }, { + "id": 5769, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5383 + } }, { + "id": 5770, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5384 + } }, { + "id": 5771, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 5385 + } }, { + "default": true, + "id": 5772, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 5386, - "default": true + } }, { + "id": 5773, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5387 + } }, { + "id": 5774, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5388 + } }, { + "id": 5775, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5389 + } }, { + "id": 5776, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5390 + } }, { + "id": 5777, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5391 + } }, { + "id": 5778, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5392 + } }, { + "id": 5779, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5393 + } }, { + "id": 5780, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5394 + } }, { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5395 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5396 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5397 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5398 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5399 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5400 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5401 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5402 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5403 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5404 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5405 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5406 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5407 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5408 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5409 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5410 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5411 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5412 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5413 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5414 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5415 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5416 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5417 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5418 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5419 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5420 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5421 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5422 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5423 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5424 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5425 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5426 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5427 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5428 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5429 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5430 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5431 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5432 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5433 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5434 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5435 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5436 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5437 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5438 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5439 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5440 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5441 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5442 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5443 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5444 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5445 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5446 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5447 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5448 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5449 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5450 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5451 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5452 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5453 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5454 - } - ] - }, - "minecraft:emerald_ore": { - "states": [ - { - "id": 5455, - "default": true - } - ] - }, - "minecraft:deepslate_emerald_ore": { - "states": [ - { - "id": 5456, - "default": true - } - ] - }, - "minecraft:ender_chest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 5457 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 5458, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 5459 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 5460 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 5461 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 5462 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 5463 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 5464 - } - ] - }, - "minecraft:tripwire_hook": { - "properties": { - "attached": [ - "true", - "false" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "attached": "true", - "facing": "north", - "powered": "true" - }, - "id": 5465 - }, - { - "properties": { - "attached": "true", - "facing": "north", - "powered": "false" - }, - "id": 5466 - }, - { - "properties": { - "attached": "true", - "facing": "south", - "powered": "true" - }, - "id": 5467 - }, - { - "properties": { - "attached": "true", - "facing": "south", - "powered": "false" - }, - "id": 5468 - }, - { - "properties": { - "attached": "true", - "facing": "west", - "powered": "true" - }, - "id": 5469 - }, - { - "properties": { - "attached": "true", - "facing": "west", - "powered": "false" - }, - "id": 5470 - }, - { - "properties": { - "attached": "true", - "facing": "east", - "powered": "true" - }, - "id": 5471 - }, - { - "properties": { - "attached": "true", - "facing": "east", - "powered": "false" - }, - "id": 5472 - }, - { - "properties": { - "attached": "false", - "facing": "north", - "powered": "true" - }, - "id": 5473 - }, - { - "properties": { - "attached": "false", - "facing": "north", - "powered": "false" - }, - "id": 5474, - "default": true - }, - { - "properties": { - "attached": "false", - "facing": "south", - "powered": "true" - }, - "id": 5475 - }, - { - "properties": { - "attached": "false", - "facing": "south", - "powered": "false" - }, - "id": 5476 - }, - { - "properties": { - "attached": "false", - "facing": "west", - "powered": "true" - }, - "id": 5477 - }, - { - "properties": { - "attached": "false", - "facing": "west", - "powered": "false" - }, - "id": 5478 - }, - { - "properties": { - "attached": "false", - "facing": "east", - "powered": "true" - }, - "id": 5479 - }, - { - "properties": { - "attached": "false", - "facing": "east", - "powered": "false" - }, - "id": 5480 - } - ] - }, - "minecraft:tripwire": { - "properties": { - "attached": [ - "true", - "false" - ], - "disarmed": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5481 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5482 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5483 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5484 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5485 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5486 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5487 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5488 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5489 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5490 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5491 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5492 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5493 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5494 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5495 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5496 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5497 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5498 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5499 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5500 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5501 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5502 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5503 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5504 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5505 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5506 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5507 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5508 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5509 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5510 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5511 - }, - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5512 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5513 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5514 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5515 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5516 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5517 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5518 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5519 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5520 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5521 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5522 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5523 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5524 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5525 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5526 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5527 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5528 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5529 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5530 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5531 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5532 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5533 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5534 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5535 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5536 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5537 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5538 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5539 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5540 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5541 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5542 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5543 - }, - { - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5544 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5545 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5546 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5547 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5548 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5549 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5550 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5551 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5552 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5553 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5554 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5555 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5556 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5557 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5558 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5559 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5560 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5561 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5562 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5563 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5564 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5565 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5566 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5567 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5568 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5569 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5570 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5571 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5572 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5573 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5574 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5575 - }, - { - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5576 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5577 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5578 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5579 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5580 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5581 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5582 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5583 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5584 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5585 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5586 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5587 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5588 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5589 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5590 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5591 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5592 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5593 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5594 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5595 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5596 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5597 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5598 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5599 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5600 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5601 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5602 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5603 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5604 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5605 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5606 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5607 - }, - { - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5608, - "default": true - } - ] - }, - "minecraft:emerald_block": { - "states": [ - { - "id": 5609, - "default": true - } - ] - }, - "minecraft:spruce_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5610 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5611 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5612 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5613 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5614 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5615 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5616 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5617 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5618 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5619 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5620 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5621, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5622 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5623 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5624 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5625 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5626 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5627 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5628 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5629 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5630 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5631 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5632 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5633 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5634 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5635 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5636 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5637 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5638 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5639 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5640 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5641 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5642 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5643 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5644 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5645 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5646 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5647 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5648 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5649 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5650 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5651 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5652 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5653 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5654 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5655 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5656 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5657 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5658 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5659 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5660 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5661 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5662 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5663 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5664 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5665 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5666 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5667 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5668 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5669 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5670 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5671 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5672 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5673 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5674 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5675 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5676 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5677 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5678 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5679 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5680 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5681 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5682 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5683 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5684 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5685 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5686 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5687 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5688 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5689 - } - ] - }, - "minecraft:birch_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5690 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5691 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5692 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5693 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5694 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5695 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5696 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5697 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5698 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5699 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5700 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5701, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5702 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5703 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5704 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5705 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5706 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5707 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5708 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5709 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5710 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5711 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5712 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5713 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5714 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5715 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5716 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5717 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5718 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5719 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5720 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5721 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5722 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5723 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5724 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5725 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5726 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5727 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5728 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5729 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5730 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5731 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5732 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5733 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5734 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5735 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5736 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5737 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5738 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5739 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5740 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5741 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5742 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5743 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5744 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5745 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5746 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5747 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5748 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5749 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5750 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5751 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5752 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5753 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5754 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5755 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5756 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5757 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5758 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5759 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5760 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5761 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5762 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5763 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5764 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5765 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5766 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5767 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5768 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5769 - } - ] - }, - "minecraft:jungle_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5770 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5771 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5772 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5773 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5774 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5775 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5776 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5777 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5778 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5779 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5780 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, "id": 5781, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5782 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5783 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5784 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5785 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5786 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5787 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5788 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5789 - }, - { "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 5790 + } }, { + "id": 5782, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 5791 + } }, { + "id": 5783, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5792 + } }, { + "id": 5784, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5793 + } }, { + "id": 5785, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5794 + } }, { + "id": 5786, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5795 + } }, { + "id": 5787, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5796 + } }, { + "id": 5788, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5797 + } }, { + "id": 5789, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5798 + } }, { + "id": 5790, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5799 + } }, { + "id": 5791, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 5800 + } }, { + "id": 5792, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 5801 + } }, { + "id": 5793, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5802 + } }, { + "id": 5794, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5803 + } }, { + "id": 5795, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5804 + } }, { + "id": 5796, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5805 + } }, { + "id": 5797, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5806 + } }, { + "id": 5798, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5807 + } }, { + "id": 5799, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5808 + } }, { + "id": 5800, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5809 + } }, { + "id": 5801, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 5810 + } }, { + "id": 5802, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 5811 + } }, { + "id": 5803, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5812 + } }, { + "id": 5804, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5813 + } }, { + "id": 5805, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5814 + } }, { + "id": 5806, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5815 + } }, { + "id": 5807, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5816 + } }, { + "id": 5808, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5817 + } }, { + "id": 5809, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5818 + } }, { + "id": 5810, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5819 + } }, { + "id": 5811, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 5820 + } }, { + "id": 5812, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 5821 + } }, { + "id": 5813, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5822 + } }, { + "id": 5814, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5823 + } }, { + "id": 5815, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5824 + } }, { + "id": 5816, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5825 + } }, { + "id": 5817, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5826 + } }, { + "id": 5818, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5827 + } }, { + "id": 5819, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5828 + } }, { + "id": 5820, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5829 + } }, { + "id": 5821, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 5830 + } }, { + "id": 5822, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 5831 + } }, { + "id": 5823, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5832 + } }, { + "id": 5824, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5833 + } }, { + "id": 5825, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5834 + } }, { + "id": 5826, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5835 + } }, { + "id": 5827, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5836 + } }, { + "id": 5828, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5837 + } }, { + "id": 5829, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5838 + } }, { + "id": 5830, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5839 + } }, { + "id": 5831, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 5840 + } }, { + "id": 5832, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 5841 + } }, { + "id": 5833, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5842 + } }, { + "id": 5834, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5843 + } }, { + "id": 5835, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5844 + } }, { + "id": 5836, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5845 + } }, { + "id": 5837, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5846 + } }, { + "id": 5838, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5847 + } }, { + "id": 5839, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5848 + } }, { + "id": 5840, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5849 - } - ] - }, - "minecraft:command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "conditional": "true", - "facing": "north" - }, - "id": 5850 - }, - { - "properties": { - "conditional": "true", - "facing": "east" - }, - "id": 5851 - }, - { - "properties": { - "conditional": "true", - "facing": "south" - }, - "id": 5852 - }, - { - "properties": { - "conditional": "true", - "facing": "west" - }, - "id": 5853 - }, - { - "properties": { - "conditional": "true", - "facing": "up" - }, - "id": 5854 - }, - { - "properties": { - "conditional": "true", - "facing": "down" - }, - "id": 5855 - }, - { - "properties": { - "conditional": "false", - "facing": "north" - }, - "id": 5856, - "default": true - }, - { - "properties": { - "conditional": "false", - "facing": "east" - }, - "id": 5857 - }, - { - "properties": { - "conditional": "false", - "facing": "south" - }, - "id": 5858 - }, - { - "properties": { - "conditional": "false", - "facing": "west" - }, - "id": 5859 - }, - { - "properties": { - "conditional": "false", - "facing": "up" - }, - "id": 5860 - }, - { - "properties": { - "conditional": "false", - "facing": "down" - }, - "id": 5861 - } - ] - }, - "minecraft:beacon": { - "states": [ - { - "id": 5862, - "default": true - } - ] - }, - "minecraft:cobblestone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5863 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5864 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5865 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5866, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5867 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5868 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5869 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5870 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5871 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5872 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5873 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 5874 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5875 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5876 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5877 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5878 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5879 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5880 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5881 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5882 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5883 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5884 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5885 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 5886 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5887 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5888 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5889 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5890 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5891 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5892 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5893 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5894 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5895 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5896 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5897 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 5898 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5899 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5900 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5901 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5902 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5903 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5904 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5905 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5906 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5907 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5908 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5909 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 5910 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5911 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5912 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5913 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5914 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5915 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5916 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5917 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5918 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5919 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5920 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5921 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 5922 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5923 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5924 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5925 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5926 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5927 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5928 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5929 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5930 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5931 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5932 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5933 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 5934 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5935 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5936 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5937 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5938 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5939 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5940 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5941 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5942 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5943 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5944 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5945 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 5946 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5947 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5948 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5949 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5950 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5951 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5952 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5953 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5954 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5955 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5956 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5957 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 5958 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5959 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5960 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5961 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5962 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5963 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5964 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5965 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5966 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5967 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5968 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5969 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 5970 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5971 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5972 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5973 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5974 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5975 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5976 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5977 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5978 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5979 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5980 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5981 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 5982 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5983 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5984 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5985 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5986 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5987 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5988 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5989 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5990 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5991 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5992 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5993 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 5994 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5995 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5996 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5997 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5998 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5999 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6000 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6001 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6002 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6003 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6004 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6005 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6006 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6007 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6008 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6009 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6010 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6011 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6012 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6013 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6014 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6015 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6016 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6017 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6018 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6019 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6020 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6021 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6022 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6023 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6024 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6025 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6026 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6027 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6028 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6029 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6030 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6031 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6032 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6033 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6034 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6035 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6036 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6037 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6038 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6039 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6040 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6041 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6042 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6043 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6044 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6045 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6046 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6047 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6048 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6049 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6050 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6051 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6052 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6053 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6054 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6055 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6056 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6057 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6058 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6059 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6060 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6061 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6062 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6063 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6064 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6065 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6066 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6067 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6068 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6069 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6070 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6071 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6072 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6073 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6074 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6075 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6076 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6077 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6078 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6079 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6080 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6081 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6082 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6083 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6084 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6085 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6086 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6087 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6088 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6089 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6090 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6091 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6092 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6093 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6094 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6095 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6096 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6097 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6098 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6099 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6100 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6101 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6102 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6103 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6104 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6105 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6106 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6107 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6108 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6109 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6110 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6111 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6112 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6113 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6114 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6115 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6116 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6117 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6118 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6119 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6120 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6121 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6122 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6123 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6124 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6125 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6126 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6127 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6128 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6129 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6130 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6131 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6132 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6133 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6134 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6135 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6136 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6137 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6138 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6139 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6140 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6141 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6142 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6143 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6144 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6145 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6146 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6147 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6148 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6149 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6150 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6151 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6152 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6153 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6154 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6155 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6156 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6157 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6158 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6159 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6160 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6161 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6162 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6163 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6164 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6165 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6166 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6167 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6168 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6169 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6170 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6171 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6172 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6173 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6174 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6175 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6176 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6177 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6178 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6179 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6180 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6181 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6182 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6183 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6184 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6185 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6186 - } - ] - }, - "minecraft:mossy_cobblestone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6187 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6188 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6189 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6190, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6191 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6192 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6193 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6194 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6195 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6196 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6197 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6198 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6199 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6200 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6201 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6202 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6203 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6204 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6205 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6206 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6207 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6208 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6209 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6210 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6211 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6212 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6213 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6214 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6215 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6216 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6217 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6218 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6219 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6220 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6221 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6222 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6223 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6224 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6225 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6226 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6227 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6228 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6229 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6230 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6231 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6232 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6233 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6234 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6235 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6236 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6237 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6238 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6239 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6240 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6241 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6242 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6243 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6244 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6245 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6246 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6247 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6248 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6249 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6250 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6251 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6252 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6253 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6254 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6255 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6256 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6257 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6258 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6259 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6260 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6261 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6262 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6263 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6264 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6265 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6266 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6267 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6268 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6269 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6270 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6271 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6272 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6273 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6274 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6275 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6276 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6277 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6278 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6279 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6280 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6281 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6282 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6283 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6284 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6285 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6286 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6287 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6288 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6289 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6290 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6291 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6292 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6293 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6294 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6295 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6296 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6297 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6298 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6299 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6300 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6301 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6302 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6303 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6304 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6305 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6306 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6307 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6308 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6309 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6310 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6311 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6312 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6313 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6314 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6315 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6316 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6317 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6318 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6319 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6320 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6321 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6322 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6323 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6324 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6325 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6326 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6327 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6328 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6329 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6330 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6331 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6332 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6333 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6334 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6335 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6336 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6337 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6338 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6339 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6340 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6341 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6342 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6343 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6344 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6345 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6346 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6347 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6348 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6349 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6350 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6351 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6352 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6353 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6354 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6355 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6356 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6357 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6358 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6359 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6360 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6361 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6362 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6363 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6364 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6365 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6366 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6367 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6368 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6369 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6370 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6371 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6372 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6373 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6374 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6375 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6376 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6377 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6378 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6379 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6380 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6381 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6382 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6383 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6384 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6385 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6386 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6387 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6388 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6389 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6390 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6391 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6392 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6393 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6394 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6395 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6396 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6397 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6398 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6399 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6400 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6401 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6402 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6403 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6404 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6405 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6406 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6407 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6408 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6409 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6410 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6411 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6412 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6413 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6414 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6415 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6416 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6417 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6418 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6419 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6420 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6421 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6422 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6423 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6424 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6425 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6426 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6427 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6428 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6429 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6430 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6431 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6432 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6433 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6434 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6435 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6436 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6437 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6438 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6439 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6440 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6441 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6442 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6443 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6444 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6445 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6446 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6447 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6448 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6449 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6450 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6451 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6452 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6453 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6454 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6455 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6456 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6457 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6458 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6459 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6460 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6461 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6462 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6463 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6464 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6465 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6466 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6467 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6468 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6469 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6470 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6471 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6472 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6473 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6474 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6475 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6476 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6477 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6478 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6479 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6480 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6481 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6482 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6483 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6484 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6485 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6486 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6487 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6488 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6489 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6490 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6491 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6492 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6493 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6494 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6495 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6496 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6497 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6498 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6499 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6500 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6501 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6502 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6503 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6504 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6505 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6506 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6507 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6508 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6509 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6510 - } - ] - }, - "minecraft:flower_pot": { - "states": [ - { - "id": 6511, - "default": true - } - ] - }, - "minecraft:potted_oak_sapling": { - "states": [ - { - "id": 6512, - "default": true - } - ] - }, - "minecraft:potted_spruce_sapling": { - "states": [ - { - "id": 6513, - "default": true - } - ] - }, - "minecraft:potted_birch_sapling": { - "states": [ - { - "id": 6514, - "default": true - } - ] - }, - "minecraft:potted_jungle_sapling": { - "states": [ - { - "id": 6515, - "default": true - } - ] - }, - "minecraft:potted_acacia_sapling": { - "states": [ - { - "id": 6516, - "default": true - } - ] - }, - "minecraft:potted_dark_oak_sapling": { - "states": [ - { - "id": 6517, - "default": true - } - ] - }, - "minecraft:potted_fern": { - "states": [ - { - "id": 6518, - "default": true - } - ] - }, - "minecraft:potted_dandelion": { - "states": [ - { - "id": 6519, - "default": true - } - ] - }, - "minecraft:potted_poppy": { - "states": [ - { - "id": 6520, - "default": true - } - ] - }, - "minecraft:potted_blue_orchid": { - "states": [ - { - "id": 6521, - "default": true - } - ] - }, - "minecraft:potted_allium": { - "states": [ - { - "id": 6522, - "default": true - } - ] - }, - "minecraft:potted_azure_bluet": { - "states": [ - { - "id": 6523, - "default": true - } - ] - }, - "minecraft:potted_red_tulip": { - "states": [ - { - "id": 6524, - "default": true - } - ] - }, - "minecraft:potted_orange_tulip": { - "states": [ - { - "id": 6525, - "default": true - } - ] - }, - "minecraft:potted_white_tulip": { - "states": [ - { - "id": 6526, - "default": true - } - ] - }, - "minecraft:potted_pink_tulip": { - "states": [ - { - "id": 6527, - "default": true - } - ] - }, - "minecraft:potted_oxeye_daisy": { - "states": [ - { - "id": 6528, - "default": true - } - ] - }, - "minecraft:potted_cornflower": { - "states": [ - { - "id": 6529, - "default": true - } - ] - }, - "minecraft:potted_lily_of_the_valley": { - "states": [ - { - "id": 6530, - "default": true - } - ] - }, - "minecraft:potted_wither_rose": { - "states": [ - { - "id": 6531, - "default": true - } - ] - }, - "minecraft:potted_red_mushroom": { - "states": [ - { - "id": 6532, - "default": true - } - ] - }, - "minecraft:potted_brown_mushroom": { - "states": [ - { - "id": 6533, - "default": true - } - ] - }, - "minecraft:potted_dead_bush": { - "states": [ - { - "id": 6534, - "default": true - } - ] - }, - "minecraft:potted_cactus": { - "states": [ - { - "id": 6535, - "default": true - } - ] - }, - "minecraft:carrots": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 6536, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 6537 - }, - { - "properties": { - "age": "2" - }, - "id": 6538 - }, - { - "properties": { - "age": "3" - }, - "id": 6539 - }, - { - "properties": { - "age": "4" - }, - "id": 6540 - }, - { - "properties": { - "age": "5" - }, - "id": 6541 - }, - { - "properties": { - "age": "6" - }, - "id": 6542 - }, - { - "properties": { - "age": "7" - }, - "id": 6543 - } - ] - }, - "minecraft:potatoes": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 6544, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 6545 - }, - { - "properties": { - "age": "2" - }, - "id": 6546 - }, - { - "properties": { - "age": "3" - }, - "id": 6547 - }, - { - "properties": { - "age": "4" - }, - "id": 6548 - }, - { - "properties": { - "age": "5" - }, - "id": 6549 - }, - { - "properties": { - "age": "6" - }, - "id": 6550 - }, - { - "properties": { - "age": "7" - }, - "id": 6551 - } - ] - }, - "minecraft:oak_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 6552 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 6553 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 6554 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 6555 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 6556 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 6557 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 6558 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 6559 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 6560 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 6561, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 6562 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 6563 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 6564 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 6565 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 6566 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 6567 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 6568 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 6569 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 6570 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 6571 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 6572 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 6573 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 6574 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 6575 - } - ] - }, - "minecraft:spruce_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 6576 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 6577 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 6578 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 6579 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 6580 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 6581 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 6582 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 6583 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 6584 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 6585, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 6586 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 6587 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 6588 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 6589 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 6590 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 6591 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 6592 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 6593 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 6594 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 6595 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 6596 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 6597 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 6598 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 6599 - } - ] - }, - "minecraft:birch_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 6600 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 6601 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 6602 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 6603 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 6604 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 6605 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 6606 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 6607 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 6608 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 6609, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 6610 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 6611 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 6612 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 6613 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 6614 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 6615 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 6616 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 6617 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 6618 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 6619 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 6620 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 6621 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 6622 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 6623 - } - ] - }, - "minecraft:jungle_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 6624 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 6625 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 6626 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 6627 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 6628 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 6629 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 6630 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 6631 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 6632 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 6633, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 6634 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 6635 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 6636 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 6637 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 6638 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 6639 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 6640 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 6641 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 6642 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 6643 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 6644 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 6645 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 6646 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 6647 - } - ] - }, - "minecraft:acacia_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 6648 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 6649 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 6650 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 6651 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 6652 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 6653 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 6654 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 6655 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 6656 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 6657, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 6658 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 6659 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 6660 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 6661 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 6662 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 6663 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 6664 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 6665 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 6666 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 6667 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 6668 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 6669 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 6670 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 6671 - } - ] - }, - "minecraft:dark_oak_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 6672 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 6673 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 6674 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 6675 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 6676 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 6677 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 6678 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 6679 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 6680 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 6681, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 6682 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 6683 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 6684 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 6685 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 6686 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 6687 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 6688 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 6689 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 6690 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 6691 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 6692 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 6693 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 6694 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 6695 - } - ] - }, - "minecraft:skeleton_skull": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 6696, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 6697 - }, - { - "properties": { - "rotation": "2" - }, - "id": 6698 - }, - { - "properties": { - "rotation": "3" - }, - "id": 6699 - }, - { - "properties": { - "rotation": "4" - }, - "id": 6700 - }, - { - "properties": { - "rotation": "5" - }, - "id": 6701 - }, - { - "properties": { - "rotation": "6" - }, - "id": 6702 - }, - { - "properties": { - "rotation": "7" - }, - "id": 6703 - }, - { - "properties": { - "rotation": "8" - }, - "id": 6704 - }, - { - "properties": { - "rotation": "9" - }, - "id": 6705 - }, - { - "properties": { - "rotation": "10" - }, - "id": 6706 - }, - { - "properties": { - "rotation": "11" - }, - "id": 6707 - }, - { - "properties": { - "rotation": "12" - }, - "id": 6708 - }, - { - "properties": { - "rotation": "13" - }, - "id": 6709 - }, - { - "properties": { - "rotation": "14" - }, - "id": 6710 - }, - { - "properties": { - "rotation": "15" - }, - "id": 6711 - } - ] - }, - "minecraft:skeleton_wall_skull": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6712, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6713 - }, - { - "properties": { - "facing": "west" - }, - "id": 6714 - }, - { - "properties": { - "facing": "east" - }, - "id": 6715 - } - ] - }, - "minecraft:wither_skeleton_skull": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 6716, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 6717 - }, - { - "properties": { - "rotation": "2" - }, - "id": 6718 - }, - { - "properties": { - "rotation": "3" - }, - "id": 6719 - }, - { - "properties": { - "rotation": "4" - }, - "id": 6720 - }, - { - "properties": { - "rotation": "5" - }, - "id": 6721 - }, - { - "properties": { - "rotation": "6" - }, - "id": 6722 - }, - { - "properties": { - "rotation": "7" - }, - "id": 6723 - }, - { - "properties": { - "rotation": "8" - }, - "id": 6724 - }, - { - "properties": { - "rotation": "9" - }, - "id": 6725 - }, - { - "properties": { - "rotation": "10" - }, - "id": 6726 - }, - { - "properties": { - "rotation": "11" - }, - "id": 6727 - }, - { - "properties": { - "rotation": "12" - }, - "id": 6728 - }, - { - "properties": { - "rotation": "13" - }, - "id": 6729 - }, - { - "properties": { - "rotation": "14" - }, - "id": 6730 - }, - { - "properties": { - "rotation": "15" - }, - "id": 6731 - } - ] - }, - "minecraft:wither_skeleton_wall_skull": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6732, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6733 - }, - { - "properties": { - "facing": "west" - }, - "id": 6734 - }, - { - "properties": { - "facing": "east" - }, - "id": 6735 - } - ] - }, - "minecraft:zombie_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 6736, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 6737 - }, - { - "properties": { - "rotation": "2" - }, - "id": 6738 - }, - { - "properties": { - "rotation": "3" - }, - "id": 6739 - }, - { - "properties": { - "rotation": "4" - }, - "id": 6740 - }, - { - "properties": { - "rotation": "5" - }, - "id": 6741 - }, - { - "properties": { - "rotation": "6" - }, - "id": 6742 - }, - { - "properties": { - "rotation": "7" - }, - "id": 6743 - }, - { - "properties": { - "rotation": "8" - }, - "id": 6744 - }, - { - "properties": { - "rotation": "9" - }, - "id": 6745 - }, - { - "properties": { - "rotation": "10" - }, - "id": 6746 - }, - { - "properties": { - "rotation": "11" - }, - "id": 6747 - }, - { - "properties": { - "rotation": "12" - }, - "id": 6748 - }, - { - "properties": { - "rotation": "13" - }, - "id": 6749 - }, - { - "properties": { - "rotation": "14" - }, - "id": 6750 - }, - { - "properties": { - "rotation": "15" - }, - "id": 6751 - } - ] - }, - "minecraft:zombie_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6752, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6753 - }, - { - "properties": { - "facing": "west" - }, - "id": 6754 - }, - { - "properties": { - "facing": "east" - }, - "id": 6755 - } - ] - }, - "minecraft:player_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 6756, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 6757 - }, - { - "properties": { - "rotation": "2" - }, - "id": 6758 - }, - { - "properties": { - "rotation": "3" - }, - "id": 6759 - }, - { - "properties": { - "rotation": "4" - }, - "id": 6760 - }, - { - "properties": { - "rotation": "5" - }, - "id": 6761 - }, - { - "properties": { - "rotation": "6" - }, - "id": 6762 - }, - { - "properties": { - "rotation": "7" - }, - "id": 6763 - }, - { - "properties": { - "rotation": "8" - }, - "id": 6764 - }, - { - "properties": { - "rotation": "9" - }, - "id": 6765 - }, - { - "properties": { - "rotation": "10" - }, - "id": 6766 - }, - { - "properties": { - "rotation": "11" - }, - "id": 6767 - }, - { - "properties": { - "rotation": "12" - }, - "id": 6768 - }, - { - "properties": { - "rotation": "13" - }, - "id": 6769 - }, - { - "properties": { - "rotation": "14" - }, - "id": 6770 - }, - { - "properties": { - "rotation": "15" - }, - "id": 6771 - } - ] - }, - "minecraft:player_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6772, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6773 - }, - { - "properties": { - "facing": "west" - }, - "id": 6774 - }, - { - "properties": { - "facing": "east" - }, - "id": 6775 - } - ] - }, - "minecraft:creeper_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 6776, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 6777 - }, - { - "properties": { - "rotation": "2" - }, - "id": 6778 - }, - { - "properties": { - "rotation": "3" - }, - "id": 6779 - }, - { - "properties": { - "rotation": "4" - }, - "id": 6780 - }, - { - "properties": { - "rotation": "5" - }, - "id": 6781 - }, - { - "properties": { - "rotation": "6" - }, - "id": 6782 - }, - { - "properties": { - "rotation": "7" - }, - "id": 6783 - }, - { - "properties": { - "rotation": "8" - }, - "id": 6784 - }, - { - "properties": { - "rotation": "9" - }, - "id": 6785 - }, - { - "properties": { - "rotation": "10" - }, - "id": 6786 - }, - { - "properties": { - "rotation": "11" - }, - "id": 6787 - }, - { - "properties": { - "rotation": "12" - }, - "id": 6788 - }, - { - "properties": { - "rotation": "13" - }, - "id": 6789 - }, - { - "properties": { - "rotation": "14" - }, - "id": 6790 - }, - { - "properties": { - "rotation": "15" - }, - "id": 6791 - } - ] - }, - "minecraft:creeper_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6792, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6793 - }, - { - "properties": { - "facing": "west" - }, - "id": 6794 - }, - { - "properties": { - "facing": "east" - }, - "id": 6795 - } - ] - }, - "minecraft:dragon_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 6796, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 6797 - }, - { - "properties": { - "rotation": "2" - }, - "id": 6798 - }, - { - "properties": { - "rotation": "3" - }, - "id": 6799 - }, - { - "properties": { - "rotation": "4" - }, - "id": 6800 - }, - { - "properties": { - "rotation": "5" - }, - "id": 6801 - }, - { - "properties": { - "rotation": "6" - }, - "id": 6802 - }, - { - "properties": { - "rotation": "7" - }, - "id": 6803 - }, - { - "properties": { - "rotation": "8" - }, - "id": 6804 - }, - { - "properties": { - "rotation": "9" - }, - "id": 6805 - }, - { - "properties": { - "rotation": "10" - }, - "id": 6806 - }, - { - "properties": { - "rotation": "11" - }, - "id": 6807 - }, - { - "properties": { - "rotation": "12" - }, - "id": 6808 - }, - { - "properties": { - "rotation": "13" - }, - "id": 6809 - }, - { - "properties": { - "rotation": "14" - }, - "id": 6810 - }, - { - "properties": { - "rotation": "15" - }, - "id": 6811 - } - ] - }, - "minecraft:dragon_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6812, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6813 - }, - { - "properties": { - "facing": "west" - }, - "id": 6814 - }, - { - "properties": { - "facing": "east" - }, - "id": 6815 - } - ] - }, - "minecraft:anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6816, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6817 - }, - { - "properties": { - "facing": "west" - }, - "id": 6818 - }, - { - "properties": { - "facing": "east" - }, - "id": 6819 - } - ] - }, - "minecraft:chipped_anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6820, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6821 - }, - { - "properties": { - "facing": "west" - }, - "id": 6822 - }, - { - "properties": { - "facing": "east" - }, - "id": 6823 - } - ] - }, - "minecraft:damaged_anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6824, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 6825 - }, - { - "properties": { - "facing": "west" - }, - "id": 6826 - }, - { - "properties": { - "facing": "east" - }, - "id": 6827 - } - ] - }, - "minecraft:trapped_chest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "type": [ - "single", - "left", - "right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "type": "single", - "waterlogged": "true" - }, - "id": 6828 - }, - { - "properties": { - "facing": "north", - "type": "single", - "waterlogged": "false" - }, - "id": 6829, - "default": true - }, - { - "properties": { - "facing": "north", - "type": "left", - "waterlogged": "true" - }, - "id": 6830 - }, - { - "properties": { - "facing": "north", - "type": "left", - "waterlogged": "false" - }, - "id": 6831 - }, - { - "properties": { - "facing": "north", - "type": "right", - "waterlogged": "true" - }, - "id": 6832 - }, - { - "properties": { - "facing": "north", - "type": "right", - "waterlogged": "false" - }, - "id": 6833 - }, - { - "properties": { - "facing": "south", - "type": "single", - "waterlogged": "true" - }, - "id": 6834 - }, - { - "properties": { - "facing": "south", - "type": "single", - "waterlogged": "false" - }, - "id": 6835 - }, - { - "properties": { - "facing": "south", - "type": "left", - "waterlogged": "true" - }, - "id": 6836 - }, - { - "properties": { - "facing": "south", - "type": "left", - "waterlogged": "false" - }, - "id": 6837 - }, - { - "properties": { - "facing": "south", - "type": "right", - "waterlogged": "true" - }, - "id": 6838 - }, - { - "properties": { - "facing": "south", - "type": "right", - "waterlogged": "false" - }, - "id": 6839 - }, - { - "properties": { - "facing": "west", - "type": "single", - "waterlogged": "true" - }, - "id": 6840 - }, - { - "properties": { - "facing": "west", - "type": "single", - "waterlogged": "false" - }, - "id": 6841 - }, - { - "properties": { - "facing": "west", - "type": "left", - "waterlogged": "true" - }, - "id": 6842 - }, - { - "properties": { - "facing": "west", - "type": "left", - "waterlogged": "false" - }, - "id": 6843 - }, - { - "properties": { - "facing": "west", - "type": "right", - "waterlogged": "true" - }, - "id": 6844 - }, - { - "properties": { - "facing": "west", - "type": "right", - "waterlogged": "false" - }, - "id": 6845 - }, - { - "properties": { - "facing": "east", - "type": "single", - "waterlogged": "true" - }, - "id": 6846 - }, - { - "properties": { - "facing": "east", - "type": "single", - "waterlogged": "false" - }, - "id": 6847 - }, - { - "properties": { - "facing": "east", - "type": "left", - "waterlogged": "true" - }, - "id": 6848 - }, - { - "properties": { - "facing": "east", - "type": "left", - "waterlogged": "false" - }, - "id": 6849 - }, - { - "properties": { - "facing": "east", - "type": "right", - "waterlogged": "true" - }, - "id": 6850 - }, - { - "properties": { - "facing": "east", - "type": "right", - "waterlogged": "false" - }, - "id": 6851 - } - ] - }, - "minecraft:light_weighted_pressure_plate": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "power": "0" - }, - "id": 6852, - "default": true - }, - { - "properties": { - "power": "1" - }, - "id": 6853 - }, - { - "properties": { - "power": "2" - }, - "id": 6854 - }, - { - "properties": { - "power": "3" - }, - "id": 6855 - }, - { - "properties": { - "power": "4" - }, - "id": 6856 - }, - { - "properties": { - "power": "5" - }, - "id": 6857 - }, - { - "properties": { - "power": "6" - }, - "id": 6858 - }, - { - "properties": { - "power": "7" - }, - "id": 6859 - }, - { - "properties": { - "power": "8" - }, - "id": 6860 - }, - { - "properties": { - "power": "9" - }, - "id": 6861 - }, - { - "properties": { - "power": "10" - }, - "id": 6862 - }, - { - "properties": { - "power": "11" - }, - "id": 6863 - }, - { - "properties": { - "power": "12" - }, - "id": 6864 - }, - { - "properties": { - "power": "13" - }, - "id": 6865 - }, - { - "properties": { - "power": "14" - }, - "id": 6866 - }, - { - "properties": { - "power": "15" - }, - "id": 6867 - } - ] - }, - "minecraft:heavy_weighted_pressure_plate": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "power": "0" - }, - "id": 6868, - "default": true - }, - { - "properties": { - "power": "1" - }, - "id": 6869 - }, - { - "properties": { - "power": "2" - }, - "id": 6870 - }, - { - "properties": { - "power": "3" - }, - "id": 6871 - }, - { - "properties": { - "power": "4" - }, - "id": 6872 - }, - { - "properties": { - "power": "5" - }, - "id": 6873 - }, - { - "properties": { - "power": "6" - }, - "id": 6874 - }, - { - "properties": { - "power": "7" - }, - "id": 6875 - }, - { - "properties": { - "power": "8" - }, - "id": 6876 - }, - { - "properties": { - "power": "9" - }, - "id": 6877 - }, - { - "properties": { - "power": "10" - }, - "id": 6878 - }, - { - "properties": { - "power": "11" - }, - "id": 6879 - }, - { - "properties": { - "power": "12" - }, - "id": 6880 - }, - { - "properties": { - "power": "13" - }, - "id": 6881 - }, - { - "properties": { - "power": "14" - }, - "id": 6882 - }, - { - "properties": { - "power": "15" - }, - "id": 6883 - } - ] - }, - "minecraft:comparator": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "mode": [ - "compare", - "subtract" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "mode": "compare", - "powered": "true" - }, - "id": 6884 - }, - { - "properties": { - "facing": "north", - "mode": "compare", - "powered": "false" - }, - "id": 6885, - "default": true - }, - { - "properties": { - "facing": "north", - "mode": "subtract", - "powered": "true" - }, - "id": 6886 - }, - { - "properties": { - "facing": "north", - "mode": "subtract", - "powered": "false" - }, - "id": 6887 - }, - { - "properties": { - "facing": "south", - "mode": "compare", - "powered": "true" - }, - "id": 6888 - }, - { - "properties": { - "facing": "south", - "mode": "compare", - "powered": "false" - }, - "id": 6889 - }, - { - "properties": { - "facing": "south", - "mode": "subtract", - "powered": "true" - }, - "id": 6890 - }, - { - "properties": { - "facing": "south", - "mode": "subtract", - "powered": "false" - }, - "id": 6891 - }, - { - "properties": { - "facing": "west", - "mode": "compare", - "powered": "true" - }, - "id": 6892 - }, - { - "properties": { - "facing": "west", - "mode": "compare", - "powered": "false" - }, - "id": 6893 - }, - { - "properties": { - "facing": "west", - "mode": "subtract", - "powered": "true" - }, - "id": 6894 - }, - { - "properties": { - "facing": "west", - "mode": "subtract", - "powered": "false" - }, - "id": 6895 - }, - { - "properties": { - "facing": "east", - "mode": "compare", - "powered": "true" - }, - "id": 6896 - }, - { - "properties": { - "facing": "east", - "mode": "compare", - "powered": "false" - }, - "id": 6897 - }, - { - "properties": { - "facing": "east", - "mode": "subtract", - "powered": "true" - }, - "id": 6898 - }, - { - "properties": { - "facing": "east", - "mode": "subtract", - "powered": "false" - }, - "id": 6899 - } - ] - }, - "minecraft:daylight_detector": { - "properties": { - "inverted": [ - "true", - "false" - ], - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "inverted": "true", - "power": "0" - }, - "id": 6900 - }, - { - "properties": { - "inverted": "true", - "power": "1" - }, - "id": 6901 - }, - { - "properties": { - "inverted": "true", - "power": "2" - }, - "id": 6902 - }, - { - "properties": { - "inverted": "true", - "power": "3" - }, - "id": 6903 - }, - { - "properties": { - "inverted": "true", - "power": "4" - }, - "id": 6904 - }, - { - "properties": { - "inverted": "true", - "power": "5" - }, - "id": 6905 - }, - { - "properties": { - "inverted": "true", - "power": "6" - }, - "id": 6906 - }, - { - "properties": { - "inverted": "true", - "power": "7" - }, - "id": 6907 - }, - { - "properties": { - "inverted": "true", - "power": "8" - }, - "id": 6908 - }, - { - "properties": { - "inverted": "true", - "power": "9" - }, - "id": 6909 - }, - { - "properties": { - "inverted": "true", - "power": "10" - }, - "id": 6910 - }, - { - "properties": { - "inverted": "true", - "power": "11" - }, - "id": 6911 - }, - { - "properties": { - "inverted": "true", - "power": "12" - }, - "id": 6912 - }, - { - "properties": { - "inverted": "true", - "power": "13" - }, - "id": 6913 - }, - { - "properties": { - "inverted": "true", - "power": "14" - }, - "id": 6914 - }, - { - "properties": { - "inverted": "true", - "power": "15" - }, - "id": 6915 - }, - { - "properties": { - "inverted": "false", - "power": "0" - }, - "id": 6916, - "default": true - }, - { - "properties": { - "inverted": "false", - "power": "1" - }, - "id": 6917 - }, - { - "properties": { - "inverted": "false", - "power": "2" - }, - "id": 6918 - }, - { - "properties": { - "inverted": "false", - "power": "3" - }, - "id": 6919 - }, - { - "properties": { - "inverted": "false", - "power": "4" - }, - "id": 6920 - }, - { - "properties": { - "inverted": "false", - "power": "5" - }, - "id": 6921 - }, - { - "properties": { - "inverted": "false", - "power": "6" - }, - "id": 6922 - }, - { - "properties": { - "inverted": "false", - "power": "7" - }, - "id": 6923 - }, - { - "properties": { - "inverted": "false", - "power": "8" - }, - "id": 6924 - }, - { - "properties": { - "inverted": "false", - "power": "9" - }, - "id": 6925 - }, - { - "properties": { - "inverted": "false", - "power": "10" - }, - "id": 6926 - }, - { - "properties": { - "inverted": "false", - "power": "11" - }, - "id": 6927 - }, - { - "properties": { - "inverted": "false", - "power": "12" - }, - "id": 6928 - }, - { - "properties": { - "inverted": "false", - "power": "13" - }, - "id": 6929 - }, - { - "properties": { - "inverted": "false", - "power": "14" - }, - "id": 6930 - }, - { - "properties": { - "inverted": "false", - "power": "15" - }, - "id": 6931 - } - ] - }, - "minecraft:redstone_block": { - "states": [ - { - "id": 6932, - "default": true - } - ] - }, - "minecraft:nether_quartz_ore": { - "states": [ - { - "id": 6933, - "default": true - } - ] - }, - "minecraft:hopper": { - "properties": { - "enabled": [ - "true", - "false" - ], - "facing": [ - "down", - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "enabled": "true", - "facing": "down" - }, - "id": 6934, - "default": true - }, - { - "properties": { - "enabled": "true", - "facing": "north" - }, - "id": 6935 - }, - { - "properties": { - "enabled": "true", - "facing": "south" - }, - "id": 6936 - }, - { - "properties": { - "enabled": "true", - "facing": "west" - }, - "id": 6937 - }, - { - "properties": { - "enabled": "true", - "facing": "east" - }, - "id": 6938 - }, - { - "properties": { - "enabled": "false", - "facing": "down" - }, - "id": 6939 - }, - { - "properties": { - "enabled": "false", - "facing": "north" - }, - "id": 6940 - }, - { - "properties": { - "enabled": "false", - "facing": "south" - }, - "id": 6941 - }, - { - "properties": { - "enabled": "false", - "facing": "west" - }, - "id": 6942 - }, - { - "properties": { - "enabled": "false", - "facing": "east" - }, - "id": 6943 - } - ] - }, - "minecraft:quartz_block": { - "states": [ - { - "id": 6944, - "default": true - } - ] - }, - "minecraft:chiseled_quartz_block": { - "states": [ - { - "id": 6945, - "default": true - } - ] - }, - "minecraft:quartz_pillar": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 6946 - }, - { - "properties": { - "axis": "y" - }, - "id": 6947, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 6948 - } - ] - }, - "minecraft:quartz_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6949 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6950 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6951 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6952 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6953 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6954 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6955 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6956 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6957 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6958 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6959 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6960, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6961 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6962 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6963 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6964 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6965 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6966 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6967 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6968 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6969 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6970 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6971 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6972 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6973 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6974 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6975 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6976 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6977 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6978 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6979 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6980 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6981 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6982 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6983 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6984 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6985 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6986 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6987 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6988 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6989 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6990 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6991 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6992 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6993 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6994 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6995 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6996 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6997 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6998 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6999 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7000 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7001 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7002 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7003 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7004 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7005 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7006 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7007 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7008 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7009 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7010 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7011 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7012 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7013 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7014 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7015 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7016 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7017 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7018 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7019 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7020 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7021 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7022 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7023 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7024 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7025 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7026 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7027 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7028 - } - ] - }, - "minecraft:activator_rail": { - "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "true" - }, - "id": 7029 - }, - { - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "false" - }, - "id": 7030 - }, - { - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "true" - }, - "id": 7031 - }, - { - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "false" - }, - "id": 7032 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "true" - }, - "id": 7033 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "false" - }, - "id": 7034 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "true" - }, - "id": 7035 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "false" - }, - "id": 7036 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "true" - }, - "id": 7037 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "false" - }, - "id": 7038 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "true" - }, - "id": 7039 - }, - { - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "false" - }, - "id": 7040 - }, - { - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "true" - }, - "id": 7041 - }, - { - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "false" - }, - "id": 7042, - "default": true - }, - { - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "true" - }, - "id": 7043 - }, - { - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "false" - }, - "id": 7044 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "true" - }, - "id": 7045 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "false" - }, - "id": 7046 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "true" - }, - "id": 7047 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "false" - }, - "id": 7048 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "true" - }, - "id": 7049 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "false" - }, - "id": 7050 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "true" - }, - "id": 7051 - }, - { - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "false" - }, - "id": 7052 - } - ] - }, - "minecraft:dropper": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "triggered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "triggered": "true" - }, - "id": 7053 - }, - { - "properties": { - "facing": "north", - "triggered": "false" - }, - "id": 7054, - "default": true - }, - { - "properties": { - "facing": "east", - "triggered": "true" - }, - "id": 7055 - }, - { - "properties": { - "facing": "east", - "triggered": "false" - }, - "id": 7056 - }, - { - "properties": { - "facing": "south", - "triggered": "true" - }, - "id": 7057 - }, - { - "properties": { - "facing": "south", - "triggered": "false" - }, - "id": 7058 - }, - { - "properties": { - "facing": "west", - "triggered": "true" - }, - "id": 7059 - }, - { - "properties": { - "facing": "west", - "triggered": "false" - }, - "id": 7060 - }, - { - "properties": { - "facing": "up", - "triggered": "true" - }, - "id": 7061 - }, - { - "properties": { - "facing": "up", - "triggered": "false" - }, - "id": 7062 - }, - { - "properties": { - "facing": "down", - "triggered": "true" - }, - "id": 7063 - }, - { - "properties": { - "facing": "down", - "triggered": "false" - }, - "id": 7064 - } - ] - }, - "minecraft:white_terracotta": { - "states": [ - { - "id": 7065, - "default": true - } - ] - }, - "minecraft:orange_terracotta": { - "states": [ - { - "id": 7066, - "default": true - } - ] - }, - "minecraft:magenta_terracotta": { - "states": [ - { - "id": 7067, - "default": true - } - ] - }, - "minecraft:light_blue_terracotta": { - "states": [ - { - "id": 7068, - "default": true - } - ] - }, - "minecraft:yellow_terracotta": { - "states": [ - { - "id": 7069, - "default": true - } - ] - }, - "minecraft:lime_terracotta": { - "states": [ - { - "id": 7070, - "default": true - } - ] - }, - "minecraft:pink_terracotta": { - "states": [ - { - "id": 7071, - "default": true - } - ] - }, - "minecraft:gray_terracotta": { - "states": [ - { - "id": 7072, - "default": true - } - ] - }, - "minecraft:light_gray_terracotta": { - "states": [ - { - "id": 7073, - "default": true - } - ] - }, - "minecraft:cyan_terracotta": { - "states": [ - { - "id": 7074, - "default": true - } - ] - }, - "minecraft:purple_terracotta": { - "states": [ - { - "id": 7075, - "default": true - } - ] - }, - "minecraft:blue_terracotta": { - "states": [ - { - "id": 7076, - "default": true - } - ] - }, - "minecraft:brown_terracotta": { - "states": [ - { - "id": 7077, - "default": true - } - ] - }, - "minecraft:green_terracotta": { - "states": [ - { - "id": 7078, - "default": true - } - ] - }, - "minecraft:red_terracotta": { - "states": [ - { - "id": 7079, - "default": true - } - ] - }, - "minecraft:black_terracotta": { - "states": [ - { - "id": 7080, - "default": true - } - ] - }, - "minecraft:white_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7081 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7082 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7083 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7084 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7085 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7086 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7087 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7088 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7089 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7090 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7091 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7092 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7093 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7094 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7095 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7096 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7097 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7098 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7099 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7100 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7101 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7102 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7103 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7104 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7105 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7106 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7107 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7108 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7109 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7110 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7111 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7112, - "default": true - } - ] - }, - "minecraft:orange_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7113 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7114 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7115 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7116 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7117 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7118 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7119 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7120 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7121 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7122 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7123 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7124 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7125 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7126 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7127 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7128 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7129 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7130 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7131 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7132 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7133 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7134 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7135 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7136 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7137 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7138 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7139 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7140 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7141 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7142 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7143 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7144, - "default": true - } - ] - }, - "minecraft:magenta_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7145 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7146 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7147 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7148 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7149 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7150 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7151 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7152 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7153 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7154 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7155 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7156 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7157 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7158 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7159 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7160 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7161 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7162 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7163 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7164 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7165 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7166 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7167 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7168 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7169 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7170 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7171 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7172 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7173 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7174 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7175 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7176, - "default": true - } - ] - }, - "minecraft:light_blue_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7177 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7178 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7179 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7180 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7181 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7182 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7183 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7184 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7185 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7186 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7187 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7188 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7189 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7190 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7191 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7192 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7193 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7194 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7195 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7196 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7197 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7198 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7199 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7200 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7201 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7202 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7203 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7204 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7205 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7206 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7207 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7208, - "default": true - } - ] - }, - "minecraft:yellow_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7209 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7210 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7211 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7212 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7213 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7214 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7215 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7216 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7217 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7218 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7219 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7220 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7221 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7222 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7223 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7224 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7225 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7226 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7227 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7228 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7229 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7230 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7231 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7232 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7233 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7234 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7235 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7236 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7237 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7238 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7239 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7240, - "default": true - } - ] - }, - "minecraft:lime_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7241 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7242 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7243 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7244 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7245 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7246 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7247 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7248 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7249 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7250 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7251 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7252 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7253 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7254 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7255 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7256 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7257 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7258 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7259 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7260 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7261 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7262 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7263 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7264 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7265 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7266 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7267 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7268 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7269 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7270 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7271 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7272, - "default": true - } - ] - }, - "minecraft:pink_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7273 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7274 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7275 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7276 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7277 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7278 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7279 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7280 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7281 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7282 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7283 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7284 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7285 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7286 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7287 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7288 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7289 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7290 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7291 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7292 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7293 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7294 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7295 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7296 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7297 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7298 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7299 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7300 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7301 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7302 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7303 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7304, - "default": true - } - ] - }, - "minecraft:gray_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7305 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7306 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7307 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7308 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7309 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7310 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7311 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7312 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7313 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7314 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7315 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7316 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7317 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7318 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7319 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7320 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7321 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7322 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7323 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7324 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7325 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7326 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7327 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7328 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7329 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7330 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7331 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7332 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7333 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7334 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7335 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7336, - "default": true - } - ] - }, - "minecraft:light_gray_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7337 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7338 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7339 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7340 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7341 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7342 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7343 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7344 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7345 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7346 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7347 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7348 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7349 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7350 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7351 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7352 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7353 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7354 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7355 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7356 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7357 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7358 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7359 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7360 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7361 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7362 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7363 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7364 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7365 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7366 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7367 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7368, - "default": true - } - ] - }, - "minecraft:cyan_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7369 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7370 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7371 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7372 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7373 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7374 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7375 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7376 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7377 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7378 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7379 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7380 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7381 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7382 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7383 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7384 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7385 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7386 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7387 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7388 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7389 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7390 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7391 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7392 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7393 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7394 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7395 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7396 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7397 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7398 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7399 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7400, - "default": true - } - ] - }, - "minecraft:purple_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7401 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7402 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7403 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7404 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7405 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7406 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7407 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7408 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7409 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7410 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7411 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7412 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7413 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7414 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7415 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7416 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7417 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7418 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7419 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7420 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7421 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7422 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7423 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7424 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7425 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7426 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7427 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7428 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7429 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7430 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7431 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7432, - "default": true - } - ] - }, - "minecraft:blue_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7433 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7434 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7435 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7436 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7437 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7438 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7439 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7440 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7441 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7442 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7443 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7444 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7445 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7446 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7447 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7448 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7449 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7450 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7451 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7452 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7453 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7454 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7455 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7456 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7457 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7458 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7459 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7460 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7461 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7462 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7463 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7464, - "default": true - } - ] - }, - "minecraft:brown_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7465 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7466 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7467 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7468 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7469 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7470 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7471 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7472 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7473 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7474 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7475 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7476 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7477 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7478 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7479 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7480 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7481 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7482 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7483 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7484 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7485 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7486 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7487 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7488 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7489 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7490 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7491 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7492 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7493 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7494 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7495 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7496, - "default": true - } - ] - }, - "minecraft:green_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7497 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7498 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7499 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7500 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7501 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7502 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7503 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7504 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7505 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7506 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7507 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7508 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7509 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7510 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7511 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7512 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7513 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7514 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7515 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7516 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7517 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7518 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7519 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7520 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7521 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7522 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7523 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7524 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7525 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7526 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7527 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7528, - "default": true - } - ] - }, - "minecraft:red_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7529 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7530 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7531 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7532 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7533 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7534 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7535 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7536 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7537 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7538 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7539 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7540 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7541 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7542 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7543 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7544 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7545 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7546 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7547 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7548 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7549 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7550 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7551 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7552 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7553 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7554 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7555 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7556 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7557 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7558 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7559 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7560, - "default": true - } - ] - }, - "minecraft:black_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7561 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7562 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7563 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7564 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7565 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7566 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7567 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7568 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7569 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7570 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7571 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7572 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7573 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7574 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7575 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7576 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7577 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7578 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7579 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7580 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7581 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7582 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7583 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7584 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7585 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7586 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7587 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7588 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7589 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7590 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7591 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7592, - "default": true - } - ] - }, - "minecraft:acacia_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7593 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7594 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7595 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7596 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7597 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7598 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7599 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7600 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7601 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7602 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7603 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7604, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7605 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7606 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7607 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7608 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7609 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7610 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7611 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7612 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7613 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7614 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7615 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7616 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7617 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7618 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7619 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7620 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7621 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7622 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7623 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7624 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7625 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7626 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7627 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7628 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7629 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7630 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7631 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7632 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7633 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7634 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7635 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7636 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7637 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7638 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7639 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7640 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7641 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7642 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7643 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7644 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7645 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7646 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7647 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7648 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7649 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7650 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7651 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7652 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7653 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7654 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7655 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7656 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7657 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7658 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7659 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7660 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7661 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7662 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7663 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7664 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7665 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7666 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7667 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7668 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7669 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7670 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7671 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7672 - } - ] - }, - "minecraft:dark_oak_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7673 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7674 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7675 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7676 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7677 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7678 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7679 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7680 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7681 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7682 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7683 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7684, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7685 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7686 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7687 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7688 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7689 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7690 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7691 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7692 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7693 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7694 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7695 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7696 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7697 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7698 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7699 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7700 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7701 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7702 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7703 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7704 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7705 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7706 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7707 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7708 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7709 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7710 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7711 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7712 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7713 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7714 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7715 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7716 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7717 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7718 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7719 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7720 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7721 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7722 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7723 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7724 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7725 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7726 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7727 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7728 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7729 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7730 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7731 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7732 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7733 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7734 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7735 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7736 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7737 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7738 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7739 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7740 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7741 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7742 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7743 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7744 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7745 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7746 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7747 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7748 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7749 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7750 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7751 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7752 - } - ] - }, - "minecraft:slime_block": { - "states": [ - { - "id": 7753, - "default": true - } - ] - }, - "minecraft:barrier": { - "states": [ - { - "id": 7754, - "default": true - } - ] - }, - "minecraft:light": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "level": "0", - "waterlogged": "true" - }, - "id": 7755 - }, - { - "properties": { - "level": "0", - "waterlogged": "false" - }, - "id": 7756 - }, - { - "properties": { - "level": "1", - "waterlogged": "true" - }, - "id": 7757 - }, - { - "properties": { - "level": "1", - "waterlogged": "false" - }, - "id": 7758 - }, - { - "properties": { - "level": "2", - "waterlogged": "true" - }, - "id": 7759 - }, - { - "properties": { - "level": "2", - "waterlogged": "false" - }, - "id": 7760 - }, - { - "properties": { - "level": "3", - "waterlogged": "true" - }, - "id": 7761 - }, - { - "properties": { - "level": "3", - "waterlogged": "false" - }, - "id": 7762 - }, - { - "properties": { - "level": "4", - "waterlogged": "true" - }, - "id": 7763 - }, - { - "properties": { - "level": "4", - "waterlogged": "false" - }, - "id": 7764 - }, - { - "properties": { - "level": "5", - "waterlogged": "true" - }, - "id": 7765 - }, - { - "properties": { - "level": "5", - "waterlogged": "false" - }, - "id": 7766 - }, - { - "properties": { - "level": "6", - "waterlogged": "true" - }, - "id": 7767 - }, - { - "properties": { - "level": "6", - "waterlogged": "false" - }, - "id": 7768 - }, - { - "properties": { - "level": "7", - "waterlogged": "true" - }, - "id": 7769 - }, - { - "properties": { - "level": "7", - "waterlogged": "false" - }, - "id": 7770 - }, - { - "properties": { - "level": "8", - "waterlogged": "true" - }, - "id": 7771 - }, - { - "properties": { - "level": "8", - "waterlogged": "false" - }, - "id": 7772 - }, - { - "properties": { - "level": "9", - "waterlogged": "true" - }, - "id": 7773 - }, - { - "properties": { - "level": "9", - "waterlogged": "false" - }, - "id": 7774 - }, - { - "properties": { - "level": "10", - "waterlogged": "true" - }, - "id": 7775 - }, - { - "properties": { - "level": "10", - "waterlogged": "false" - }, - "id": 7776 - }, - { - "properties": { - "level": "11", - "waterlogged": "true" - }, - "id": 7777 - }, - { - "properties": { - "level": "11", - "waterlogged": "false" - }, - "id": 7778 - }, - { - "properties": { - "level": "12", - "waterlogged": "true" - }, - "id": 7779 - }, - { - "properties": { - "level": "12", - "waterlogged": "false" - }, - "id": 7780 - }, - { - "properties": { - "level": "13", - "waterlogged": "true" - }, - "id": 7781 - }, - { - "properties": { - "level": "13", - "waterlogged": "false" - }, - "id": 7782 - }, - { - "properties": { - "level": "14", - "waterlogged": "true" - }, - "id": 7783 - }, - { - "properties": { - "level": "14", - "waterlogged": "false" - }, - "id": 7784 - }, - { - "properties": { - "level": "15", - "waterlogged": "true" - }, - "id": 7785 - }, - { - "properties": { - "level": "15", - "waterlogged": "false" - }, - "id": 7786, - "default": true - } - ] - }, - "minecraft:iron_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7787 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7788 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7789 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7790 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7791 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7792 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7793 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7794 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7795 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7796 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7797 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7798 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7799 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7800 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7801 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7802, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7803 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7804 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7805 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7806 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7807 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7808 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7809 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7810 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7811 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7812 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7813 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7814 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7815 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7816 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7817 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7818 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7819 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7820 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7821 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7822 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7823 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7824 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7825 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7826 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7827 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7828 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7829 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7830 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7831 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7832 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7833 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7834 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7835 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7836 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7837 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7838 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7839 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7840 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7841 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7842 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7843 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7844 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7845 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7846 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7847 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7848 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7849 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7850 - } - ] - }, - "minecraft:prismarine": { - "states": [ - { - "id": 7851, - "default": true - } - ] - }, - "minecraft:prismarine_bricks": { - "states": [ - { - "id": 7852, - "default": true - } - ] - }, - "minecraft:dark_prismarine": { - "states": [ - { - "id": 7853, - "default": true - } - ] - }, - "minecraft:prismarine_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7854 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7855 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7856 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7857 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7858 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7859 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7860 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7861 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7862 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7863 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7864 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7865, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7866 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7867 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7868 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7869 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7870 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7871 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7872 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7873 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7874 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7875 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7876 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7877 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7878 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7879 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7880 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7881 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7882 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7883 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7884 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7885 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7886 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7887 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7888 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7889 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7890 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7891 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7892 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7893 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7894 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7895 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7896 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7897 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7898 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7899 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7900 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7901 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7902 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7903 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7904 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7905 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7906 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7907 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7908 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7909 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7910 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7911 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7912 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7913 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7914 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7915 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7916 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7917 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7918 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7919 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7920 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7921 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7922 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7923 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7924 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7925 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7926 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7927 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7928 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7929 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7930 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7931 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7932 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7933 - } - ] - }, - "minecraft:prismarine_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7934 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7935 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7936 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7937 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7938 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7939 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7940 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7941 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7942 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7943 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7944 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7945, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7946 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7947 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7948 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7949 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7950 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7951 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7952 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7953 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7954 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7955 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7956 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7957 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7958 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7959 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7960 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7961 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7962 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7963 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7964 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7965 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7966 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7967 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7968 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7969 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7970 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7971 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7972 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7973 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7974 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7975 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7976 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7977 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7978 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7979 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7980 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7981 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7982 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7983 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7984 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7985 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7986 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7987 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7988 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7989 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7990 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7991 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7992 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7993 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7994 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7995 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7996 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7997 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7998 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7999 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8000 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8001 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8002 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8003 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8004 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8005 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8006 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8007 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8008 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8009 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8010 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8011 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8012 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8013 - } - ] - }, - "minecraft:dark_prismarine_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8014 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8015 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8016 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8017 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8018 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8019 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8020 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8021 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8022 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8023 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8024 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8025, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8026 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8027 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8028 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8029 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8030 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8031 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8032 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8033 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8034 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8035 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8036 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8037 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8038 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8039 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8040 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8041 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8042 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8043 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8044 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8045 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8046 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8047 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8048 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8049 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8050 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8051 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8052 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8053 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8054 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8055 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8056 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8057 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8058 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8059 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8060 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8061 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8062 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8063 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8064 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8065 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8066 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8067 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8068 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8069 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8070 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8071 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8072 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8073 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8074 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8075 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8076 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8077 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8078 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8079 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8080 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8081 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8082 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8083 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8084 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8085 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8086 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8087 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8088 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8089 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8090 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8091 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8092 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8093 - } - ] - }, - "minecraft:prismarine_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8094 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8095 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8096 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8097, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8098 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8099 - } - ] - }, - "minecraft:prismarine_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8100 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8101 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8102 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8103, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8104 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8105 - } - ] - }, - "minecraft:dark_prismarine_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8106 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8107 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8108 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8109, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8110 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8111 - } - ] - }, - "minecraft:sea_lantern": { - "states": [ - { - "id": 8112, - "default": true - } - ] - }, - "minecraft:hay_block": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 8113 - }, - { - "properties": { - "axis": "y" - }, - "id": 8114, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 8115 - } - ] - }, - "minecraft:white_carpet": { - "states": [ - { - "id": 8116, - "default": true - } - ] - }, - "minecraft:orange_carpet": { - "states": [ - { - "id": 8117, - "default": true - } - ] - }, - "minecraft:magenta_carpet": { - "states": [ - { - "id": 8118, - "default": true - } - ] - }, - "minecraft:light_blue_carpet": { - "states": [ - { - "id": 8119, - "default": true - } - ] - }, - "minecraft:yellow_carpet": { - "states": [ - { - "id": 8120, - "default": true - } - ] - }, - "minecraft:lime_carpet": { - "states": [ - { - "id": 8121, - "default": true - } - ] - }, - "minecraft:pink_carpet": { - "states": [ - { - "id": 8122, - "default": true - } - ] - }, - "minecraft:gray_carpet": { - "states": [ - { - "id": 8123, - "default": true - } - ] - }, - "minecraft:light_gray_carpet": { - "states": [ - { - "id": 8124, - "default": true - } - ] - }, - "minecraft:cyan_carpet": { - "states": [ - { - "id": 8125, - "default": true - } - ] - }, - "minecraft:purple_carpet": { - "states": [ - { - "id": 8126, - "default": true - } - ] - }, - "minecraft:blue_carpet": { - "states": [ - { - "id": 8127, - "default": true - } - ] - }, - "minecraft:brown_carpet": { - "states": [ - { - "id": 8128, - "default": true - } - ] - }, - "minecraft:green_carpet": { - "states": [ - { - "id": 8129, - "default": true - } - ] - }, - "minecraft:red_carpet": { - "states": [ - { - "id": 8130, - "default": true - } - ] - }, - "minecraft:black_carpet": { - "states": [ - { - "id": 8131, - "default": true - } - ] - }, - "minecraft:terracotta": { - "states": [ - { - "id": 8132, - "default": true - } - ] - }, - "minecraft:coal_block": { - "states": [ - { - "id": 8133, - "default": true - } - ] - }, - "minecraft:packed_ice": { - "states": [ - { - "id": 8134, - "default": true - } - ] - }, - "minecraft:sunflower": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 8135 - }, - { - "properties": { - "half": "lower" - }, - "id": 8136, - "default": true - } - ] - }, - "minecraft:lilac": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 8137 - }, - { - "properties": { - "half": "lower" - }, - "id": 8138, - "default": true - } - ] - }, - "minecraft:rose_bush": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 8139 - }, - { - "properties": { - "half": "lower" - }, - "id": 8140, - "default": true - } - ] - }, - "minecraft:peony": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 8141 - }, - { - "properties": { - "half": "lower" - }, - "id": 8142, - "default": true - } - ] - }, - "minecraft:tall_grass": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 8143 - }, - { - "properties": { - "half": "lower" - }, - "id": 8144, - "default": true - } - ] - }, - "minecraft:large_fern": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 8145 - }, - { - "properties": { - "half": "lower" - }, - "id": 8146, - "default": true - } - ] - }, - "minecraft:white_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8147, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8148 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8149 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8150 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8151 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8152 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8153 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8154 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8155 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8156 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8157 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8158 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8159 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8160 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8161 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8162 - } - ] - }, - "minecraft:orange_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8163, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8164 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8165 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8166 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8167 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8168 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8169 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8170 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8171 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8172 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8173 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8174 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8175 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8176 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8177 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8178 - } - ] - }, - "minecraft:magenta_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8179, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8180 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8181 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8182 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8183 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8184 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8185 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8186 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8187 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8188 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8189 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8190 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8191 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8192 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8193 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8194 - } - ] - }, - "minecraft:light_blue_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8195, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8196 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8197 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8198 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8199 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8200 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8201 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8202 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8203 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8204 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8205 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8206 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8207 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8208 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8209 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8210 - } - ] - }, - "minecraft:yellow_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8211, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8212 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8213 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8214 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8215 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8216 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8217 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8218 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8219 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8220 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8221 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8222 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8223 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8224 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8225 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8226 - } - ] - }, - "minecraft:lime_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8227, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8228 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8229 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8230 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8231 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8232 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8233 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8234 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8235 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8236 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8237 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8238 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8239 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8240 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8241 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8242 - } - ] - }, - "minecraft:pink_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8243, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8244 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8245 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8246 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8247 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8248 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8249 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8250 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8251 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8252 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8253 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8254 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8255 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8256 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8257 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8258 - } - ] - }, - "minecraft:gray_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8259, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8260 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8261 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8262 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8263 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8264 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8265 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8266 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8267 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8268 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8269 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8270 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8271 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8272 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8273 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8274 - } - ] - }, - "minecraft:light_gray_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8275, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8276 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8277 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8278 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8279 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8280 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8281 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8282 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8283 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8284 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8285 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8286 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8287 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8288 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8289 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8290 - } - ] - }, - "minecraft:cyan_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8291, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8292 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8293 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8294 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8295 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8296 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8297 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8298 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8299 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8300 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8301 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8302 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8303 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8304 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8305 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8306 - } - ] - }, - "minecraft:purple_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8307, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8308 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8309 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8310 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8311 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8312 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8313 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8314 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8315 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8316 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8317 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8318 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8319 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8320 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8321 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8322 - } - ] - }, - "minecraft:blue_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8323, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8324 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8325 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8326 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8327 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8328 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8329 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8330 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8331 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8332 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8333 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8334 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8335 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8336 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8337 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8338 - } - ] - }, - "minecraft:brown_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8339, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8340 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8341 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8342 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8343 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8344 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8345 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8346 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8347 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8348 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8349 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8350 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8351 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8352 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8353 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8354 - } - ] - }, - "minecraft:green_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8355, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8356 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8357 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8358 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8359 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8360 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8361 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8362 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8363 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8364 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8365 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8366 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8367 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8368 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8369 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8370 - } - ] - }, - "minecraft:red_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8371, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8372 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8373 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8374 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8375 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8376 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8377 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8378 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8379 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8380 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8381 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8382 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8383 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8384 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8385 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8386 - } - ] - }, - "minecraft:black_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8387, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8388 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8389 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8390 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8391 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8392 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8393 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8394 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8395 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8396 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8397 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8398 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8399 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8400 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8401 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8402 - } - ] - }, - "minecraft:white_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8403, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8404 - }, - { - "properties": { - "facing": "west" - }, - "id": 8405 - }, - { - "properties": { - "facing": "east" - }, - "id": 8406 - } - ] - }, - "minecraft:orange_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8407, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8408 - }, - { - "properties": { - "facing": "west" - }, - "id": 8409 - }, - { - "properties": { - "facing": "east" - }, - "id": 8410 - } - ] - }, - "minecraft:magenta_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8411, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8412 - }, - { - "properties": { - "facing": "west" - }, - "id": 8413 - }, - { - "properties": { - "facing": "east" - }, - "id": 8414 - } - ] - }, - "minecraft:light_blue_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8415, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8416 - }, - { - "properties": { - "facing": "west" - }, - "id": 8417 - }, - { - "properties": { - "facing": "east" - }, - "id": 8418 - } - ] - }, - "minecraft:yellow_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8419, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8420 - }, - { - "properties": { - "facing": "west" - }, - "id": 8421 - }, - { - "properties": { - "facing": "east" - }, - "id": 8422 - } - ] - }, - "minecraft:lime_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8423, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8424 - }, - { - "properties": { - "facing": "west" - }, - "id": 8425 - }, - { - "properties": { - "facing": "east" - }, - "id": 8426 - } - ] - }, - "minecraft:pink_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8427, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8428 - }, - { - "properties": { - "facing": "west" - }, - "id": 8429 - }, - { - "properties": { - "facing": "east" - }, - "id": 8430 - } - ] - }, - "minecraft:gray_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8431, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8432 - }, - { - "properties": { - "facing": "west" - }, - "id": 8433 - }, - { - "properties": { - "facing": "east" - }, - "id": 8434 - } - ] - }, - "minecraft:light_gray_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8435, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8436 - }, - { - "properties": { - "facing": "west" - }, - "id": 8437 - }, - { - "properties": { - "facing": "east" - }, - "id": 8438 - } - ] - }, - "minecraft:cyan_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8439, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8440 - }, - { - "properties": { - "facing": "west" - }, - "id": 8441 - }, - { - "properties": { - "facing": "east" - }, - "id": 8442 - } - ] - }, - "minecraft:purple_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8443, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8444 - }, - { - "properties": { - "facing": "west" - }, - "id": 8445 - }, - { - "properties": { - "facing": "east" - }, - "id": 8446 - } - ] - }, - "minecraft:blue_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8447, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8448 - }, - { - "properties": { - "facing": "west" - }, - "id": 8449 - }, - { - "properties": { - "facing": "east" - }, - "id": 8450 - } - ] - }, - "minecraft:brown_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8451, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8452 - }, - { - "properties": { - "facing": "west" - }, - "id": 8453 - }, - { - "properties": { - "facing": "east" - }, - "id": 8454 - } - ] - }, - "minecraft:green_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8455, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8456 - }, - { - "properties": { - "facing": "west" - }, - "id": 8457 - }, - { - "properties": { - "facing": "east" - }, - "id": 8458 - } - ] - }, - "minecraft:red_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8459, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8460 - }, - { - "properties": { - "facing": "west" - }, - "id": 8461 - }, - { - "properties": { - "facing": "east" - }, - "id": 8462 - } - ] - }, - "minecraft:black_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8463, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8464 - }, - { - "properties": { - "facing": "west" - }, - "id": 8465 - }, - { - "properties": { - "facing": "east" - }, - "id": 8466 - } - ] - }, - "minecraft:red_sandstone": { - "states": [ - { - "id": 8467, - "default": true - } - ] - }, - "minecraft:chiseled_red_sandstone": { - "states": [ - { - "id": 8468, - "default": true - } - ] - }, - "minecraft:cut_red_sandstone": { - "states": [ - { - "id": 8469, - "default": true - } - ] - }, - "minecraft:red_sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8470 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8471 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8472 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8473 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8474 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8475 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8476 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8477 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8478 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8479 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8480 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8481, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8482 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8483 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8484 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8485 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8486 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8487 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8488 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8489 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8490 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8491 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8492 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8493 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8494 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8495 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8496 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8497 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8498 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8499 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8500 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8501 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8502 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8503 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8504 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8505 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8506 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8507 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8508 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8509 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8510 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8511 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8512 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8513 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8514 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8515 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8516 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8517 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8518 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8519 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8520 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8521 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8522 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8523 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8524 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8525 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8526 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8527 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8528 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8529 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8530 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8531 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8532 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8533 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8534 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8535 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8536 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8537 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8538 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8539 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8540 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8541 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8542 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8543 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8544 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8545 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8546 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8547 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8548 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8549 - } - ] - }, - "minecraft:oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8550 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8551 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8552 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8553, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8554 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8555 - } - ] - }, - "minecraft:spruce_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8556 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8557 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8558 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8559, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8560 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8561 - } - ] - }, - "minecraft:birch_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8562 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8563 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8564 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8565, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8566 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8567 - } - ] - }, - "minecraft:jungle_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8568 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8569 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8570 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8571, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8572 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8573 - } - ] - }, - "minecraft:acacia_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8574 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8575 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8576 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8577, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8578 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8579 - } - ] - }, - "minecraft:dark_oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8580 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8581 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8582 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8583, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8584 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8585 - } - ] - }, - "minecraft:stone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8586 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8587 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8588 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8589, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8590 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8591 - } - ] - }, - "minecraft:smooth_stone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8592 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8593 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8594 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8595, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8596 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8597 - } - ] - }, - "minecraft:sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8598 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8599 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8600 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8601, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8602 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8603 - } - ] - }, - "minecraft:cut_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8604 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8605 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8606 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8607, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8608 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8609 - } - ] - }, - "minecraft:petrified_oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8610 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8611 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8612 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8613, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8614 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8615 - } - ] - }, - "minecraft:cobblestone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8616 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8617 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8618 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8619, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8620 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8621 - } - ] - }, - "minecraft:brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8622 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8623 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8624 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8625, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8626 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8627 - } - ] - }, - "minecraft:stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8628 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8629 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8630 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8631, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8632 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8633 - } - ] - }, - "minecraft:nether_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8634 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8635 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8636 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8637, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8638 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8639 - } - ] - }, - "minecraft:quartz_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8640 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8641 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8642 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8643, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8644 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8645 - } - ] - }, - "minecraft:red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8646 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8647 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8648 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8649, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8650 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8651 - } - ] - }, - "minecraft:cut_red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8652 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8653 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8654 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8655, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8656 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8657 - } - ] - }, - "minecraft:purpur_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8658 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8659 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8660 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8661, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8662 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8663 - } - ] - }, - "minecraft:smooth_stone": { - "states": [ - { - "id": 8664, - "default": true - } - ] - }, - "minecraft:smooth_sandstone": { - "states": [ - { - "id": 8665, - "default": true - } - ] - }, - "minecraft:smooth_quartz": { - "states": [ - { - "id": 8666, - "default": true - } - ] - }, - "minecraft:smooth_red_sandstone": { - "states": [ - { - "id": 8667, - "default": true - } - ] - }, - "minecraft:spruce_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8668 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8669 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8670 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8671 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8672 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8673 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8674 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8675, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8676 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8677 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8678 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8679 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8680 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8681 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8682 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8683 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8684 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8685 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8686 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8687 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8688 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8689 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8690 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8691 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8692 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8693 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8694 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8695 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8696 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8697 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8698 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8699 - } - ] - }, - "minecraft:birch_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8700 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8701 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8702 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8703 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8704 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8705 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8706 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8707, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8708 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8709 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8710 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8711 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8712 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8713 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8714 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8715 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8716 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8717 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8718 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8719 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8720 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8721 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8722 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8723 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8724 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8725 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8726 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8727 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8728 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8729 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8730 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8731 - } - ] - }, - "minecraft:jungle_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8732 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8733 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8734 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8735 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8736 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8737 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8738 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8739, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8740 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8741 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8742 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8743 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8744 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8745 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8746 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8747 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8748 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8749 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8750 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8751 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8752 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8753 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8754 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8755 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8756 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8757 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8758 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8759 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8760 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8761 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8762 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8763 - } - ] - }, - "minecraft:acacia_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8764 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8765 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8766 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8767 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8768 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8769 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8770 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8771, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8772 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8773 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8774 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8775 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8776 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8777 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8778 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8779 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8780 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8781 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8782 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8783 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8784 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8785 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8786 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8787 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8788 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8789 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8790 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8791 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8792 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8793 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8794 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8795 - } - ] - }, - "minecraft:dark_oak_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8796 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8797 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8798 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8799 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8800 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8801 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8802 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8803, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8804 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8805 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8806 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8807 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8808 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8809 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8810 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8811 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8812 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8813 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8814 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8815 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8816 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8817 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8818 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8819 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8820 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8821 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8822 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8823 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8824 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8825 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8826 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8827 - } - ] - }, - "minecraft:spruce_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8828 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8829 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8830 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8831 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8832 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8833 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8834 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8835 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8836 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8837 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8838 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8839 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8840 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8841 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8842 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8843 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8844 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8845 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8846 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8847 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8848 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8849 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8850 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8851 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8852 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8853 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8854 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8855 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8856 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8857 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8858 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8859, - "default": true - } - ] - }, - "minecraft:birch_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8860 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8861 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8862 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8863 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8864 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8865 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8866 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8867 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8868 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8869 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8870 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8871 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8872 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8873 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8874 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8875 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8876 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8877 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8878 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8879 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8880 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8881 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8882 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8883 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8884 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8885 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8886 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8887 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8888 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8889 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8890 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8891, - "default": true - } - ] - }, - "minecraft:jungle_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8892 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8893 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8894 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8895 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8896 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8897 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8898 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8899 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8900 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8901 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8902 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8903 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8904 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8905 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8906 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8907 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8908 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8909 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8910 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8911 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8912 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8913 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8914 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8915 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8916 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8917 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8918 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8919 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8920 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8921 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8922 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8923, - "default": true - } - ] - }, - "minecraft:acacia_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8924 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8925 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8926 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8927 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8928 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8929 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8930 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8931 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8932 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8933 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8934 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8935 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8936 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8937 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8938 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8939 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8940 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8941 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8942 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8943 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8944 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8945 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8946 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8947 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8948 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8949 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8950 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8951 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8952 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8953 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8954 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8955, - "default": true - } - ] - }, - "minecraft:dark_oak_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8956 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8957 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8958 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8959 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8960 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8961 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8962 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8963 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8964 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8965 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8966 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8967 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8968 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8969 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8970 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8971 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8972 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8973 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8974 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8975 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8976 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8977 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8978 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8979 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8980 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8981 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8982 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8983 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8984 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8985 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8986 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8987, - "default": true - } - ] - }, - "minecraft:spruce_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8988 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8989 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8990 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8991 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 8992 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 8993 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 8994 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 8995 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 8996 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 8997 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 8998 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 8999, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9000 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9001 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9002 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9003 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9004 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9005 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9006 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9007 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9008 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9009 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9010 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9011 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9012 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9013 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9014 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9015 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9016 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9017 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9018 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9019 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9020 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9021 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9022 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9023 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9024 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9025 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9026 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9027 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9028 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9029 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9030 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9031 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9032 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9033 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9034 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9035 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9036 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9037 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9038 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9039 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9040 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9041 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9042 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9043 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9044 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9045 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9046 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9047 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9048 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9049 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9050 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9051 - } - ] - }, - "minecraft:birch_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9052 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9053 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9054 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9055 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9056 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9057 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9058 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9059 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9060 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9061 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9062 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9063, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9064 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9065 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9066 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9067 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9068 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9069 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9070 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9071 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9072 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9073 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9074 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9075 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9076 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9077 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9078 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9079 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9080 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9081 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9082 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9083 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9084 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9085 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9086 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9087 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9088 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9089 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9090 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9091 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9092 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9093 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9094 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9095 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9096 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9097 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9098 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9099 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9100 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9101 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9102 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9103 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9104 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9105 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9106 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9107 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9108 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9109 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9110 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9111 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9112 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9113 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9114 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9115 - } - ] - }, - "minecraft:jungle_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9116 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9117 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9118 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9119 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9120 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9121 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9122 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9123 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9124 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9125 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9126 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9127, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9128 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9129 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9130 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9131 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9132 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9133 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9134 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9135 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9136 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9137 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9138 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9139 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9140 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9141 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9142 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9143 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9144 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9145 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9146 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9147 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9148 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9149 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9150 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9151 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9152 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9153 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9154 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9155 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9156 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9157 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9158 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9159 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9160 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9161 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9162 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9163 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9164 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9165 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9166 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9167 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9168 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9169 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9170 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9171 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9172 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9173 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9174 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9175 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9176 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9177 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9178 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9179 - } - ] - }, - "minecraft:acacia_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9180 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9181 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9182 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9183 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9184 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9185 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9186 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9187 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9188 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9189 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9190 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9191, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9192 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9193 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9194 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9195 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9196 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9197 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9198 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9199 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9200 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9201 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9202 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9203 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9204 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9205 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9206 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9207 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9208 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9209 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9210 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9211 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9212 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9213 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9214 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9215 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9216 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9217 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9218 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9219 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9220 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9221 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9222 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9223 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9224 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9225 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9226 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9227 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9228 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9229 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9230 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9231 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9232 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9233 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9234 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9235 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9236 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9237 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9238 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9239 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9240 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9241 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9242 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9243 - } - ] - }, - "minecraft:dark_oak_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9244 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9245 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9246 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9247 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9248 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9249 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9250 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9251 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9252 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9253 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9254 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9255, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9256 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9257 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9258 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9259 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9260 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9261 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9262 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9263 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9264 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9265 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9266 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9267 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9268 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9269 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9270 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9271 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9272 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9273 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9274 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9275 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9276 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9277 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9278 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9279 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9280 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9281 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9282 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9283 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9284 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9285 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9286 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9287 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9288 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9289 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9290 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9291 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9292 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9293 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9294 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9295 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9296 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9297 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9298 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9299 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9300 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9301 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9302 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9303 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9304 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9305 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9306 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9307 - } - ] - }, - "minecraft:end_rod": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9308 - }, - { - "properties": { - "facing": "east" - }, - "id": 9309 - }, - { - "properties": { - "facing": "south" - }, - "id": 9310 - }, - { - "properties": { - "facing": "west" - }, - "id": 9311 - }, - { - "properties": { - "facing": "up" - }, - "id": 9312, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9313 - } - ] - }, - "minecraft:chorus_plant": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 9314 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 9315 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 9316 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 9317 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 9318 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 9319 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 9320 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 9321 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 9322 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 9323 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 9324 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 9325 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 9326 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 9327 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 9328 - }, - { - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 9329 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 9330 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 9331 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 9332 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 9333 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 9334 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 9335 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 9336 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 9337 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 9338 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 9339 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 9340 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 9341 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 9342 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 9343 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 9344 - }, - { - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 9345 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 9346 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 9347 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 9348 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 9349 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 9350 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 9351 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 9352 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 9353 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 9354 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 9355 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 9356 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 9357 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 9358 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 9359 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 9360 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 9361 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 9362 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 9363 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 9364 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 9365 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 9366 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 9367 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 9368 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 9369 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 9370 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 9371 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 9372 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 9373 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 9374 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 9375 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 9376 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 9377, - "default": true - } - ] - }, - "minecraft:chorus_flower": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 9378, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 9379 - }, - { - "properties": { - "age": "2" - }, - "id": 9380 - }, - { - "properties": { - "age": "3" - }, - "id": 9381 - }, - { - "properties": { - "age": "4" - }, - "id": 9382 - }, - { - "properties": { - "age": "5" - }, - "id": 9383 - } - ] - }, - "minecraft:purpur_block": { - "states": [ - { - "id": 9384, - "default": true - } - ] - }, - "minecraft:purpur_pillar": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 9385 - }, - { - "properties": { - "axis": "y" - }, - "id": 9386, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 9387 - } - ] - }, - "minecraft:purpur_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9388 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9389 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9390 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9391 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9392 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9393 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9394 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9395 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9396 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9397 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9398 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9399, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9400 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9401 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9402 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9403 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9404 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9405 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9406 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9407 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9408 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9409 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9410 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9411 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9412 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9413 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9414 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9415 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9416 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9417 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9418 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9419 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9420 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9421 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9422 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9423 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9424 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9425 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9426 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9427 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9428 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9429 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9430 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9431 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9432 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9433 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9434 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9435 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9436 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9437 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9438 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9439 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9440 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9441 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9442 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9443 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9444 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9445 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9446 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9447 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9448 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9449 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9450 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9451 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9452 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9453 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9454 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9455 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9456 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9457 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9458 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9459 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9460 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9461 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9462 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9463 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9464 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9465 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9466 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9467 - } - ] - }, - "minecraft:end_stone_bricks": { - "states": [ - { - "id": 9468, - "default": true - } - ] - }, - "minecraft:beetroots": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 9469, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 9470 - }, - { - "properties": { - "age": "2" - }, - "id": 9471 - }, - { - "properties": { - "age": "3" - }, - "id": 9472 - } - ] - }, - "minecraft:dirt_path": { - "states": [ - { - "id": 9473, - "default": true - } - ] - }, - "minecraft:end_gateway": { - "states": [ - { - "id": 9474, - "default": true - } - ] - }, - "minecraft:repeating_command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "conditional": "true", - "facing": "north" - }, - "id": 9475 - }, - { - "properties": { - "conditional": "true", - "facing": "east" - }, - "id": 9476 - }, - { - "properties": { - "conditional": "true", - "facing": "south" - }, - "id": 9477 - }, - { - "properties": { - "conditional": "true", - "facing": "west" - }, - "id": 9478 - }, - { - "properties": { - "conditional": "true", - "facing": "up" - }, - "id": 9479 - }, - { - "properties": { - "conditional": "true", - "facing": "down" - }, - "id": 9480 - }, - { - "properties": { - "conditional": "false", - "facing": "north" - }, - "id": 9481, - "default": true - }, - { - "properties": { - "conditional": "false", - "facing": "east" - }, - "id": 9482 - }, - { - "properties": { - "conditional": "false", - "facing": "south" - }, - "id": 9483 - }, - { - "properties": { - "conditional": "false", - "facing": "west" - }, - "id": 9484 - }, - { - "properties": { - "conditional": "false", - "facing": "up" - }, - "id": 9485 - }, - { - "properties": { - "conditional": "false", - "facing": "down" - }, - "id": 9486 - } - ] - }, - "minecraft:chain_command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "conditional": "true", - "facing": "north" - }, - "id": 9487 - }, - { - "properties": { - "conditional": "true", - "facing": "east" - }, - "id": 9488 - }, - { - "properties": { - "conditional": "true", - "facing": "south" - }, - "id": 9489 - }, - { - "properties": { - "conditional": "true", - "facing": "west" - }, - "id": 9490 - }, - { - "properties": { - "conditional": "true", - "facing": "up" - }, - "id": 9491 - }, - { - "properties": { - "conditional": "true", - "facing": "down" - }, - "id": 9492 - }, - { - "properties": { - "conditional": "false", - "facing": "north" - }, - "id": 9493, - "default": true - }, - { - "properties": { - "conditional": "false", - "facing": "east" - }, - "id": 9494 - }, - { - "properties": { - "conditional": "false", - "facing": "south" - }, - "id": 9495 - }, - { - "properties": { - "conditional": "false", - "facing": "west" - }, - "id": 9496 - }, - { - "properties": { - "conditional": "false", - "facing": "up" - }, - "id": 9497 - }, - { - "properties": { - "conditional": "false", - "facing": "down" - }, - "id": 9498 - } - ] - }, - "minecraft:frosted_ice": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 9499, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 9500 - }, - { - "properties": { - "age": "2" - }, - "id": 9501 - }, - { - "properties": { - "age": "3" - }, - "id": 9502 - } - ] - }, - "minecraft:magma_block": { - "states": [ - { - "id": 9503, - "default": true - } - ] - }, - "minecraft:nether_wart_block": { - "states": [ - { - "id": 9504, - "default": true - } - ] - }, - "minecraft:red_nether_bricks": { - "states": [ - { - "id": 9505, - "default": true - } - ] - }, - "minecraft:bone_block": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 9506 - }, - { - "properties": { - "axis": "y" - }, - "id": 9507, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 9508 - } - ] - }, - "minecraft:structure_void": { - "states": [ - { - "id": 9509, - "default": true - } - ] - }, - "minecraft:observer": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "powered": "true" - }, - "id": 9510 - }, - { - "properties": { - "facing": "north", - "powered": "false" - }, - "id": 9511 - }, - { - "properties": { - "facing": "east", - "powered": "true" - }, - "id": 9512 - }, - { - "properties": { - "facing": "east", - "powered": "false" - }, - "id": 9513 - }, - { - "properties": { - "facing": "south", - "powered": "true" - }, - "id": 9514 - }, - { - "properties": { - "facing": "south", - "powered": "false" - }, - "id": 9515, - "default": true - }, - { - "properties": { - "facing": "west", - "powered": "true" - }, - "id": 9516 - }, - { - "properties": { - "facing": "west", - "powered": "false" - }, - "id": 9517 - }, - { - "properties": { - "facing": "up", - "powered": "true" - }, - "id": 9518 - }, - { - "properties": { - "facing": "up", - "powered": "false" - }, - "id": 9519 - }, - { - "properties": { - "facing": "down", - "powered": "true" - }, - "id": 9520 - }, - { - "properties": { - "facing": "down", - "powered": "false" - }, - "id": 9521 - } - ] - }, - "minecraft:shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9522 - }, - { - "properties": { - "facing": "east" - }, - "id": 9523 - }, - { - "properties": { - "facing": "south" - }, - "id": 9524 - }, - { - "properties": { - "facing": "west" - }, - "id": 9525 - }, - { - "properties": { - "facing": "up" - }, - "id": 9526, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9527 - } - ] - }, - "minecraft:white_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9528 - }, - { - "properties": { - "facing": "east" - }, - "id": 9529 - }, - { - "properties": { - "facing": "south" - }, - "id": 9530 - }, - { - "properties": { - "facing": "west" - }, - "id": 9531 - }, - { - "properties": { - "facing": "up" - }, - "id": 9532, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9533 - } - ] - }, - "minecraft:orange_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9534 - }, - { - "properties": { - "facing": "east" - }, - "id": 9535 - }, - { - "properties": { - "facing": "south" - }, - "id": 9536 - }, - { - "properties": { - "facing": "west" - }, - "id": 9537 - }, - { - "properties": { - "facing": "up" - }, - "id": 9538, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9539 - } - ] - }, - "minecraft:magenta_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9540 - }, - { - "properties": { - "facing": "east" - }, - "id": 9541 - }, - { - "properties": { - "facing": "south" - }, - "id": 9542 - }, - { - "properties": { - "facing": "west" - }, - "id": 9543 - }, - { - "properties": { - "facing": "up" - }, - "id": 9544, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9545 - } - ] - }, - "minecraft:light_blue_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9546 - }, - { - "properties": { - "facing": "east" - }, - "id": 9547 - }, - { - "properties": { - "facing": "south" - }, - "id": 9548 - }, - { - "properties": { - "facing": "west" - }, - "id": 9549 - }, - { - "properties": { - "facing": "up" - }, - "id": 9550, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9551 - } - ] - }, - "minecraft:yellow_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9552 - }, - { - "properties": { - "facing": "east" - }, - "id": 9553 - }, - { - "properties": { - "facing": "south" - }, - "id": 9554 - }, - { - "properties": { - "facing": "west" - }, - "id": 9555 - }, - { - "properties": { - "facing": "up" - }, - "id": 9556, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9557 - } - ] - }, - "minecraft:lime_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9558 - }, - { - "properties": { - "facing": "east" - }, - "id": 9559 - }, - { - "properties": { - "facing": "south" - }, - "id": 9560 - }, - { - "properties": { - "facing": "west" - }, - "id": 9561 - }, - { - "properties": { - "facing": "up" - }, - "id": 9562, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9563 - } - ] - }, - "minecraft:pink_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9564 - }, - { - "properties": { - "facing": "east" - }, - "id": 9565 - }, - { - "properties": { - "facing": "south" - }, - "id": 9566 - }, - { - "properties": { - "facing": "west" - }, - "id": 9567 - }, - { - "properties": { - "facing": "up" - }, - "id": 9568, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9569 - } - ] - }, - "minecraft:gray_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9570 - }, - { - "properties": { - "facing": "east" - }, - "id": 9571 - }, - { - "properties": { - "facing": "south" - }, - "id": 9572 - }, - { - "properties": { - "facing": "west" - }, - "id": 9573 - }, - { - "properties": { - "facing": "up" - }, - "id": 9574, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9575 - } - ] - }, - "minecraft:light_gray_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9576 - }, - { - "properties": { - "facing": "east" - }, - "id": 9577 - }, - { - "properties": { - "facing": "south" - }, - "id": 9578 - }, - { - "properties": { - "facing": "west" - }, - "id": 9579 - }, - { - "properties": { - "facing": "up" - }, - "id": 9580, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9581 - } - ] - }, - "minecraft:cyan_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9582 - }, - { - "properties": { - "facing": "east" - }, - "id": 9583 - }, - { - "properties": { - "facing": "south" - }, - "id": 9584 - }, - { - "properties": { - "facing": "west" - }, - "id": 9585 - }, - { - "properties": { - "facing": "up" - }, - "id": 9586, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9587 - } - ] - }, - "minecraft:purple_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9588 - }, - { - "properties": { - "facing": "east" - }, - "id": 9589 - }, - { - "properties": { - "facing": "south" - }, - "id": 9590 - }, - { - "properties": { - "facing": "west" - }, - "id": 9591 - }, - { - "properties": { - "facing": "up" - }, - "id": 9592, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9593 - } - ] - }, - "minecraft:blue_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9594 - }, - { - "properties": { - "facing": "east" - }, - "id": 9595 - }, - { - "properties": { - "facing": "south" - }, - "id": 9596 - }, - { - "properties": { - "facing": "west" - }, - "id": 9597 - }, - { - "properties": { - "facing": "up" - }, - "id": 9598, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9599 - } - ] - }, - "minecraft:brown_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9600 - }, - { - "properties": { - "facing": "east" - }, - "id": 9601 - }, - { - "properties": { - "facing": "south" - }, - "id": 9602 - }, - { - "properties": { - "facing": "west" - }, - "id": 9603 - }, - { - "properties": { - "facing": "up" - }, - "id": 9604, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9605 - } - ] - }, - "minecraft:green_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9606 - }, - { - "properties": { - "facing": "east" - }, - "id": 9607 - }, - { - "properties": { - "facing": "south" - }, - "id": 9608 - }, - { - "properties": { - "facing": "west" - }, - "id": 9609 - }, - { - "properties": { - "facing": "up" - }, - "id": 9610, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9611 - } - ] - }, - "minecraft:red_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9612 - }, - { - "properties": { - "facing": "east" - }, - "id": 9613 - }, - { - "properties": { - "facing": "south" - }, - "id": 9614 - }, - { - "properties": { - "facing": "west" - }, - "id": 9615 - }, - { - "properties": { - "facing": "up" - }, - "id": 9616, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9617 - } - ] - }, - "minecraft:black_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9618 - }, - { - "properties": { - "facing": "east" - }, - "id": 9619 - }, - { - "properties": { - "facing": "south" - }, - "id": 9620 - }, - { - "properties": { - "facing": "west" - }, - "id": 9621 - }, - { - "properties": { - "facing": "up" - }, - "id": 9622, - "default": true - }, - { - "properties": { - "facing": "down" - }, - "id": 9623 - } - ] - }, - "minecraft:white_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9624, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9625 - }, - { - "properties": { - "facing": "west" - }, - "id": 9626 - }, - { - "properties": { - "facing": "east" - }, - "id": 9627 - } - ] - }, - "minecraft:orange_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9628, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9629 - }, - { - "properties": { - "facing": "west" - }, - "id": 9630 - }, - { - "properties": { - "facing": "east" - }, - "id": 9631 - } - ] - }, - "minecraft:magenta_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9632, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9633 - }, - { - "properties": { - "facing": "west" - }, - "id": 9634 - }, - { - "properties": { - "facing": "east" - }, - "id": 9635 - } - ] - }, - "minecraft:light_blue_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9636, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9637 - }, - { - "properties": { - "facing": "west" - }, - "id": 9638 - }, - { - "properties": { - "facing": "east" - }, - "id": 9639 - } - ] - }, - "minecraft:yellow_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9640, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9641 - }, - { - "properties": { - "facing": "west" - }, - "id": 9642 - }, - { - "properties": { - "facing": "east" - }, - "id": 9643 - } - ] - }, - "minecraft:lime_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9644, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9645 - }, - { - "properties": { - "facing": "west" - }, - "id": 9646 - }, - { - "properties": { - "facing": "east" - }, - "id": 9647 - } - ] - }, - "minecraft:pink_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9648, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9649 - }, - { - "properties": { - "facing": "west" - }, - "id": 9650 - }, - { - "properties": { - "facing": "east" - }, - "id": 9651 - } - ] - }, - "minecraft:gray_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9652, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9653 - }, - { - "properties": { - "facing": "west" - }, - "id": 9654 - }, - { - "properties": { - "facing": "east" - }, - "id": 9655 - } - ] - }, - "minecraft:light_gray_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9656, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9657 - }, - { - "properties": { - "facing": "west" - }, - "id": 9658 - }, - { - "properties": { - "facing": "east" - }, - "id": 9659 - } - ] - }, - "minecraft:cyan_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9660, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9661 - }, - { - "properties": { - "facing": "west" - }, - "id": 9662 - }, - { - "properties": { - "facing": "east" - }, - "id": 9663 - } - ] - }, - "minecraft:purple_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9664, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9665 - }, - { - "properties": { - "facing": "west" - }, - "id": 9666 - }, - { - "properties": { - "facing": "east" - }, - "id": 9667 - } - ] - }, - "minecraft:blue_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9668, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9669 - }, - { - "properties": { - "facing": "west" - }, - "id": 9670 - }, - { - "properties": { - "facing": "east" - }, - "id": 9671 - } - ] - }, - "minecraft:brown_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9672, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9673 - }, - { - "properties": { - "facing": "west" - }, - "id": 9674 - }, - { - "properties": { - "facing": "east" - }, - "id": 9675 - } - ] - }, - "minecraft:green_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9676, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9677 - }, - { - "properties": { - "facing": "west" - }, - "id": 9678 - }, - { - "properties": { - "facing": "east" - }, - "id": 9679 - } - ] - }, - "minecraft:red_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9680, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9681 - }, - { - "properties": { - "facing": "west" - }, - "id": 9682 - }, - { - "properties": { - "facing": "east" - }, - "id": 9683 - } - ] - }, - "minecraft:black_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9684, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 9685 - }, - { - "properties": { - "facing": "west" - }, - "id": 9686 - }, - { - "properties": { - "facing": "east" - }, - "id": 9687 - } - ] - }, - "minecraft:white_concrete": { - "states": [ - { - "id": 9688, - "default": true - } - ] - }, - "minecraft:orange_concrete": { - "states": [ - { - "id": 9689, - "default": true - } - ] - }, - "minecraft:magenta_concrete": { - "states": [ - { - "id": 9690, - "default": true - } - ] - }, - "minecraft:light_blue_concrete": { - "states": [ - { - "id": 9691, - "default": true - } - ] - }, - "minecraft:yellow_concrete": { - "states": [ - { - "id": 9692, - "default": true - } - ] - }, - "minecraft:lime_concrete": { - "states": [ - { - "id": 9693, - "default": true - } - ] - }, - "minecraft:pink_concrete": { - "states": [ - { - "id": 9694, - "default": true - } - ] - }, - "minecraft:gray_concrete": { - "states": [ - { - "id": 9695, - "default": true - } - ] - }, - "minecraft:light_gray_concrete": { - "states": [ - { - "id": 9696, - "default": true - } - ] - }, - "minecraft:cyan_concrete": { - "states": [ - { - "id": 9697, - "default": true - } - ] - }, - "minecraft:purple_concrete": { - "states": [ - { - "id": 9698, - "default": true - } - ] - }, - "minecraft:blue_concrete": { - "states": [ - { - "id": 9699, - "default": true - } - ] - }, - "minecraft:brown_concrete": { - "states": [ - { - "id": 9700, - "default": true - } - ] - }, - "minecraft:green_concrete": { - "states": [ - { - "id": 9701, - "default": true - } - ] - }, - "minecraft:red_concrete": { - "states": [ - { - "id": 9702, - "default": true - } - ] - }, - "minecraft:black_concrete": { - "states": [ - { - "id": 9703, - "default": true - } - ] - }, - "minecraft:white_concrete_powder": { - "states": [ - { - "id": 9704, - "default": true - } - ] - }, - "minecraft:orange_concrete_powder": { - "states": [ - { - "id": 9705, - "default": true - } - ] - }, - "minecraft:magenta_concrete_powder": { - "states": [ - { - "id": 9706, - "default": true - } - ] - }, - "minecraft:light_blue_concrete_powder": { - "states": [ - { - "id": 9707, - "default": true - } - ] - }, - "minecraft:yellow_concrete_powder": { - "states": [ - { - "id": 9708, - "default": true - } - ] - }, - "minecraft:lime_concrete_powder": { - "states": [ - { - "id": 9709, - "default": true - } - ] - }, - "minecraft:pink_concrete_powder": { - "states": [ - { - "id": 9710, - "default": true - } - ] - }, - "minecraft:gray_concrete_powder": { - "states": [ - { - "id": 9711, - "default": true - } - ] - }, - "minecraft:light_gray_concrete_powder": { - "states": [ - { - "id": 9712, - "default": true - } - ] - }, - "minecraft:cyan_concrete_powder": { - "states": [ - { - "id": 9713, - "default": true - } - ] - }, - "minecraft:purple_concrete_powder": { - "states": [ - { - "id": 9714, - "default": true - } - ] - }, - "minecraft:blue_concrete_powder": { - "states": [ - { - "id": 9715, - "default": true - } - ] - }, - "minecraft:brown_concrete_powder": { - "states": [ - { - "id": 9716, - "default": true - } - ] - }, - "minecraft:green_concrete_powder": { - "states": [ - { - "id": 9717, - "default": true - } - ] - }, - "minecraft:red_concrete_powder": { - "states": [ - { - "id": 9718, - "default": true - } - ] - }, - "minecraft:black_concrete_powder": { - "states": [ - { - "id": 9719, - "default": true - } - ] - }, - "minecraft:kelp": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - }, - "states": [ - { - "properties": { - "age": "0" - }, - "id": 9720, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 9721 - }, - { - "properties": { - "age": "2" - }, - "id": 9722 - }, - { - "properties": { - "age": "3" - }, - "id": 9723 - }, - { - "properties": { - "age": "4" - }, - "id": 9724 - }, - { - "properties": { - "age": "5" - }, - "id": 9725 - }, - { - "properties": { - "age": "6" - }, - "id": 9726 - }, - { - "properties": { - "age": "7" - }, - "id": 9727 - }, - { - "properties": { - "age": "8" - }, - "id": 9728 - }, - { - "properties": { - "age": "9" - }, - "id": 9729 - }, - { - "properties": { - "age": "10" - }, - "id": 9730 - }, - { - "properties": { - "age": "11" - }, - "id": 9731 - }, - { - "properties": { - "age": "12" - }, - "id": 9732 - }, - { - "properties": { - "age": "13" - }, - "id": 9733 - }, - { - "properties": { - "age": "14" - }, - "id": 9734 - }, - { - "properties": { - "age": "15" - }, - "id": 9735 - }, - { - "properties": { - "age": "16" - }, - "id": 9736 - }, - { - "properties": { - "age": "17" - }, - "id": 9737 - }, - { - "properties": { - "age": "18" - }, - "id": 9738 - }, - { - "properties": { - "age": "19" - }, - "id": 9739 - }, - { - "properties": { - "age": "20" - }, - "id": 9740 - }, - { - "properties": { - "age": "21" - }, - "id": 9741 - }, - { - "properties": { - "age": "22" - }, - "id": 9742 - }, - { - "properties": { - "age": "23" - }, - "id": 9743 - }, - { - "properties": { - "age": "24" - }, - "id": 9744 - }, - { - "properties": { - "age": "25" - }, - "id": 9745 - } - ] - }, - "minecraft:kelp_plant": { - "states": [ - { - "id": 9746, - "default": true - } - ] - }, - "minecraft:dried_kelp_block": { - "states": [ - { - "id": 9747, - "default": true - } - ] - }, - "minecraft:turtle_egg": { - "properties": { - "eggs": [ - "1", - "2", - "3", - "4" - ], - "hatch": [ - "0", - "1", - "2" - ] - }, - "states": [ - { - "properties": { - "eggs": "1", - "hatch": "0" - }, - "id": 9748, - "default": true - }, - { - "properties": { - "eggs": "1", - "hatch": "1" - }, - "id": 9749 - }, - { - "properties": { - "eggs": "1", - "hatch": "2" - }, - "id": 9750 - }, - { - "properties": { - "eggs": "2", - "hatch": "0" - }, - "id": 9751 - }, - { - "properties": { - "eggs": "2", - "hatch": "1" - }, - "id": 9752 - }, - { - "properties": { - "eggs": "2", - "hatch": "2" - }, - "id": 9753 - }, - { - "properties": { - "eggs": "3", - "hatch": "0" - }, - "id": 9754 - }, - { - "properties": { - "eggs": "3", - "hatch": "1" - }, - "id": 9755 - }, - { - "properties": { - "eggs": "3", - "hatch": "2" - }, - "id": 9756 - }, - { - "properties": { - "eggs": "4", - "hatch": "0" - }, - "id": 9757 - }, - { - "properties": { - "eggs": "4", - "hatch": "1" - }, - "id": 9758 - }, - { - "properties": { - "eggs": "4", - "hatch": "2" - }, - "id": 9759 - } - ] - }, - "minecraft:dead_tube_coral_block": { - "states": [ - { - "id": 9760, - "default": true - } - ] - }, - "minecraft:dead_brain_coral_block": { - "states": [ - { - "id": 9761, - "default": true - } - ] - }, - "minecraft:dead_bubble_coral_block": { - "states": [ - { - "id": 9762, - "default": true - } - ] - }, - "minecraft:dead_fire_coral_block": { - "states": [ - { - "id": 9763, - "default": true - } - ] - }, - "minecraft:dead_horn_coral_block": { - "states": [ - { - "id": 9764, - "default": true - } - ] - }, - "minecraft:tube_coral_block": { - "states": [ - { - "id": 9765, - "default": true - } - ] - }, - "minecraft:brain_coral_block": { - "states": [ - { - "id": 9766, - "default": true - } - ] - }, - "minecraft:bubble_coral_block": { - "states": [ - { - "id": 9767, - "default": true - } - ] - }, - "minecraft:fire_coral_block": { - "states": [ - { - "id": 9768, - "default": true - } - ] - }, - "minecraft:horn_coral_block": { - "states": [ - { - "id": 9769, - "default": true - } - ] - }, - "minecraft:dead_tube_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9770, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9771 - } - ] - }, - "minecraft:dead_brain_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9772, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9773 - } - ] - }, - "minecraft:dead_bubble_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9774, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9775 - } - ] - }, - "minecraft:dead_fire_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9776, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9777 - } - ] - }, - "minecraft:dead_horn_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9778, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9779 - } - ] - }, - "minecraft:tube_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9780, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9781 - } - ] - }, - "minecraft:brain_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9782, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9783 - } - ] - }, - "minecraft:bubble_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9784, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9785 - } - ] - }, - "minecraft:fire_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9786, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9787 - } - ] - }, - "minecraft:horn_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9788, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9789 - } - ] - }, - "minecraft:dead_tube_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9790, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9791 - } - ] - }, - "minecraft:dead_brain_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9792, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9793 - } - ] - }, - "minecraft:dead_bubble_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9794, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9795 - } - ] - }, - "minecraft:dead_fire_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9796, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9797 - } - ] - }, - "minecraft:dead_horn_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9798, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9799 - } - ] - }, - "minecraft:tube_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9800, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9801 - } - ] - }, - "minecraft:brain_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9802, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9803 - } - ] - }, - "minecraft:bubble_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9804, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9805 - } - ] - }, - "minecraft:fire_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9806, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9807 - } - ] - }, - "minecraft:horn_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9808, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9809 - } - ] - }, - "minecraft:dead_tube_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9810, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9811 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9812 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9813 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9814 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9815 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9816 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9817 - } - ] - }, - "minecraft:dead_brain_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9818, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9819 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9820 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9821 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9822 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9823 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9824 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9825 - } - ] - }, - "minecraft:dead_bubble_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9826, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9827 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9828 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9829 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9830 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9831 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9832 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9833 - } - ] - }, - "minecraft:dead_fire_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9834, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9835 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9836 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9837 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9838 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9839 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9840 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9841 - } - ] - }, - "minecraft:dead_horn_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9842, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9843 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9844 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9845 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9846 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9847 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9848 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9849 - } - ] - }, - "minecraft:tube_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9850, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9851 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9852 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9853 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9854 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9855 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9856 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9857 - } - ] - }, - "minecraft:brain_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9858, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9859 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9860 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9861 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9862 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9863 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9864 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9865 - } - ] - }, - "minecraft:bubble_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9866, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9867 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9868 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9869 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9870 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9871 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9872 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9873 - } - ] - }, - "minecraft:fire_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9874, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9875 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9876 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9877 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9878 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9879 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9880 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9881 - } - ] - }, - "minecraft:horn_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9882, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9883 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 9884 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 9885 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 9886 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 9887 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9888 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9889 - } - ] - }, - "minecraft:sea_pickle": { - "properties": { - "pickles": [ - "1", - "2", - "3", - "4" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "pickles": "1", - "waterlogged": "true" - }, - "id": 9890, - "default": true - }, - { - "properties": { - "pickles": "1", - "waterlogged": "false" - }, - "id": 9891 - }, - { - "properties": { - "pickles": "2", - "waterlogged": "true" - }, - "id": 9892 - }, - { - "properties": { - "pickles": "2", - "waterlogged": "false" - }, - "id": 9893 - }, - { - "properties": { - "pickles": "3", - "waterlogged": "true" - }, - "id": 9894 - }, - { - "properties": { - "pickles": "3", - "waterlogged": "false" - }, - "id": 9895 - }, - { - "properties": { - "pickles": "4", - "waterlogged": "true" - }, - "id": 9896 - }, - { - "properties": { - "pickles": "4", - "waterlogged": "false" - }, - "id": 9897 - } - ] - }, - "minecraft:blue_ice": { - "states": [ - { - "id": 9898, - "default": true - } - ] - }, - "minecraft:conduit": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 9899, - "default": true - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 9900 - } - ] - }, - "minecraft:bamboo_sapling": { - "states": [ - { - "id": 9901, - "default": true - } - ] - }, - "minecraft:bamboo": { - "properties": { - "age": [ - "0", - "1" - ], - "leaves": [ - "none", - "small", - "large" - ], - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "properties": { - "age": "0", - "leaves": "none", - "stage": "0" - }, - "id": 9902, - "default": true - }, - { - "properties": { - "age": "0", - "leaves": "none", - "stage": "1" - }, - "id": 9903 - }, - { - "properties": { - "age": "0", - "leaves": "small", - "stage": "0" - }, - "id": 9904 - }, - { - "properties": { - "age": "0", - "leaves": "small", - "stage": "1" - }, - "id": 9905 - }, - { - "properties": { - "age": "0", - "leaves": "large", - "stage": "0" - }, - "id": 9906 - }, - { - "properties": { - "age": "0", - "leaves": "large", - "stage": "1" - }, - "id": 9907 - }, - { - "properties": { - "age": "1", - "leaves": "none", - "stage": "0" - }, - "id": 9908 - }, - { - "properties": { - "age": "1", - "leaves": "none", - "stage": "1" - }, - "id": 9909 - }, - { - "properties": { - "age": "1", - "leaves": "small", - "stage": "0" - }, - "id": 9910 - }, - { - "properties": { - "age": "1", - "leaves": "small", - "stage": "1" - }, - "id": 9911 - }, - { - "properties": { - "age": "1", - "leaves": "large", - "stage": "0" - }, - "id": 9912 - }, - { - "properties": { - "age": "1", - "leaves": "large", - "stage": "1" - }, - "id": 9913 - } - ] - }, - "minecraft:potted_bamboo": { - "states": [ - { - "id": 9914, - "default": true - } - ] - }, - "minecraft:void_air": { - "states": [ - { - "id": 9915, - "default": true - } - ] - }, - "minecraft:cave_air": { - "states": [ - { - "id": 9916, - "default": true - } - ] - }, - "minecraft:bubble_column": { - "properties": { - "drag": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "drag": "true" - }, - "id": 9917, - "default": true - }, - { - "properties": { - "drag": "false" - }, - "id": 9918 - } - ] - }, - "minecraft:polished_granite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9919 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9920 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9921 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9922 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9923 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9924 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9925 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9926 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9927 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9928 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9929 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9930, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9931 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9932 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9933 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9934 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9935 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9936 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9937 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9938 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9939 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9940 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9941 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9942 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9943 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9944 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9945 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9946 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9947 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9948 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9949 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9950 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9951 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9952 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9953 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9954 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9955 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9956 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9957 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9958 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9959 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9960 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9961 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9962 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9963 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9964 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9965 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9966 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9967 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9968 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9969 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9970 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9971 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9972 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9973 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9974 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9975 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9976 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9977 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9978 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9979 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9980 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9981 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9982 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9983 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9984 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9985 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9986 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9987 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9988 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9989 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9990 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9991 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9992 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9993 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9994 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9995 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9996 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9997 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9998 - } - ] - }, - "minecraft:smooth_red_sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9999 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10000 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10001 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10002 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10003 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10004 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10005 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10006 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10007 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10008 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10009 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10010, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10011 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10012 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10013 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10014 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10015 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10016 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10017 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10018 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10019 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10020 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10021 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10022 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10023 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10024 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10025 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10026 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10027 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10028 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10029 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10030 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10031 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10032 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10033 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10034 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10035 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10036 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10037 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10038 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10039 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10040 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10041 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10042 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10043 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10044 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10045 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10046 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10047 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10048 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10049 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10050 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10051 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10052 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10053 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10054 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10055 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10056 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10057 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10058 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10059 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10060 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10061 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10062 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10063 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10064 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10065 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10066 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10067 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10068 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10069 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10070 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10071 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10072 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10073 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10074 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10075 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10076 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10077 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10078 - } - ] - }, - "minecraft:mossy_stone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10079 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10080 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10081 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10082 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10083 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10084 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10085 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10086 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10087 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10088 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10089 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10090, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10091 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10092 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10093 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10094 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10095 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10096 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10097 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10098 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10099 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10100 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10101 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10102 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10103 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10104 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10105 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10106 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10107 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10108 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10109 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10110 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10111 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10112 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10113 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10114 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10115 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10116 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10117 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10118 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10119 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10120 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10121 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10122 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10123 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10124 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10125 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10126 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10127 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10128 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10129 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10130 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10131 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10132 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10133 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10134 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10135 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10136 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10137 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10138 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10139 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10140 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10141 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10142 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10143 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10144 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10145 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10146 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10147 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10148 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10149 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10150 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10151 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10152 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10153 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10154 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10155 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10156 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10157 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10158 - } - ] - }, - "minecraft:polished_diorite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10159 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10160 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10161 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10162 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10163 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10164 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10165 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10166 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10167 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10168 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10169 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10170, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10171 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10172 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10173 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10174 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10175 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10176 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10177 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10178 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10179 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10180 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10181 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10182 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10183 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10184 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10185 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10186 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10187 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10188 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10189 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10190 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10191 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10192 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10193 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10194 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10195 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10196 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10197 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10198 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10199 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10200 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10201 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10202 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10203 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10204 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10205 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10206 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10207 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10208 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10209 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10210 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10211 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10212 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10213 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10214 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10215 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10216 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10217 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10218 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10219 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10220 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10221 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10222 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10223 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10224 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10225 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10226 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10227 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10228 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10229 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10230 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10231 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10232 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10233 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10234 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10235 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10236 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10237 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10238 - } - ] - }, - "minecraft:mossy_cobblestone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10239 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10240 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10241 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10242 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10243 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10244 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10245 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10246 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10247 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10248 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10249 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10250, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10251 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10252 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10253 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10254 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10255 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10256 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10257 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10258 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10259 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10260 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10261 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10262 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10263 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10264 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10265 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10266 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10267 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10268 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10269 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10270 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10271 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10272 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10273 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10274 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10275 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10276 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10277 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10278 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10279 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10280 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10281 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10282 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10283 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10284 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10285 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10286 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10287 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10288 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10289 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10290 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10291 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10292 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10293 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10294 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10295 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10296 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10297 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10298 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10299 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10300 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10301 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10302 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10303 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10304 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10305 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10306 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10307 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10308 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10309 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10310 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10311 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10312 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10313 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10314 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10315 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10316 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10317 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10318 - } - ] - }, - "minecraft:end_stone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10319 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10320 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10321 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10322 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10323 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10324 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10325 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10326 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10327 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10328 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10329 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10330, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10331 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10332 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10333 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10334 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10335 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10336 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10337 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10338 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10339 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10340 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10341 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10342 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10343 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10344 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10345 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10346 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10347 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10348 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10349 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10350 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10351 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10352 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10353 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10354 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10355 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10356 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10357 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10358 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10359 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10360 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10361 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10362 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10363 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10364 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10365 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10366 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10367 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10368 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10369 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10370 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10371 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10372 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10373 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10374 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10375 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10376 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10377 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10378 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10379 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10380 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10381 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10382 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10383 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10384 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10385 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10386 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10387 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10388 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10389 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10390 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10391 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10392 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10393 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10394 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10395 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10396 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10397 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10398 - } - ] - }, - "minecraft:stone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10399 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10400 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10401 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10402 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10403 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10404 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10405 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10406 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10407 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10408 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10409 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10410, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10411 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10412 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10413 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10414 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10415 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10416 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10417 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10418 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10419 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10420 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10421 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10422 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10423 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10424 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10425 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10426 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10427 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10428 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10429 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10430 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10431 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10432 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10433 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10434 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10435 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10436 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10437 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10438 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10439 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10440 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10441 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10442 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10443 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10444 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10445 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10446 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10447 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10448 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10449 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10450 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10451 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10452 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10453 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10454 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10455 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10456 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10457 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10458 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10459 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10460 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10461 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10462 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10463 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10464 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10465 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10466 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10467 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10468 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10469 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10470 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10471 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10472 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10473 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10474 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10475 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10476 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10477 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10478 - } - ] - }, - "minecraft:smooth_sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10479 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10480 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10481 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10482 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10483 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10484 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10485 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10486 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10487 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10488 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10489 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10490, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10491 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10492 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10493 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10494 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10495 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10496 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10497 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10498 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10499 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10500 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10501 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10502 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10503 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10504 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10505 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10506 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10507 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10508 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10509 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10510 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10511 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10512 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10513 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10514 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10515 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10516 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10517 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10518 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10519 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10520 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10521 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10522 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10523 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10524 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10525 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10526 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10527 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10528 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10529 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10530 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10531 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10532 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10533 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10534 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10535 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10536 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10537 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10538 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10539 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10540 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10541 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10542 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10543 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10544 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10545 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10546 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10547 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10548 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10549 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10550 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10551 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10552 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10553 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10554 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10555 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10556 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10557 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10558 - } - ] - }, - "minecraft:smooth_quartz_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10559 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10560 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10561 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10562 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10563 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10564 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10565 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10566 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10567 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10568 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10569 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10570, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10571 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10572 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10573 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10574 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10575 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10576 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10577 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10578 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10579 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10580 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10581 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10582 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10583 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10584 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10585 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10586 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10587 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10588 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10589 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10590 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10591 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10592 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10593 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10594 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10595 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10596 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10597 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10598 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10599 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10600 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10601 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10602 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10603 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10604 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10605 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10606 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10607 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10608 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10609 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10610 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10611 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10612 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10613 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10614 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10615 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10616 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10617 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10618 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10619 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10620 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10621 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10622 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10623 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10624 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10625 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10626 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10627 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10628 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10629 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10630 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10631 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10632 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10633 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10634 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10635 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10636 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10637 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10638 - } - ] - }, - "minecraft:granite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10639 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10640 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10641 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10642 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10643 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10644 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10645 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10646 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10647 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10648 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10649 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10650, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10651 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10652 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10653 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10654 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10655 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10656 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10657 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10658 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10659 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10660 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10661 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10662 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10663 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10664 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10665 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10666 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10667 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10668 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10669 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10670 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10671 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10672 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10673 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10674 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10675 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10676 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10677 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10678 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10679 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10680 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10681 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10682 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10683 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10684 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10685 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10686 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10687 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10688 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10689 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10690 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10691 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10692 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10693 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10694 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10695 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10696 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10697 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10698 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10699 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10700 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10701 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10702 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10703 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10704 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10705 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10706 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10707 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10708 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10709 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10710 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10711 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10712 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10713 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10714 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10715 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10716 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10717 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10718 - } - ] - }, - "minecraft:andesite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10719 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10720 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10721 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10722 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10723 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10724 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10725 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10726 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10727 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10728 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10729 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10730, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10731 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10732 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10733 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10734 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10735 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10736 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10737 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10738 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10739 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10740 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10741 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10742 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10743 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10744 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10745 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10746 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10747 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10748 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10749 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10750 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10751 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10752 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10753 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10754 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10755 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10756 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10757 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10758 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10759 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10760 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10761 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10762 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10763 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10764 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10765 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10766 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10767 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10768 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10769 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10770 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10771 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10772 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10773 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10774 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10775 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10776 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10777 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10778 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10779 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10780 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10781 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10782 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10783 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10784 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10785 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10786 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10787 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10788 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10789 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10790 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10791 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10792 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10793 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10794 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10795 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10796 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10797 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10798 - } - ] - }, - "minecraft:red_nether_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10799 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10800 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10801 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10802 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10803 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10804 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10805 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10806 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10807 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10808 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10809 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10810, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10811 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10812 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10813 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10814 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10815 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10816 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10817 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10818 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10819 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10820 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10821 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10822 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10823 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10824 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10825 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10826 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10827 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10828 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10829 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10830 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10831 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10832 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10833 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10834 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10835 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10836 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10837 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10838 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10839 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10840 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10841 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10842 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10843 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10844 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10845 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10846 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10847 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10848 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10849 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10850 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10851 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10852 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10853 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10854 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10855 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10856 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10857 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10858 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10859 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10860 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10861 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10862 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10863 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10864 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10865 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10866 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10867 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10868 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10869 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10870 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10871 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10872 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10873 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10874 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10875 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10876 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10877 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10878 - } - ] - }, - "minecraft:polished_andesite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10879 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10880 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10881 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10882 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10883 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10884 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10885 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10886 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10887 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10888 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10889 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10890, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10891 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10892 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10893 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10894 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10895 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10896 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10897 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10898 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10899 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10900 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10901 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10902 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10903 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10904 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10905 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10906 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10907 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10908 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10909 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10910 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10911 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10912 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10913 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10914 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10915 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10916 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10917 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10918 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10919 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10920 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10921 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10922 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10923 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10924 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10925 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10926 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10927 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10928 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10929 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10930 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10931 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10932 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10933 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10934 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10935 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10936 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10937 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10938 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10939 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10940 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10941 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10942 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10943 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10944 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10945 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10946 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10947 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10948 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10949 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10950 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10951 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10952 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10953 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10954 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10955 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10956 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10957 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10958 - } - ] - }, - "minecraft:diorite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10959 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10960 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10961 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10962 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10963 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10964 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10965 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10966 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10967 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10968 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10969 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10970, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10971 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10972 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10973 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10974 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10975 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10976 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10977 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10978 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10979 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10980 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10981 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10982 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10983 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10984 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10985 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10986 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10987 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10988 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10989 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10990 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10991 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10992 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10993 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10994 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10995 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10996 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10997 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10998 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10999 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 11000 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 11001 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 11002 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 11003 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 11004 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 11005 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 11006 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 11007 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 11008 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 11009 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 11010 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 11011 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 11012 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 11013 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 11014 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 11015 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 11016 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 11017 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 11018 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 11019 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 11020 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 11021 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 11022 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 11023 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 11024 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 11025 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 11026 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 11027 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 11028 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 11029 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 11030 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 11031 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 11032 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 11033 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 11034 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 11035 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 11036 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 11037 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 11038 - } - ] - }, - "minecraft:polished_granite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11039 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11040 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11041 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11042, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11043 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11044 - } - ] - }, - "minecraft:smooth_red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11045 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11046 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11047 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11048, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11049 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11050 - } - ] - }, - "minecraft:mossy_stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11051 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11052 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11053 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11054, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11055 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11056 - } - ] - }, - "minecraft:polished_diorite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11057 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11058 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11059 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11060, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11061 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11062 - } - ] - }, - "minecraft:mossy_cobblestone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11063 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11064 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11065 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11066, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11067 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11068 - } - ] - }, - "minecraft:end_stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11069 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11070 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11071 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11072, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11073 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11074 - } - ] - }, - "minecraft:smooth_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11075 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11076 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11077 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11078, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11079 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11080 - } - ] - }, - "minecraft:smooth_quartz_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11081 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11082 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11083 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11084, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11085 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11086 - } - ] - }, - "minecraft:granite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11087 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11088 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11089 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11090, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11091 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11092 - } - ] - }, - "minecraft:andesite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11093 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11094 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11095 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11096, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11097 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11098 - } - ] - }, - "minecraft:red_nether_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11099 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11100 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11101 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11102, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11103 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11104 - } - ] - }, - "minecraft:polished_andesite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11105 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11106 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11107 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11108, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11109 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11110 - } - ] - }, - "minecraft:diorite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11111 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11112 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11113 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11114, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11115 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11116 - } - ] - }, - "minecraft:brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11117 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11118 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11119 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11120, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11121 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11122 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11123 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11124 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11125 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11126 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11127 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11128 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11129 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11130 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11131 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11132 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11133 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11134 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11135 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11136 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11137 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11138 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11139 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11140 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11141 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11142 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11143 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11144 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11145 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11146 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11147 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11148 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11149 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11150 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11151 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11152 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11153 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11154 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11155 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11156 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11157 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11158 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11159 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11160 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11161 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11162 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11163 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11164 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11165 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11166 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11167 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11168 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11169 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11170 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11171 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11172 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11173 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11174 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11175 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11176 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11177 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11178 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11179 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11180 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11181 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11182 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11183 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11184 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11185 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11186 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11187 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11188 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11189 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11190 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11191 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11192 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11193 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11194 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11195 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11196 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11197 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11198 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11199 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11200 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11201 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11202 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11203 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11204 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11205 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11206 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11207 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11208 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11209 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11210 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11211 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11212 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11213 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11214 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11215 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11216 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11217 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11218 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11219 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11220 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11221 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11222 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11223 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11224 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11225 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11226 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11227 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11228 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11229 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11230 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11231 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11232 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11233 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11234 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11235 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11236 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11237 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11238 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11239 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11240 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11241 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11242 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11243 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11244 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11245 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11246 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11247 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11248 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11249 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11250 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11251 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11252 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11253 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11254 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11255 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11256 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11257 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11258 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11259 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11260 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11261 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11262 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11263 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11264 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11265 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11266 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11267 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11268 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11269 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11270 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11271 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11272 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11273 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11274 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11275 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11276 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11277 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11278 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11279 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11280 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11281 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11282 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11283 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11284 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11285 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11286 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11287 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11288 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11289 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11290 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11291 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11292 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11293 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11294 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11295 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11296 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11297 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11298 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11299 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11300 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11301 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11302 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11303 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11304 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11305 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11306 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11307 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11308 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11309 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11310 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11311 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11312 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11313 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11314 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11315 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11316 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11317 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11318 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11319 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11320 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11321 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11322 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11323 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11324 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11325 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11326 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11327 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11328 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11329 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11330 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11331 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11332 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11333 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11334 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11335 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11336 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11337 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11338 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11339 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11340 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11341 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11342 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11343 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11344 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11345 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11346 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11347 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11348 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11349 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11350 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11351 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11352 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11353 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11354 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11355 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11356 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11357 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11358 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11359 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11360 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11361 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11362 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11363 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11364 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11365 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11366 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11367 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11368 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11369 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11370 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11371 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11372 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11373 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11374 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11375 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11376 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11377 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11378 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11379 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11380 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11381 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11382 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11383 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11384 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11385 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11386 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11387 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11388 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11389 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11390 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11391 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11392 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11393 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11394 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11395 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11396 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11397 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11398 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11399 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11400 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11401 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11402 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11403 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11404 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11405 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11406 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11407 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11408 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11409 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11410 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11411 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11412 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11413 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11414 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11415 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11416 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11417 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11418 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11419 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11420 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11421 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11422 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11423 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11424 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11425 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11426 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11427 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11428 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11429 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11430 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11431 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11432 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11433 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11434 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11435 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11436 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11437 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11438 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11439 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11440 - } - ] - }, - "minecraft:prismarine_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11441 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11442 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11443 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11444, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11445 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11446 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11447 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11448 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11449 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11450 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11451 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11452 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11453 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11454 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11455 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11456 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11457 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11458 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11459 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11460 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11461 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11462 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11463 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11464 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11465 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11466 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11467 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11468 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11469 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11470 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11471 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11472 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11473 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11474 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11475 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11476 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11477 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11478 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11479 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11480 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11481 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11482 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11483 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11484 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11485 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11486 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11487 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11488 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11489 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11490 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11491 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11492 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11493 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11494 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11495 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11496 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11497 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11498 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11499 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11500 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11501 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11502 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11503 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11504 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11505 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11506 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11507 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11508 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11509 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11510 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11511 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11512 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11513 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11514 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11515 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11516 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11517 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11518 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11519 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11520 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11521 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11522 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11523 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11524 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11525 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11526 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11527 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11528 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11529 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11530 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11531 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11532 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11533 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11534 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11535 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11536 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11537 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11538 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11539 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11540 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11541 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11542 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11543 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11544 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11545 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11546 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11547 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11548 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11549 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11550 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11551 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11552 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11553 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11554 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11555 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11556 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11557 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11558 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11559 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11560 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11561 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11562 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11563 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11564 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11565 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11566 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11567 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11568 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11569 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11570 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11571 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11572 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11573 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11574 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11575 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11576 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11577 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11578 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11579 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11580 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11581 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11582 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11583 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11584 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11585 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11586 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11587 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11588 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11589 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11590 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11591 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11592 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11593 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11594 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11595 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11596 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11597 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11598 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11599 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11600 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11601 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11602 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11603 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11604 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11605 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11606 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11607 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11608 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11609 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11610 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11611 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11612 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11613 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11614 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11615 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11616 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11617 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11618 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11619 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11620 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11621 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11622 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11623 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11624 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11625 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11626 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11627 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11628 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11629 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11630 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11631 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11632 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11633 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11634 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11635 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11636 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11637 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11638 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11639 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11640 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11641 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11642 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11643 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11644 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11645 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11646 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11647 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11648 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11649 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11650 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11651 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11652 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11653 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11654 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11655 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11656 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11657 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11658 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11659 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11660 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11661 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11662 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11663 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11664 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11665 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11666 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11667 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11668 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11669 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11670 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11671 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11672 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11673 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11674 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11675 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11676 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11677 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11678 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11679 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11680 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11681 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11682 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11683 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11684 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11685 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11686 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11687 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11688 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11689 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11690 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11691 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11692 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11693 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11694 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11695 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11696 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11697 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11698 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11699 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11700 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11701 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11702 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11703 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11704 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11705 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11706 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11707 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11708 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11709 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11710 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11711 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11712 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11713 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11714 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11715 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11716 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11717 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11718 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11719 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11720 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11721 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11722 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11723 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11724 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11725 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11726 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11727 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11728 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11729 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11730 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11731 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11732 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11733 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11734 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11735 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11736 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11737 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11738 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11739 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11740 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11741 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11742 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11743 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11744 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11745 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11746 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11747 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11748 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11749 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11750 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11751 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11752 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11753 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11754 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11755 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11756 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11757 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11758 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11759 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11760 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11761 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11762 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11763 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11764 - } - ] - }, - "minecraft:red_sandstone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11765 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11766 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11767 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11768, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11769 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11770 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11771 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11772 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11773 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11774 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11775 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11776 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11777 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11778 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11779 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11780 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11781 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11782 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11783 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11784 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11785 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11786 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11787 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11788 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11789 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11790 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11791 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11792 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11793 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11794 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11795 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11796 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11797 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11798 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11799 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11800 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11801 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11802 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11803 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11804 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11805 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11806 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11807 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11808 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11809 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11810 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11811 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11812 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11813 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11814 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11815 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11816 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11817 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11818 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11819 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11820 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11821 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11822 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11823 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11824 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11825 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11826 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11827 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11828 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11829 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11830 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11831 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11832 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11833 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11834 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11835 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11836 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11837 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11838 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11839 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11840 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11841 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11842 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11843 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11844 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11845 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11846 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11847 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11848 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11849 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11850 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11851 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11852 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11853 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11854 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11855 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11856 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11857 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11858 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11859 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11860 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11861 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11862 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11863 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11864 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11865 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11866 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11867 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11868 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11869 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11870 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11871 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11872 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11873 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11874 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11875 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11876 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11877 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11878 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11879 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11880 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11881 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11882 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11883 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11884 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11885 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11886 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11887 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11888 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11889 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11890 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11891 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11892 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11893 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11894 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11895 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11896 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11897 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11898 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11899 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11900 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11901 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11902 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11903 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11904 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11905 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11906 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11907 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11908 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11909 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11910 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11911 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11912 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11913 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11914 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11915 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11916 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11917 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11918 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11919 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11920 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11921 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11922 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11923 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11924 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11925 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11926 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11927 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11928 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11929 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11930 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11931 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11932 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11933 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11934 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11935 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11936 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11937 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11938 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11939 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11940 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11941 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11942 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11943 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11944 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11945 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11946 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11947 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11948 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11949 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11950 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11951 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11952 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11953 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11954 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11955 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11956 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11957 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11958 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11959 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11960 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11961 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11962 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11963 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11964 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11965 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11966 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11967 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11968 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11969 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11970 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11971 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11972 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11973 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11974 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11975 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11976 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11977 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11978 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11979 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11980 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11981 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11982 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11983 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11984 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11985 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11986 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11987 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11988 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11989 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11990 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11991 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11992 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11993 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11994 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11995 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11996 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11997 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11998 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11999 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12000 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12001 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12002 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12003 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12004 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12005 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12006 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12007 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12008 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12009 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12010 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12011 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12012 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12013 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12014 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12015 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12016 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12017 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12018 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12019 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12020 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12021 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12022 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12023 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12024 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12025 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12026 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12027 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12028 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12029 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12030 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12031 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12032 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12033 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12034 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12035 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12036 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12037 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12038 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12039 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12040 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12041 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12042 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12043 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12044 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12045 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12046 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12047 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12048 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12049 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12050 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12051 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12052 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12053 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12054 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12055 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12056 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12057 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12058 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12059 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12060 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12061 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12062 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12063 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12064 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12065 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12066 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12067 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12068 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12069 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12070 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12071 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12072 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12073 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12074 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12075 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12076 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12077 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12078 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12079 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12080 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12081 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12082 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12083 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12084 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12085 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12086 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12087 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12088 - } - ] - }, - "minecraft:mossy_stone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12089 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12090 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12091 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12092, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12093 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12094 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12095 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12096 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12097 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12098 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12099 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12100 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12101 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12102 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12103 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12104 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12105 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12106 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12107 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12108 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12109 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12110 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12111 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12112 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12113 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12114 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12115 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12116 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12117 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12118 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12119 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12120 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12121 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12122 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12123 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12124 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12125 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12126 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12127 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12128 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12129 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12130 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12131 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12132 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12133 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12134 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12135 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12136 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12137 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12138 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12139 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12140 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12141 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12142 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12143 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12144 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12145 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12146 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12147 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12148 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12149 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12150 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12151 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12152 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12153 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12154 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12155 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12156 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12157 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12158 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12159 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12160 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12161 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12162 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12163 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12164 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12165 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12166 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12167 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12168 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12169 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12170 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12171 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12172 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12173 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12174 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12175 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12176 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12177 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12178 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12179 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12180 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12181 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12182 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12183 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12184 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12185 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12186 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12187 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12188 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12189 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12190 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12191 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12192 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12193 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12194 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12195 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12196 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12197 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12198 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12199 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12200 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12201 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12202 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12203 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12204 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12205 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12206 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12207 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12208 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12209 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12210 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12211 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12212 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12213 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12214 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12215 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12216 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12217 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12218 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12219 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12220 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12221 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12222 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12223 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12224 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12225 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12226 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12227 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12228 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12229 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12230 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12231 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12232 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12233 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12234 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12235 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12236 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12237 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12238 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12239 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12240 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12241 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12242 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12243 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12244 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12245 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12246 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12247 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12248 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12249 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12250 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12251 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12252 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12253 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12254 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12255 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12256 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12257 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12258 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12259 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12260 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12261 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12262 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12263 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12264 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12265 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12266 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12267 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12268 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12269 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12270 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12271 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12272 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12273 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12274 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12275 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12276 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12277 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12278 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12279 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12280 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12281 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12282 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12283 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12284 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12285 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12286 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12287 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12288 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12289 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12290 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12291 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12292 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12293 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12294 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12295 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12296 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12297 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12298 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12299 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12300 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12301 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12302 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12303 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12304 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12305 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12306 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12307 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12308 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12309 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12310 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12311 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12312 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12313 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12314 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12315 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12316 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12317 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12318 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12319 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12320 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12321 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12322 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12323 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12324 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12325 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12326 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12327 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12328 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12329 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12330 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12331 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12332 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12333 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12334 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12335 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12336 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12337 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12338 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12339 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12340 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12341 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12342 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12343 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12344 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12345 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12346 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12347 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12348 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12349 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12350 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12351 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12352 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12353 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12354 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12355 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12356 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12357 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12358 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12359 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12360 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12361 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12362 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12363 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12364 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12365 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12366 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12367 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12368 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12369 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12370 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12371 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12372 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12373 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12374 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12375 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12376 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12377 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12378 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12379 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12380 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12381 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12382 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12383 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12384 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12385 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12386 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12387 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12388 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12389 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12390 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12391 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12392 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12393 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12394 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12395 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12396 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12397 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12398 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12399 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12400 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12401 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12402 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12403 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12404 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12405 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12406 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12407 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12408 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12409 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12410 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12411 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12412 - } - ] - }, - "minecraft:granite_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12413 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12414 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12415 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12416, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12417 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12418 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12419 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12420 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12421 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12422 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12423 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12424 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12425 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12426 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12427 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12428 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12429 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12430 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12431 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12432 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12433 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12434 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12435 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12436 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12437 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12438 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12439 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12440 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12441 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12442 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12443 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12444 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12445 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12446 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12447 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12448 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12449 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12450 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12451 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12452 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12453 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12454 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12455 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12456 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12457 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12458 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12459 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12460 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12461 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12462 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12463 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12464 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12465 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12466 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12467 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12468 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12469 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12470 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12471 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12472 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12473 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12474 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12475 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12476 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12477 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12478 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12479 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12480 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12481 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12482 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12483 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12484 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12485 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12486 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12487 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12488 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12489 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12490 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12491 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12492 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12493 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12494 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12495 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12496 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12497 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12498 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12499 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12500 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12501 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12502 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12503 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12504 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12505 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12506 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12507 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12508 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12509 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12510 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12511 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12512 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12513 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12514 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12515 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12516 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12517 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12518 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12519 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12520 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12521 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12522 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12523 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12524 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12525 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12526 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12527 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12528 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12529 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12530 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12531 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12532 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12533 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12534 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12535 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12536 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12537 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12538 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12539 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12540 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12541 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12542 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12543 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12544 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12545 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12546 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12547 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12548 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12549 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12550 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12551 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12552 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12553 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12554 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12555 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12556 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12557 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12558 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12559 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12560 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12561 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12562 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12563 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12564 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12565 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12566 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12567 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12568 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12569 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12570 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12571 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12572 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12573 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12574 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12575 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12576 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12577 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12578 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12579 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12580 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12581 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12582 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12583 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12584 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12585 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12586 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12587 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12588 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12589 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12590 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12591 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12592 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12593 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12594 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12595 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12596 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12597 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12598 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12599 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12600 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12601 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12602 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12603 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12604 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12605 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12606 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12607 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12608 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12609 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12610 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12611 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12612 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12613 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12614 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12615 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12616 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12617 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12618 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12619 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12620 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12621 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12622 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12623 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12624 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12625 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12626 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12627 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12628 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12629 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12630 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12631 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12632 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12633 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12634 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12635 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12636 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12637 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12638 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12639 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12640 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12641 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12642 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12643 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12644 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12645 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12646 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12647 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12648 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12649 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12650 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12651 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12652 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12653 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12654 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12655 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12656 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12657 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12658 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12659 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12660 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12661 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12662 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12663 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12664 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12665 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12666 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12667 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12668 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12669 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12670 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12671 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12672 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12673 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12674 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12675 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12676 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12677 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12678 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12679 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12680 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12681 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12682 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12683 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12684 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12685 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12686 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12687 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12688 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12689 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12690 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12691 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12692 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12693 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12694 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12695 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12696 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12697 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12698 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12699 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12700 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12701 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12702 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12703 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12704 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12705 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12706 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12707 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12708 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12709 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12710 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12711 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12712 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12713 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12714 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12715 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12716 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12717 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12718 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12719 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12720 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12721 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12722 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12723 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12724 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12725 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12726 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12727 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12728 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12729 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12730 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12731 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12732 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12733 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12734 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12735 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12736 - } - ] - }, - "minecraft:stone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12737 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12738 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12739 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12740, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12741 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12742 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12743 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12744 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12745 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12746 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12747 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12748 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12749 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12750 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12751 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12752 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12753 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12754 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12755 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12756 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12757 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12758 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12759 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12760 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12761 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12762 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12763 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12764 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12765 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12766 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12767 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12768 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12769 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12770 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12771 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12772 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12773 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12774 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12775 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12776 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12777 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12778 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12779 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12780 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12781 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12782 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12783 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12784 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12785 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12786 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12787 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12788 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12789 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12790 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12791 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12792 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12793 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12794 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12795 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12796 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12797 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12798 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12799 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12800 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12801 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12802 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12803 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12804 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12805 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12806 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12807 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12808 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12809 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12810 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12811 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12812 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12813 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12814 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12815 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12816 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12817 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12818 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12819 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12820 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12821 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12822 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12823 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12824 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12825 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12826 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12827 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12828 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12829 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12830 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12831 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12832 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12833 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12834 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12835 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12836 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12837 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12838 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12839 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12840 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12841 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12842 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12843 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12844 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12845 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12846 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12847 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12848 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12849 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12850 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12851 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12852 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12853 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12854 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12855 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12856 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12857 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12858 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12859 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12860 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12861 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12862 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12863 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12864 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12865 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12866 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12867 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12868 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12869 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12870 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12871 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12872 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12873 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12874 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12875 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12876 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12877 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12878 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12879 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12880 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12881 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12882 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12883 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12884 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12885 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12886 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12887 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12888 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12889 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12890 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12891 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12892 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12893 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12894 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12895 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12896 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12897 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12898 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12899 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12900 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12901 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12902 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12903 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12904 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12905 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12906 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12907 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12908 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12909 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12910 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12911 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12912 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12913 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12914 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12915 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12916 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12917 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12918 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12919 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12920 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12921 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12922 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12923 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12924 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12925 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12926 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12927 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12928 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12929 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12930 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12931 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12932 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12933 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12934 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12935 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12936 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12937 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12938 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12939 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12940 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12941 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12942 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12943 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12944 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12945 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12946 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12947 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12948 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12949 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12950 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12951 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12952 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12953 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12954 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12955 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12956 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12957 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12958 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12959 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12960 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12961 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12962 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12963 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12964 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12965 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12966 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12967 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12968 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12969 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12970 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12971 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12972 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12973 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12974 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12975 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12976 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12977 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12978 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12979 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12980 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12981 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12982 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12983 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12984 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12985 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12986 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12987 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12988 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12989 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12990 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12991 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12992 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12993 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12994 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12995 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12996 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12997 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12998 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12999 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13000 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13001 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13002 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13003 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13004 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13005 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13006 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13007 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13008 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13009 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13010 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13011 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13012 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13013 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13014 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13015 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13016 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13017 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13018 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13019 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13020 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13021 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13022 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13023 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13024 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13025 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13026 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13027 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13028 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13029 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13030 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13031 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13032 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13033 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13034 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13035 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13036 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13037 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13038 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13039 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13040 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13041 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13042 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13043 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13044 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13045 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13046 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13047 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13048 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13049 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13050 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13051 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13052 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13053 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13054 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13055 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13056 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13057 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13058 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13059 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13060 - } - ] - }, - "minecraft:nether_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13061 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13062 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13063 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13064, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13065 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13066 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13067 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13068 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13069 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13070 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13071 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13072 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13073 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13074 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13075 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13076 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13077 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13078 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13079 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13080 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13081 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13082 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13083 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13084 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13085 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13086 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13087 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13088 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13089 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13090 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13091 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13092 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13093 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13094 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13095 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13096 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13097 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13098 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13099 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13100 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13101 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13102 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13103 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13104 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13105 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13106 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13107 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13108 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13109 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13110 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13111 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13112 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13113 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13114 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13115 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13116 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13117 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13118 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13119 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13120 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13121 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13122 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13123 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13124 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13125 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13126 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13127 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13128 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13129 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13130 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13131 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13132 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13133 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13134 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13135 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13136 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13137 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13138 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13139 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13140 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13141 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13142 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13143 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13144 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13145 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13146 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13147 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13148 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13149 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13150 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13151 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13152 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13153 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13154 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13155 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13156 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13157 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13158 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13159 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13160 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13161 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13162 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13163 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13164 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13165 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13166 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13167 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13168 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13169 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13170 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13171 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13172 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13173 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13174 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13175 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13176 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13177 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13178 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13179 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13180 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13181 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13182 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13183 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13184 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13185 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13186 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13187 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13188 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13189 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13190 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13191 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13192 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13193 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13194 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13195 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13196 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13197 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13198 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13199 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13200 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13201 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13202 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13203 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13204 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13205 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13206 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13207 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13208 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13209 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13210 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13211 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13212 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13213 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13214 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13215 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13216 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13217 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13218 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13219 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13220 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13221 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13222 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13223 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13224 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13225 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13226 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13227 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13228 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13229 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13230 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13231 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13232 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13233 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13234 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13235 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13236 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13237 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13238 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13239 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13240 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13241 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13242 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13243 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13244 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13245 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13246 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13247 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13248 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13249 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13250 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13251 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13252 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13253 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13254 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13255 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13256 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13257 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13258 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13259 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13260 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13261 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13262 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13263 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13264 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13265 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13266 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13267 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13268 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13269 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13270 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13271 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13272 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13273 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13274 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13275 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13276 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13277 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13278 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13279 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13280 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13281 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13282 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13283 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13284 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13285 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13286 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13287 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13288 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13289 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13290 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13291 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13292 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13293 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13294 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13295 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13296 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13297 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13298 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13299 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13300 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13301 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13302 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13303 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13304 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13305 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13306 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13307 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13308 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13309 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13310 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13311 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13312 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13313 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13314 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13315 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13316 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13317 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13318 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13319 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13320 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13321 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13322 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13323 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13324 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13325 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13326 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13327 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13328 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13329 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13330 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13331 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13332 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13333 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13334 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13335 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13336 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13337 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13338 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13339 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13340 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13341 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13342 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13343 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13344 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13345 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13346 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13347 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13348 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13349 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13350 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13351 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13352 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13353 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13354 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13355 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13356 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13357 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13358 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13359 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13360 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13361 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13362 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13363 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13364 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13365 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13366 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13367 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13368 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13369 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13370 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13371 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13372 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13373 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13374 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13375 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13376 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13377 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13378 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13379 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13380 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13381 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13382 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13383 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13384 - } - ] - }, - "minecraft:andesite_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13385 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13386 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13387 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13388, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13389 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13390 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13391 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13392 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13393 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13394 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13395 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13396 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13397 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13398 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13399 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13400 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13401 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13402 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13403 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13404 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13405 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13406 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13407 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13408 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13409 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13410 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13411 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13412 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13413 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13414 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13415 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13416 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13417 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13418 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13419 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13420 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13421 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13422 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13423 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13424 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13425 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13426 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13427 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13428 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13429 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13430 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13431 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13432 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13433 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13434 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13435 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13436 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13437 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13438 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13439 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13440 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13441 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13442 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13443 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13444 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13445 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13446 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13447 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13448 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13449 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13450 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13451 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13452 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13453 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13454 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13455 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13456 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13457 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13458 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13459 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13460 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13461 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13462 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13463 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13464 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13465 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13466 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13467 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13468 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13469 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13470 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13471 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13472 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13473 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13474 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13475 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13476 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13477 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13478 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13479 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13480 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13481 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13482 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13483 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13484 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13485 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13486 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13487 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13488 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13489 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13490 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13491 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13492 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13493 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13494 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13495 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13496 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13497 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13498 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13499 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13500 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13501 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13502 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13503 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13504 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13505 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13506 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13507 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13508 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13509 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13510 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13511 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13512 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13513 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13514 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13515 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13516 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13517 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13518 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13519 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13520 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13521 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13522 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13523 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13524 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13525 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13526 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13527 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13528 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13529 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13530 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13531 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13532 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13533 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13534 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13535 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13536 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13537 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13538 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13539 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13540 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13541 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13542 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13543 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13544 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13545 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13546 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13547 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13548 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13549 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13550 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13551 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13552 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13553 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13554 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13555 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13556 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13557 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13558 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13559 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13560 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13561 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13562 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13563 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13564 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13565 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13566 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13567 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13568 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13569 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13570 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13571 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13572 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13573 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13574 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13575 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13576 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13577 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13578 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13579 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13580 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13581 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13582 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13583 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13584 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13585 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13586 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13587 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13588 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13589 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13590 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13591 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13592 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13593 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13594 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13595 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13596 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13597 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13598 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13599 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13600 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13601 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13602 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13603 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13604 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13605 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13606 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13607 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13608 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13609 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13610 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13611 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13612 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13613 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13614 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13615 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13616 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13617 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13618 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13619 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13620 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13621 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13622 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13623 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13624 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13625 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13626 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13627 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13628 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13629 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13630 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13631 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13632 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13633 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13634 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13635 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13636 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13637 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13638 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13639 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13640 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13641 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13642 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13643 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13644 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13645 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13646 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13647 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13648 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13649 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13650 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13651 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13652 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13653 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13654 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13655 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13656 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13657 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13658 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13659 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13660 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13661 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13662 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13663 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13664 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13665 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13666 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13667 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13668 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13669 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13670 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13671 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13672 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13673 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13674 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13675 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13676 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13677 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13678 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13679 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13680 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13681 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13682 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13683 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13684 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13685 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13686 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13687 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13688 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13689 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13690 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13691 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13692 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13693 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13694 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13695 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13696 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13697 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13698 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13699 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13700 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13701 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13702 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13703 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13704 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13705 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13706 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13707 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13708 - } - ] - }, - "minecraft:red_nether_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13709 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13710 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13711 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13712, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13713 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13714 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13715 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13716 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13717 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13718 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13719 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13720 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13721 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13722 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13723 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13724 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13725 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13726 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13727 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13728 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13729 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13730 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13731 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13732 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13733 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13734 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13735 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13736 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13737 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13738 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13739 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13740 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13741 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13742 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13743 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13744 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13745 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13746 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13747 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13748 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13749 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13750 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13751 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13752 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13753 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13754 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13755 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13756 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13757 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13758 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13759 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13760 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13761 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13762 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13763 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13764 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13765 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13766 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13767 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13768 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13769 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13770 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13771 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13772 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13773 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13774 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13775 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13776 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13777 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13778 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13779 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13780 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13781 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13782 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13783 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13784 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13785 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13786 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13787 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13788 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13789 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13790 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13791 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13792 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13793 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13794 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13795 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13796 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13797 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13798 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13799 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13800 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13801 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13802 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13803 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13804 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13805 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13806 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13807 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13808 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13809 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13810 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13811 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13812 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13813 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13814 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13815 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13816 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13817 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13818 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13819 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13820 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13821 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13822 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13823 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13824 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13825 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13826 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13827 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13828 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13829 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13830 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13831 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13832 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13833 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13834 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13835 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13836 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13837 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13838 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13839 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13840 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13841 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13842 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13843 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13844 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13845 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13846 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13847 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13848 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13849 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13850 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13851 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13852 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13853 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13854 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13855 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13856 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13857 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13858 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13859 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13860 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13861 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13862 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13863 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13864 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13865 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13866 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13867 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13868 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13869 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13870 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13871 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13872 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13873 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13874 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13875 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13876 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13877 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13878 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13879 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13880 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13881 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13882 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13883 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13884 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13885 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13886 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13887 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13888 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13889 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13890 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13891 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13892 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13893 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13894 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13895 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13896 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13897 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13898 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13899 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13900 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13901 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13902 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13903 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13904 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13905 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13906 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13907 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13908 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13909 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13910 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13911 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13912 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13913 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13914 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13915 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13916 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13917 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13918 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13919 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13920 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13921 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13922 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13923 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13924 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13925 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13926 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13927 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13928 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13929 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13930 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13931 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13932 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13933 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13934 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13935 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13936 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13937 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13938 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13939 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13940 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13941 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13942 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13943 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13944 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13945 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13946 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13947 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13948 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13949 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13950 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13951 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13952 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13953 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13954 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13955 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13956 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13957 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13958 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13959 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13960 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13961 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13962 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13963 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13964 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13965 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13966 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13967 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13968 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13969 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13970 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13971 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13972 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13973 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13974 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13975 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13976 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13977 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13978 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13979 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13980 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13981 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13982 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13983 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13984 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13985 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13986 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13987 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13988 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13989 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13990 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13991 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13992 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13993 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13994 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13995 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13996 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13997 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13998 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13999 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14000 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14001 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14002 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14003 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14004 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14005 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14006 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14007 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14008 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14009 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14010 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14011 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14012 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14013 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14014 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14015 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14016 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14017 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14018 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14019 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14020 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14021 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14022 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14023 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14024 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14025 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14026 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14027 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14028 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14029 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14030 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14031 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14032 + } } ] }, @@ -140034,6 +182572,7 @@ }, "states": [ { + "id": 14988, "properties": { "east": "none", "north": "none", @@ -140041,10 +182580,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14033 + } }, { + "id": 14989, "properties": { "east": "none", "north": "none", @@ -140052,10 +182591,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14034 + } }, { + "id": 14990, "properties": { "east": "none", "north": "none", @@ -140063,10 +182602,11 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14035 + } }, { + "default": true, + "id": 14991, "properties": { "east": "none", "north": "none", @@ -140074,11 +182614,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14036, - "default": true + } }, { + "id": 14992, "properties": { "east": "none", "north": "none", @@ -140086,10 +182625,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14037 + } }, { + "id": 14993, "properties": { "east": "none", "north": "none", @@ -140097,10 +182636,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14038 + } }, { + "id": 14994, "properties": { "east": "none", "north": "none", @@ -140108,10 +182647,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14039 + } }, { + "id": 14995, "properties": { "east": "none", "north": "none", @@ -140119,10 +182658,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14040 + } }, { + "id": 14996, "properties": { "east": "none", "north": "none", @@ -140130,10 +182669,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14041 + } }, { + "id": 14997, "properties": { "east": "none", "north": "none", @@ -140141,10 +182680,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14042 + } }, { + "id": 14998, "properties": { "east": "none", "north": "none", @@ -140152,10 +182691,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14043 + } }, { + "id": 14999, "properties": { "east": "none", "north": "none", @@ -140163,10 +182702,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14044 + } }, { + "id": 15000, "properties": { "east": "none", "north": "none", @@ -140174,10 +182713,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14045 + } }, { + "id": 15001, "properties": { "east": "none", "north": "none", @@ -140185,10 +182724,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14046 + } }, { + "id": 15002, "properties": { "east": "none", "north": "none", @@ -140196,10 +182735,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14047 + } }, { + "id": 15003, "properties": { "east": "none", "north": "none", @@ -140207,10 +182746,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14048 + } }, { + "id": 15004, "properties": { "east": "none", "north": "none", @@ -140218,10 +182757,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14049 + } }, { + "id": 15005, "properties": { "east": "none", "north": "none", @@ -140229,10 +182768,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14050 + } }, { + "id": 15006, "properties": { "east": "none", "north": "none", @@ -140240,10 +182779,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14051 + } }, { + "id": 15007, "properties": { "east": "none", "north": "none", @@ -140251,10 +182790,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14052 + } }, { + "id": 15008, "properties": { "east": "none", "north": "none", @@ -140262,10 +182801,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14053 + } }, { + "id": 15009, "properties": { "east": "none", "north": "none", @@ -140273,10 +182812,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14054 + } }, { + "id": 15010, "properties": { "east": "none", "north": "none", @@ -140284,10 +182823,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14055 + } }, { + "id": 15011, "properties": { "east": "none", "north": "none", @@ -140295,10 +182834,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14056 + } }, { + "id": 15012, "properties": { "east": "none", "north": "none", @@ -140306,10 +182845,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14057 + } }, { + "id": 15013, "properties": { "east": "none", "north": "none", @@ -140317,10 +182856,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14058 + } }, { + "id": 15014, "properties": { "east": "none", "north": "none", @@ -140328,10 +182867,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14059 + } }, { + "id": 15015, "properties": { "east": "none", "north": "none", @@ -140339,10 +182878,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14060 + } }, { + "id": 15016, "properties": { "east": "none", "north": "none", @@ -140350,10 +182889,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14061 + } }, { + "id": 15017, "properties": { "east": "none", "north": "none", @@ -140361,10 +182900,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14062 + } }, { + "id": 15018, "properties": { "east": "none", "north": "none", @@ -140372,10 +182911,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14063 + } }, { + "id": 15019, "properties": { "east": "none", "north": "none", @@ -140383,10 +182922,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14064 + } }, { + "id": 15020, "properties": { "east": "none", "north": "none", @@ -140394,10 +182933,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14065 + } }, { + "id": 15021, "properties": { "east": "none", "north": "none", @@ -140405,10 +182944,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14066 + } }, { + "id": 15022, "properties": { "east": "none", "north": "none", @@ -140416,10 +182955,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14067 + } }, { + "id": 15023, "properties": { "east": "none", "north": "none", @@ -140427,10 +182966,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14068 + } }, { + "id": 15024, "properties": { "east": "none", "north": "low", @@ -140438,10 +182977,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14069 + } }, { + "id": 15025, "properties": { "east": "none", "north": "low", @@ -140449,10 +182988,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14070 + } }, { + "id": 15026, "properties": { "east": "none", "north": "low", @@ -140460,10 +182999,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14071 + } }, { + "id": 15027, "properties": { "east": "none", "north": "low", @@ -140471,10 +183010,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14072 + } }, { + "id": 15028, "properties": { "east": "none", "north": "low", @@ -140482,10 +183021,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14073 + } }, { + "id": 15029, "properties": { "east": "none", "north": "low", @@ -140493,10 +183032,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14074 + } }, { + "id": 15030, "properties": { "east": "none", "north": "low", @@ -140504,10 +183043,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14075 + } }, { + "id": 15031, "properties": { "east": "none", "north": "low", @@ -140515,10 +183054,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14076 + } }, { + "id": 15032, "properties": { "east": "none", "north": "low", @@ -140526,10 +183065,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14077 + } }, { + "id": 15033, "properties": { "east": "none", "north": "low", @@ -140537,10 +183076,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14078 + } }, { + "id": 15034, "properties": { "east": "none", "north": "low", @@ -140548,10 +183087,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14079 + } }, { + "id": 15035, "properties": { "east": "none", "north": "low", @@ -140559,10 +183098,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14080 + } }, { + "id": 15036, "properties": { "east": "none", "north": "low", @@ -140570,10 +183109,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14081 + } }, { + "id": 15037, "properties": { "east": "none", "north": "low", @@ -140581,10 +183120,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14082 + } }, { + "id": 15038, "properties": { "east": "none", "north": "low", @@ -140592,10 +183131,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14083 + } }, { + "id": 15039, "properties": { "east": "none", "north": "low", @@ -140603,10 +183142,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14084 + } }, { + "id": 15040, "properties": { "east": "none", "north": "low", @@ -140614,10 +183153,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14085 + } }, { + "id": 15041, "properties": { "east": "none", "north": "low", @@ -140625,10 +183164,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14086 + } }, { + "id": 15042, "properties": { "east": "none", "north": "low", @@ -140636,10 +183175,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14087 + } }, { + "id": 15043, "properties": { "east": "none", "north": "low", @@ -140647,10 +183186,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14088 + } }, { + "id": 15044, "properties": { "east": "none", "north": "low", @@ -140658,10 +183197,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14089 + } }, { + "id": 15045, "properties": { "east": "none", "north": "low", @@ -140669,10 +183208,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14090 + } }, { + "id": 15046, "properties": { "east": "none", "north": "low", @@ -140680,10 +183219,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14091 + } }, { + "id": 15047, "properties": { "east": "none", "north": "low", @@ -140691,10 +183230,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14092 + } }, { + "id": 15048, "properties": { "east": "none", "north": "low", @@ -140702,10 +183241,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14093 + } }, { + "id": 15049, "properties": { "east": "none", "north": "low", @@ -140713,10 +183252,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14094 + } }, { + "id": 15050, "properties": { "east": "none", "north": "low", @@ -140724,10 +183263,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14095 + } }, { + "id": 15051, "properties": { "east": "none", "north": "low", @@ -140735,10 +183274,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14096 + } }, { + "id": 15052, "properties": { "east": "none", "north": "low", @@ -140746,10 +183285,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14097 + } }, { + "id": 15053, "properties": { "east": "none", "north": "low", @@ -140757,10 +183296,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14098 + } }, { + "id": 15054, "properties": { "east": "none", "north": "low", @@ -140768,10 +183307,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14099 + } }, { + "id": 15055, "properties": { "east": "none", "north": "low", @@ -140779,10 +183318,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14100 + } }, { + "id": 15056, "properties": { "east": "none", "north": "low", @@ -140790,10 +183329,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14101 + } }, { + "id": 15057, "properties": { "east": "none", "north": "low", @@ -140801,10 +183340,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14102 + } }, { + "id": 15058, "properties": { "east": "none", "north": "low", @@ -140812,10 +183351,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14103 + } }, { + "id": 15059, "properties": { "east": "none", "north": "low", @@ -140823,10 +183362,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14104 + } }, { + "id": 15060, "properties": { "east": "none", "north": "tall", @@ -140834,10 +183373,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14105 + } }, { + "id": 15061, "properties": { "east": "none", "north": "tall", @@ -140845,10 +183384,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14106 + } }, { + "id": 15062, "properties": { "east": "none", "north": "tall", @@ -140856,10 +183395,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14107 + } }, { + "id": 15063, "properties": { "east": "none", "north": "tall", @@ -140867,10 +183406,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14108 + } }, { + "id": 15064, "properties": { "east": "none", "north": "tall", @@ -140878,10 +183417,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14109 + } }, { + "id": 15065, "properties": { "east": "none", "north": "tall", @@ -140889,10 +183428,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14110 + } }, { + "id": 15066, "properties": { "east": "none", "north": "tall", @@ -140900,10 +183439,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14111 + } }, { + "id": 15067, "properties": { "east": "none", "north": "tall", @@ -140911,10 +183450,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14112 + } }, { + "id": 15068, "properties": { "east": "none", "north": "tall", @@ -140922,10 +183461,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14113 + } }, { + "id": 15069, "properties": { "east": "none", "north": "tall", @@ -140933,10 +183472,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14114 + } }, { + "id": 15070, "properties": { "east": "none", "north": "tall", @@ -140944,10 +183483,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14115 + } }, { + "id": 15071, "properties": { "east": "none", "north": "tall", @@ -140955,10 +183494,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14116 + } }, { + "id": 15072, "properties": { "east": "none", "north": "tall", @@ -140966,10 +183505,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14117 + } }, { + "id": 15073, "properties": { "east": "none", "north": "tall", @@ -140977,10 +183516,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14118 + } }, { + "id": 15074, "properties": { "east": "none", "north": "tall", @@ -140988,10 +183527,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14119 + } }, { + "id": 15075, "properties": { "east": "none", "north": "tall", @@ -140999,10 +183538,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14120 + } }, { + "id": 15076, "properties": { "east": "none", "north": "tall", @@ -141010,10 +183549,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14121 + } }, { + "id": 15077, "properties": { "east": "none", "north": "tall", @@ -141021,10 +183560,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14122 + } }, { + "id": 15078, "properties": { "east": "none", "north": "tall", @@ -141032,10 +183571,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14123 + } }, { + "id": 15079, "properties": { "east": "none", "north": "tall", @@ -141043,10 +183582,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14124 + } }, { + "id": 15080, "properties": { "east": "none", "north": "tall", @@ -141054,10 +183593,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14125 + } }, { + "id": 15081, "properties": { "east": "none", "north": "tall", @@ -141065,10 +183604,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14126 + } }, { + "id": 15082, "properties": { "east": "none", "north": "tall", @@ -141076,10 +183615,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14127 + } }, { + "id": 15083, "properties": { "east": "none", "north": "tall", @@ -141087,10 +183626,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14128 + } }, { + "id": 15084, "properties": { "east": "none", "north": "tall", @@ -141098,10 +183637,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14129 + } }, { + "id": 15085, "properties": { "east": "none", "north": "tall", @@ -141109,10 +183648,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14130 + } }, { + "id": 15086, "properties": { "east": "none", "north": "tall", @@ -141120,10 +183659,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14131 + } }, { + "id": 15087, "properties": { "east": "none", "north": "tall", @@ -141131,10 +183670,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14132 + } }, { + "id": 15088, "properties": { "east": "none", "north": "tall", @@ -141142,10 +183681,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14133 + } }, { + "id": 15089, "properties": { "east": "none", "north": "tall", @@ -141153,10 +183692,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14134 + } }, { + "id": 15090, "properties": { "east": "none", "north": "tall", @@ -141164,10 +183703,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14135 + } }, { + "id": 15091, "properties": { "east": "none", "north": "tall", @@ -141175,10 +183714,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14136 + } }, { + "id": 15092, "properties": { "east": "none", "north": "tall", @@ -141186,10 +183725,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14137 + } }, { + "id": 15093, "properties": { "east": "none", "north": "tall", @@ -141197,10 +183736,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14138 + } }, { + "id": 15094, "properties": { "east": "none", "north": "tall", @@ -141208,10 +183747,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14139 + } }, { + "id": 15095, "properties": { "east": "none", "north": "tall", @@ -141219,10 +183758,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14140 + } }, { + "id": 15096, "properties": { "east": "low", "north": "none", @@ -141230,10 +183769,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14141 + } }, { + "id": 15097, "properties": { "east": "low", "north": "none", @@ -141241,10 +183780,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14142 + } }, { + "id": 15098, "properties": { "east": "low", "north": "none", @@ -141252,10 +183791,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14143 + } }, { + "id": 15099, "properties": { "east": "low", "north": "none", @@ -141263,10 +183802,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14144 + } }, { + "id": 15100, "properties": { "east": "low", "north": "none", @@ -141274,10 +183813,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14145 + } }, { + "id": 15101, "properties": { "east": "low", "north": "none", @@ -141285,10 +183824,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14146 + } }, { + "id": 15102, "properties": { "east": "low", "north": "none", @@ -141296,10 +183835,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14147 + } }, { + "id": 15103, "properties": { "east": "low", "north": "none", @@ -141307,10 +183846,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14148 + } }, { + "id": 15104, "properties": { "east": "low", "north": "none", @@ -141318,10 +183857,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14149 + } }, { + "id": 15105, "properties": { "east": "low", "north": "none", @@ -141329,10 +183868,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14150 + } }, { + "id": 15106, "properties": { "east": "low", "north": "none", @@ -141340,10 +183879,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14151 + } }, { + "id": 15107, "properties": { "east": "low", "north": "none", @@ -141351,10 +183890,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14152 + } }, { + "id": 15108, "properties": { "east": "low", "north": "none", @@ -141362,10 +183901,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14153 + } }, { + "id": 15109, "properties": { "east": "low", "north": "none", @@ -141373,10 +183912,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14154 + } }, { + "id": 15110, "properties": { "east": "low", "north": "none", @@ -141384,10 +183923,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14155 + } }, { + "id": 15111, "properties": { "east": "low", "north": "none", @@ -141395,10 +183934,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14156 + } }, { + "id": 15112, "properties": { "east": "low", "north": "none", @@ -141406,10 +183945,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14157 + } }, { + "id": 15113, "properties": { "east": "low", "north": "none", @@ -141417,10 +183956,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14158 + } }, { + "id": 15114, "properties": { "east": "low", "north": "none", @@ -141428,10 +183967,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14159 + } }, { + "id": 15115, "properties": { "east": "low", "north": "none", @@ -141439,10 +183978,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14160 + } }, { + "id": 15116, "properties": { "east": "low", "north": "none", @@ -141450,10 +183989,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14161 + } }, { + "id": 15117, "properties": { "east": "low", "north": "none", @@ -141461,10 +184000,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14162 + } }, { + "id": 15118, "properties": { "east": "low", "north": "none", @@ -141472,10 +184011,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14163 + } }, { + "id": 15119, "properties": { "east": "low", "north": "none", @@ -141483,10 +184022,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14164 + } }, { + "id": 15120, "properties": { "east": "low", "north": "none", @@ -141494,10 +184033,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14165 + } }, { + "id": 15121, "properties": { "east": "low", "north": "none", @@ -141505,10 +184044,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14166 + } }, { + "id": 15122, "properties": { "east": "low", "north": "none", @@ -141516,10 +184055,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14167 + } }, { + "id": 15123, "properties": { "east": "low", "north": "none", @@ -141527,10 +184066,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14168 + } }, { + "id": 15124, "properties": { "east": "low", "north": "none", @@ -141538,10 +184077,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14169 + } }, { + "id": 15125, "properties": { "east": "low", "north": "none", @@ -141549,10 +184088,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14170 + } }, { + "id": 15126, "properties": { "east": "low", "north": "none", @@ -141560,10 +184099,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14171 + } }, { + "id": 15127, "properties": { "east": "low", "north": "none", @@ -141571,10 +184110,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14172 + } }, { + "id": 15128, "properties": { "east": "low", "north": "none", @@ -141582,10 +184121,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14173 + } }, { + "id": 15129, "properties": { "east": "low", "north": "none", @@ -141593,10 +184132,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14174 + } }, { + "id": 15130, "properties": { "east": "low", "north": "none", @@ -141604,10 +184143,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14175 + } }, { + "id": 15131, "properties": { "east": "low", "north": "none", @@ -141615,10 +184154,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14176 + } }, { + "id": 15132, "properties": { "east": "low", "north": "low", @@ -141626,10 +184165,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14177 + } }, { + "id": 15133, "properties": { "east": "low", "north": "low", @@ -141637,10 +184176,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14178 + } }, { + "id": 15134, "properties": { "east": "low", "north": "low", @@ -141648,10 +184187,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14179 + } }, { + "id": 15135, "properties": { "east": "low", "north": "low", @@ -141659,10 +184198,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14180 + } }, { + "id": 15136, "properties": { "east": "low", "north": "low", @@ -141670,10 +184209,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14181 + } }, { + "id": 15137, "properties": { "east": "low", "north": "low", @@ -141681,10 +184220,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14182 + } }, { + "id": 15138, "properties": { "east": "low", "north": "low", @@ -141692,10 +184231,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14183 + } }, { + "id": 15139, "properties": { "east": "low", "north": "low", @@ -141703,10 +184242,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14184 + } }, { + "id": 15140, "properties": { "east": "low", "north": "low", @@ -141714,10 +184253,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14185 + } }, { + "id": 15141, "properties": { "east": "low", "north": "low", @@ -141725,10 +184264,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14186 + } }, { + "id": 15142, "properties": { "east": "low", "north": "low", @@ -141736,10 +184275,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14187 + } }, { + "id": 15143, "properties": { "east": "low", "north": "low", @@ -141747,10 +184286,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14188 + } }, { + "id": 15144, "properties": { "east": "low", "north": "low", @@ -141758,10 +184297,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14189 + } }, { + "id": 15145, "properties": { "east": "low", "north": "low", @@ -141769,10 +184308,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14190 + } }, { + "id": 15146, "properties": { "east": "low", "north": "low", @@ -141780,10 +184319,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14191 + } }, { + "id": 15147, "properties": { "east": "low", "north": "low", @@ -141791,10 +184330,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14192 + } }, { + "id": 15148, "properties": { "east": "low", "north": "low", @@ -141802,10 +184341,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14193 + } }, { + "id": 15149, "properties": { "east": "low", "north": "low", @@ -141813,10 +184352,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14194 + } }, { + "id": 15150, "properties": { "east": "low", "north": "low", @@ -141824,10 +184363,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14195 + } }, { + "id": 15151, "properties": { "east": "low", "north": "low", @@ -141835,10 +184374,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14196 + } }, { + "id": 15152, "properties": { "east": "low", "north": "low", @@ -141846,10 +184385,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14197 + } }, { + "id": 15153, "properties": { "east": "low", "north": "low", @@ -141857,10 +184396,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14198 + } }, { + "id": 15154, "properties": { "east": "low", "north": "low", @@ -141868,10 +184407,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14199 + } }, { + "id": 15155, "properties": { "east": "low", "north": "low", @@ -141879,10 +184418,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14200 + } }, { + "id": 15156, "properties": { "east": "low", "north": "low", @@ -141890,10 +184429,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14201 + } }, { + "id": 15157, "properties": { "east": "low", "north": "low", @@ -141901,10 +184440,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14202 + } }, { + "id": 15158, "properties": { "east": "low", "north": "low", @@ -141912,10 +184451,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14203 + } }, { + "id": 15159, "properties": { "east": "low", "north": "low", @@ -141923,10 +184462,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14204 + } }, { + "id": 15160, "properties": { "east": "low", "north": "low", @@ -141934,10 +184473,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14205 + } }, { + "id": 15161, "properties": { "east": "low", "north": "low", @@ -141945,10 +184484,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14206 + } }, { + "id": 15162, "properties": { "east": "low", "north": "low", @@ -141956,10 +184495,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14207 + } }, { + "id": 15163, "properties": { "east": "low", "north": "low", @@ -141967,10 +184506,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14208 + } }, { + "id": 15164, "properties": { "east": "low", "north": "low", @@ -141978,10 +184517,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14209 + } }, { + "id": 15165, "properties": { "east": "low", "north": "low", @@ -141989,10 +184528,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14210 + } }, { + "id": 15166, "properties": { "east": "low", "north": "low", @@ -142000,10 +184539,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14211 + } }, { + "id": 15167, "properties": { "east": "low", "north": "low", @@ -142011,10 +184550,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14212 + } }, { + "id": 15168, "properties": { "east": "low", "north": "tall", @@ -142022,10 +184561,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14213 + } }, { + "id": 15169, "properties": { "east": "low", "north": "tall", @@ -142033,10 +184572,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14214 + } }, { + "id": 15170, "properties": { "east": "low", "north": "tall", @@ -142044,10 +184583,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14215 + } }, { + "id": 15171, "properties": { "east": "low", "north": "tall", @@ -142055,10 +184594,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14216 + } }, { + "id": 15172, "properties": { "east": "low", "north": "tall", @@ -142066,10 +184605,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14217 + } }, { + "id": 15173, "properties": { "east": "low", "north": "tall", @@ -142077,10 +184616,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14218 + } }, { + "id": 15174, "properties": { "east": "low", "north": "tall", @@ -142088,10 +184627,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14219 + } }, { + "id": 15175, "properties": { "east": "low", "north": "tall", @@ -142099,10 +184638,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14220 + } }, { + "id": 15176, "properties": { "east": "low", "north": "tall", @@ -142110,10 +184649,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14221 + } }, { + "id": 15177, "properties": { "east": "low", "north": "tall", @@ -142121,10 +184660,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14222 + } }, { + "id": 15178, "properties": { "east": "low", "north": "tall", @@ -142132,10 +184671,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14223 + } }, { + "id": 15179, "properties": { "east": "low", "north": "tall", @@ -142143,10 +184682,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14224 + } }, { + "id": 15180, "properties": { "east": "low", "north": "tall", @@ -142154,10 +184693,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14225 + } }, { + "id": 15181, "properties": { "east": "low", "north": "tall", @@ -142165,10 +184704,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14226 + } }, { + "id": 15182, "properties": { "east": "low", "north": "tall", @@ -142176,10 +184715,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14227 + } }, { + "id": 15183, "properties": { "east": "low", "north": "tall", @@ -142187,10 +184726,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14228 + } }, { + "id": 15184, "properties": { "east": "low", "north": "tall", @@ -142198,10 +184737,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14229 + } }, { + "id": 15185, "properties": { "east": "low", "north": "tall", @@ -142209,10 +184748,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14230 + } }, { + "id": 15186, "properties": { "east": "low", "north": "tall", @@ -142220,10 +184759,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14231 + } }, { + "id": 15187, "properties": { "east": "low", "north": "tall", @@ -142231,10 +184770,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14232 + } }, { + "id": 15188, "properties": { "east": "low", "north": "tall", @@ -142242,10 +184781,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14233 + } }, { + "id": 15189, "properties": { "east": "low", "north": "tall", @@ -142253,10 +184792,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14234 + } }, { + "id": 15190, "properties": { "east": "low", "north": "tall", @@ -142264,10 +184803,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14235 + } }, { + "id": 15191, "properties": { "east": "low", "north": "tall", @@ -142275,10 +184814,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14236 + } }, { + "id": 15192, "properties": { "east": "low", "north": "tall", @@ -142286,10 +184825,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14237 + } }, { + "id": 15193, "properties": { "east": "low", "north": "tall", @@ -142297,10 +184836,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14238 + } }, { + "id": 15194, "properties": { "east": "low", "north": "tall", @@ -142308,10 +184847,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14239 + } }, { + "id": 15195, "properties": { "east": "low", "north": "tall", @@ -142319,10 +184858,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14240 + } }, { + "id": 15196, "properties": { "east": "low", "north": "tall", @@ -142330,10 +184869,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14241 + } }, { + "id": 15197, "properties": { "east": "low", "north": "tall", @@ -142341,10 +184880,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14242 + } }, { + "id": 15198, "properties": { "east": "low", "north": "tall", @@ -142352,10 +184891,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14243 + } }, { + "id": 15199, "properties": { "east": "low", "north": "tall", @@ -142363,10 +184902,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14244 + } }, { + "id": 15200, "properties": { "east": "low", "north": "tall", @@ -142374,10 +184913,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14245 + } }, { + "id": 15201, "properties": { "east": "low", "north": "tall", @@ -142385,10 +184924,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14246 + } }, { + "id": 15202, "properties": { "east": "low", "north": "tall", @@ -142396,10 +184935,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14247 + } }, { + "id": 15203, "properties": { "east": "low", "north": "tall", @@ -142407,10 +184946,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14248 + } }, { + "id": 15204, "properties": { "east": "tall", "north": "none", @@ -142418,10 +184957,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14249 + } }, { + "id": 15205, "properties": { "east": "tall", "north": "none", @@ -142429,10 +184968,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14250 + } }, { + "id": 15206, "properties": { "east": "tall", "north": "none", @@ -142440,10 +184979,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14251 + } }, { + "id": 15207, "properties": { "east": "tall", "north": "none", @@ -142451,10 +184990,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14252 + } }, { + "id": 15208, "properties": { "east": "tall", "north": "none", @@ -142462,10 +185001,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14253 + } }, { + "id": 15209, "properties": { "east": "tall", "north": "none", @@ -142473,10 +185012,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14254 + } }, { + "id": 15210, "properties": { "east": "tall", "north": "none", @@ -142484,10 +185023,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14255 + } }, { + "id": 15211, "properties": { "east": "tall", "north": "none", @@ -142495,10 +185034,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14256 + } }, { + "id": 15212, "properties": { "east": "tall", "north": "none", @@ -142506,10 +185045,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14257 + } }, { + "id": 15213, "properties": { "east": "tall", "north": "none", @@ -142517,10 +185056,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14258 + } }, { + "id": 15214, "properties": { "east": "tall", "north": "none", @@ -142528,10 +185067,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14259 + } }, { + "id": 15215, "properties": { "east": "tall", "north": "none", @@ -142539,10 +185078,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14260 + } }, { + "id": 15216, "properties": { "east": "tall", "north": "none", @@ -142550,10 +185089,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14261 + } }, { + "id": 15217, "properties": { "east": "tall", "north": "none", @@ -142561,10 +185100,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14262 + } }, { + "id": 15218, "properties": { "east": "tall", "north": "none", @@ -142572,10 +185111,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14263 + } }, { + "id": 15219, "properties": { "east": "tall", "north": "none", @@ -142583,10 +185122,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14264 + } }, { + "id": 15220, "properties": { "east": "tall", "north": "none", @@ -142594,10 +185133,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14265 + } }, { + "id": 15221, "properties": { "east": "tall", "north": "none", @@ -142605,10 +185144,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14266 + } }, { + "id": 15222, "properties": { "east": "tall", "north": "none", @@ -142616,10 +185155,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14267 + } }, { + "id": 15223, "properties": { "east": "tall", "north": "none", @@ -142627,10 +185166,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14268 + } }, { + "id": 15224, "properties": { "east": "tall", "north": "none", @@ -142638,10 +185177,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14269 + } }, { + "id": 15225, "properties": { "east": "tall", "north": "none", @@ -142649,10 +185188,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14270 + } }, { + "id": 15226, "properties": { "east": "tall", "north": "none", @@ -142660,10 +185199,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14271 + } }, { + "id": 15227, "properties": { "east": "tall", "north": "none", @@ -142671,10 +185210,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14272 + } }, { + "id": 15228, "properties": { "east": "tall", "north": "none", @@ -142682,10 +185221,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14273 + } }, { + "id": 15229, "properties": { "east": "tall", "north": "none", @@ -142693,10 +185232,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14274 + } }, { + "id": 15230, "properties": { "east": "tall", "north": "none", @@ -142704,10 +185243,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14275 + } }, { + "id": 15231, "properties": { "east": "tall", "north": "none", @@ -142715,10 +185254,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14276 + } }, { + "id": 15232, "properties": { "east": "tall", "north": "none", @@ -142726,10 +185265,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14277 + } }, { + "id": 15233, "properties": { "east": "tall", "north": "none", @@ -142737,10 +185276,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14278 + } }, { + "id": 15234, "properties": { "east": "tall", "north": "none", @@ -142748,10 +185287,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14279 + } }, { + "id": 15235, "properties": { "east": "tall", "north": "none", @@ -142759,10 +185298,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14280 + } }, { + "id": 15236, "properties": { "east": "tall", "north": "none", @@ -142770,10 +185309,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14281 + } }, { + "id": 15237, "properties": { "east": "tall", "north": "none", @@ -142781,10 +185320,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14282 + } }, { + "id": 15238, "properties": { "east": "tall", "north": "none", @@ -142792,10 +185331,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14283 + } }, { + "id": 15239, "properties": { "east": "tall", "north": "none", @@ -142803,10 +185342,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14284 + } }, { + "id": 15240, "properties": { "east": "tall", "north": "low", @@ -142814,10 +185353,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14285 + } }, { + "id": 15241, "properties": { "east": "tall", "north": "low", @@ -142825,10 +185364,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14286 + } }, { + "id": 15242, "properties": { "east": "tall", "north": "low", @@ -142836,10 +185375,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14287 + } }, { + "id": 15243, "properties": { "east": "tall", "north": "low", @@ -142847,10 +185386,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14288 + } }, { + "id": 15244, "properties": { "east": "tall", "north": "low", @@ -142858,10 +185397,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14289 + } }, { + "id": 15245, "properties": { "east": "tall", "north": "low", @@ -142869,10 +185408,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14290 + } }, { + "id": 15246, "properties": { "east": "tall", "north": "low", @@ -142880,10 +185419,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14291 + } }, { + "id": 15247, "properties": { "east": "tall", "north": "low", @@ -142891,10 +185430,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14292 + } }, { + "id": 15248, "properties": { "east": "tall", "north": "low", @@ -142902,10 +185441,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14293 + } }, { + "id": 15249, "properties": { "east": "tall", "north": "low", @@ -142913,10 +185452,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14294 + } }, { + "id": 15250, "properties": { "east": "tall", "north": "low", @@ -142924,10 +185463,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14295 + } }, { + "id": 15251, "properties": { "east": "tall", "north": "low", @@ -142935,10 +185474,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14296 + } }, { + "id": 15252, "properties": { "east": "tall", "north": "low", @@ -142946,10 +185485,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14297 + } }, { + "id": 15253, "properties": { "east": "tall", "north": "low", @@ -142957,10 +185496,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14298 + } }, { + "id": 15254, "properties": { "east": "tall", "north": "low", @@ -142968,10 +185507,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14299 + } }, { + "id": 15255, "properties": { "east": "tall", "north": "low", @@ -142979,10 +185518,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14300 + } }, { + "id": 15256, "properties": { "east": "tall", "north": "low", @@ -142990,10 +185529,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14301 + } }, { + "id": 15257, "properties": { "east": "tall", "north": "low", @@ -143001,10 +185540,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14302 + } }, { + "id": 15258, "properties": { "east": "tall", "north": "low", @@ -143012,10 +185551,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14303 + } }, { + "id": 15259, "properties": { "east": "tall", "north": "low", @@ -143023,10 +185562,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14304 + } }, { + "id": 15260, "properties": { "east": "tall", "north": "low", @@ -143034,10 +185573,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14305 + } }, { + "id": 15261, "properties": { "east": "tall", "north": "low", @@ -143045,10 +185584,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14306 + } }, { + "id": 15262, "properties": { "east": "tall", "north": "low", @@ -143056,10 +185595,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14307 + } }, { + "id": 15263, "properties": { "east": "tall", "north": "low", @@ -143067,10 +185606,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14308 + } }, { + "id": 15264, "properties": { "east": "tall", "north": "low", @@ -143078,10 +185617,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14309 + } }, { + "id": 15265, "properties": { "east": "tall", "north": "low", @@ -143089,10 +185628,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14310 + } }, { + "id": 15266, "properties": { "east": "tall", "north": "low", @@ -143100,10 +185639,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14311 + } }, { + "id": 15267, "properties": { "east": "tall", "north": "low", @@ -143111,10 +185650,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14312 + } }, { + "id": 15268, "properties": { "east": "tall", "north": "low", @@ -143122,10 +185661,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14313 + } }, { + "id": 15269, "properties": { "east": "tall", "north": "low", @@ -143133,10 +185672,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14314 + } }, { + "id": 15270, "properties": { "east": "tall", "north": "low", @@ -143144,10 +185683,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14315 + } }, { + "id": 15271, "properties": { "east": "tall", "north": "low", @@ -143155,10 +185694,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14316 + } }, { + "id": 15272, "properties": { "east": "tall", "north": "low", @@ -143166,10 +185705,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14317 + } }, { + "id": 15273, "properties": { "east": "tall", "north": "low", @@ -143177,10 +185716,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14318 + } }, { + "id": 15274, "properties": { "east": "tall", "north": "low", @@ -143188,10 +185727,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14319 + } }, { + "id": 15275, "properties": { "east": "tall", "north": "low", @@ -143199,10 +185738,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14320 + } }, { + "id": 15276, "properties": { "east": "tall", "north": "tall", @@ -143210,10 +185749,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14321 + } }, { + "id": 15277, "properties": { "east": "tall", "north": "tall", @@ -143221,10 +185760,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14322 + } }, { + "id": 15278, "properties": { "east": "tall", "north": "tall", @@ -143232,10 +185771,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14323 + } }, { + "id": 15279, "properties": { "east": "tall", "north": "tall", @@ -143243,10 +185782,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14324 + } }, { + "id": 15280, "properties": { "east": "tall", "north": "tall", @@ -143254,10 +185793,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14325 + } }, { + "id": 15281, "properties": { "east": "tall", "north": "tall", @@ -143265,10 +185804,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14326 + } }, { + "id": 15282, "properties": { "east": "tall", "north": "tall", @@ -143276,10 +185815,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14327 + } }, { + "id": 15283, "properties": { "east": "tall", "north": "tall", @@ -143287,10 +185826,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14328 + } }, { + "id": 15284, "properties": { "east": "tall", "north": "tall", @@ -143298,10 +185837,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14329 + } }, { + "id": 15285, "properties": { "east": "tall", "north": "tall", @@ -143309,10 +185848,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14330 + } }, { + "id": 15286, "properties": { "east": "tall", "north": "tall", @@ -143320,10 +185859,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14331 + } }, { + "id": 15287, "properties": { "east": "tall", "north": "tall", @@ -143331,10 +185870,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14332 + } }, { + "id": 15288, "properties": { "east": "tall", "north": "tall", @@ -143342,10 +185881,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14333 + } }, { + "id": 15289, "properties": { "east": "tall", "north": "tall", @@ -143353,10 +185892,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14334 + } }, { + "id": 15290, "properties": { "east": "tall", "north": "tall", @@ -143364,10 +185903,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14335 + } }, { + "id": 15291, "properties": { "east": "tall", "north": "tall", @@ -143375,10 +185914,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14336 + } }, { + "id": 15292, "properties": { "east": "tall", "north": "tall", @@ -143386,10 +185925,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14337 + } }, { + "id": 15293, "properties": { "east": "tall", "north": "tall", @@ -143397,10 +185936,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14338 + } }, { + "id": 15294, "properties": { "east": "tall", "north": "tall", @@ -143408,10 +185947,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14339 + } }, { + "id": 15295, "properties": { "east": "tall", "north": "tall", @@ -143419,10 +185958,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14340 + } }, { + "id": 15296, "properties": { "east": "tall", "north": "tall", @@ -143430,10 +185969,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14341 + } }, { + "id": 15297, "properties": { "east": "tall", "north": "tall", @@ -143441,10 +185980,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14342 + } }, { + "id": 15298, "properties": { "east": "tall", "north": "tall", @@ -143452,10 +185991,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14343 + } }, { + "id": 15299, "properties": { "east": "tall", "north": "tall", @@ -143463,10 +186002,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14344 + } }, { + "id": 15300, "properties": { "east": "tall", "north": "tall", @@ -143474,10 +186013,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14345 + } }, { + "id": 15301, "properties": { "east": "tall", "north": "tall", @@ -143485,10 +186024,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14346 + } }, { + "id": 15302, "properties": { "east": "tall", "north": "tall", @@ -143496,10 +186035,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14347 + } }, { + "id": 15303, "properties": { "east": "tall", "north": "tall", @@ -143507,10 +186046,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14348 + } }, { + "id": 15304, "properties": { "east": "tall", "north": "tall", @@ -143518,10 +186057,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14349 + } }, { + "id": 15305, "properties": { "east": "tall", "north": "tall", @@ -143529,10 +186068,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14350 + } }, { + "id": 15306, "properties": { "east": "tall", "north": "tall", @@ -143540,10 +186079,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14351 + } }, { + "id": 15307, "properties": { "east": "tall", "north": "tall", @@ -143551,10 +186090,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14352 + } }, { + "id": 15308, "properties": { "east": "tall", "north": "tall", @@ -143562,10 +186101,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14353 + } }, { + "id": 15309, "properties": { "east": "tall", "north": "tall", @@ -143573,10 +186112,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14354 + } }, { + "id": 15310, "properties": { "east": "tall", "north": "tall", @@ -143584,10 +186123,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14355 + } }, { + "id": 15311, "properties": { "east": "tall", "north": "tall", @@ -143595,7206 +186134,7 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14356 - } - ] - }, - "minecraft:end_stone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14357 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14358 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14359 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14360, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14361 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14362 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14363 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14364 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14365 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14366 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14367 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14368 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14369 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14370 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14371 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14372 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14373 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14374 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14375 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14376 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14377 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14378 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14379 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14380 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14381 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14382 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14383 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14384 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14385 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14386 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14387 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14388 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14389 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14390 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14391 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14392 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14393 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14394 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14395 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14396 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14397 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14398 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14399 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14400 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14401 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14402 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14403 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14404 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14405 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14406 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14407 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14408 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14409 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14410 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14411 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14412 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14413 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14414 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14415 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14416 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14417 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14418 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14419 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14420 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14421 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14422 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14423 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14424 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14425 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14426 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14427 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14428 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14429 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14430 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14431 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14432 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14433 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14434 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14435 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14436 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14437 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14438 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14439 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14440 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14441 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14442 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14443 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14444 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14445 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14446 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14447 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14448 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14449 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14450 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14451 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14452 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14453 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14454 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14455 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14456 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14457 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14458 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14459 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14460 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14461 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14462 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14463 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14464 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14465 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14466 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14467 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14468 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14469 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14470 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14471 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14472 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14473 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14474 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14475 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14476 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14477 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14478 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14479 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14480 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14481 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14482 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14483 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14484 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14485 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14486 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14487 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14488 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14489 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14490 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14491 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14492 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14493 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14494 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14495 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14496 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14497 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14498 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14499 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14500 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14501 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14502 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14503 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14504 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14505 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14506 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14507 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14508 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14509 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14510 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14511 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14512 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14513 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14514 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14515 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14516 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14517 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14518 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14519 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14520 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14521 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14522 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14523 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14524 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14525 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14526 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14527 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14528 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14529 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14530 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14531 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14532 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14533 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14534 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14535 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14536 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14537 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14538 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14539 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14540 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14541 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14542 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14543 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14544 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14545 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14546 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14547 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14548 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14549 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14550 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14551 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14552 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14553 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14554 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14555 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14556 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14557 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14558 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14559 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14560 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14561 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14562 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14563 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14564 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14565 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14566 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14567 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14568 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14569 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14570 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14571 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14572 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14573 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14574 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14575 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14576 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14577 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14578 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14579 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14580 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14581 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14582 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14583 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14584 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14585 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14586 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14587 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14588 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14589 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14590 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14591 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14592 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14593 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14594 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14595 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14596 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14597 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14598 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14599 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14600 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14601 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14602 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14603 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14604 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14605 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14606 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14607 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14608 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14609 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14610 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14611 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14612 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14613 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14614 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14615 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14616 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14617 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14618 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14619 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14620 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14621 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14622 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14623 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14624 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14625 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14626 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14627 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14628 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14629 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14630 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14631 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14632 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14633 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14634 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14635 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14636 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14637 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14638 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14639 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14640 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14641 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14642 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14643 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14644 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14645 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14646 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14647 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14648 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14649 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14650 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14651 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14652 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14653 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14654 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14655 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14656 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14657 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14658 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14659 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14660 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14661 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14662 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14663 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14664 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14665 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14666 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14667 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14668 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14669 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14670 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14671 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14672 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14673 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14674 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14675 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14676 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14677 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14678 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14679 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14680 - } - ] - }, - "minecraft:diorite_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14681 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14682 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14683 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14684, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14685 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14686 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14687 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14688 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14689 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14690 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14691 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14692 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14693 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14694 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14695 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14696 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14697 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14698 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14699 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14700 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14701 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14702 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14703 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14704 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14705 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14706 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14707 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14708 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14709 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14710 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14711 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14712 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14713 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14714 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14715 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14716 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14717 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14718 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14719 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14720 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14721 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14722 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14723 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14724 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14725 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14726 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14727 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14728 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14729 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14730 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14731 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14732 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14733 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14734 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14735 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14736 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14737 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14738 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14739 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14740 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14741 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14742 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14743 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14744 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14745 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14746 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14747 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14748 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14749 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14750 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14751 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14752 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14753 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14754 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14755 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14756 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14757 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14758 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14759 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14760 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14761 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14762 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14763 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14764 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14765 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14766 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14767 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14768 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14769 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14770 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14771 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14772 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14773 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14774 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14775 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14776 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14777 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14778 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14779 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14780 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14781 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14782 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14783 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14784 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14785 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14786 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14787 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14788 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14789 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14790 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14791 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14792 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14793 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14794 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14795 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14796 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14797 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14798 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14799 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14800 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14801 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14802 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14803 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14804 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14805 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14806 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14807 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14808 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14809 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14810 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14811 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14812 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14813 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14814 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14815 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14816 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14817 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14818 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14819 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14820 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14821 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14822 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14823 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14824 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14825 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14826 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14827 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14828 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14829 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14830 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14831 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14832 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14833 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14834 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14835 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14836 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14837 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14838 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14839 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14840 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14841 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14842 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14843 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14844 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14845 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14846 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14847 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14848 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14849 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14850 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14851 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14852 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14853 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14854 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14855 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14856 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14857 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14858 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14859 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14860 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14861 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14862 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14863 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14864 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14865 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14866 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14867 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14868 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14869 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14870 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14871 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14872 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14873 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14874 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14875 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14876 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14877 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14878 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14879 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14880 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14881 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14882 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14883 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14884 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14885 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14886 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14887 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14888 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14889 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14890 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14891 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14892 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14893 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14894 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14895 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14896 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14897 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14898 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14899 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14900 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14901 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14902 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14903 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14904 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14905 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14906 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14907 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14908 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14909 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14910 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14911 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14912 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14913 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14914 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14915 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14916 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14917 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14918 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14919 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14920 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14921 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14922 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14923 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14924 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14925 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14926 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14927 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14928 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14929 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14930 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14931 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14932 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14933 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14934 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14935 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14936 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14937 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14938 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14939 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14940 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14941 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14942 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14943 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14944 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14945 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14946 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14947 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14948 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14949 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14950 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14951 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14952 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14953 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14954 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14955 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14956 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14957 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14958 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14959 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14960 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14961 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14962 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14963 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14964 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14965 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14966 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14967 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14968 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14969 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14970 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14971 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14972 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14973 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14974 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14975 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14976 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14977 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14978 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14979 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14980 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14981 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14982 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14983 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14984 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14985 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14986 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14987 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14988 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14989 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14990 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14991 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14992 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14993 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14994 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14995 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14996 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14997 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14998 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14999 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 15000 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 15001 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 15002 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 15003 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 15004 + } } ] }, @@ -150821,265 +186161,3021 @@ }, "states": [ { + "id": 15960, "properties": { "bottom": "true", "distance": "0", "waterlogged": "true" - }, - "id": 15005 + } }, { + "id": 15961, "properties": { "bottom": "true", "distance": "0", "waterlogged": "false" - }, - "id": 15006 + } }, { + "id": 15962, "properties": { "bottom": "true", "distance": "1", "waterlogged": "true" - }, - "id": 15007 + } }, { + "id": 15963, "properties": { "bottom": "true", "distance": "1", "waterlogged": "false" - }, - "id": 15008 + } }, { + "id": 15964, "properties": { "bottom": "true", "distance": "2", "waterlogged": "true" - }, - "id": 15009 + } }, { + "id": 15965, "properties": { "bottom": "true", "distance": "2", "waterlogged": "false" - }, - "id": 15010 + } }, { + "id": 15966, "properties": { "bottom": "true", "distance": "3", "waterlogged": "true" - }, - "id": 15011 + } }, { + "id": 15967, "properties": { "bottom": "true", "distance": "3", "waterlogged": "false" - }, - "id": 15012 + } }, { + "id": 15968, "properties": { "bottom": "true", "distance": "4", "waterlogged": "true" - }, - "id": 15013 + } }, { + "id": 15969, "properties": { "bottom": "true", "distance": "4", "waterlogged": "false" - }, - "id": 15014 + } }, { + "id": 15970, "properties": { "bottom": "true", "distance": "5", "waterlogged": "true" - }, - "id": 15015 + } }, { + "id": 15971, "properties": { "bottom": "true", "distance": "5", "waterlogged": "false" - }, - "id": 15016 + } }, { + "id": 15972, "properties": { "bottom": "true", "distance": "6", "waterlogged": "true" - }, - "id": 15017 + } }, { + "id": 15973, "properties": { "bottom": "true", "distance": "6", "waterlogged": "false" - }, - "id": 15018 + } }, { + "id": 15974, "properties": { "bottom": "true", "distance": "7", "waterlogged": "true" - }, - "id": 15019 + } }, { + "id": 15975, "properties": { "bottom": "true", "distance": "7", "waterlogged": "false" - }, - "id": 15020 + } }, { + "id": 15976, "properties": { "bottom": "false", "distance": "0", "waterlogged": "true" - }, - "id": 15021 + } }, { + "id": 15977, "properties": { "bottom": "false", "distance": "0", "waterlogged": "false" - }, - "id": 15022 + } }, { + "id": 15978, "properties": { "bottom": "false", "distance": "1", "waterlogged": "true" - }, - "id": 15023 + } }, { + "id": 15979, "properties": { "bottom": "false", "distance": "1", "waterlogged": "false" - }, - "id": 15024 + } }, { + "id": 15980, "properties": { "bottom": "false", "distance": "2", "waterlogged": "true" - }, - "id": 15025 + } }, { + "id": 15981, "properties": { "bottom": "false", "distance": "2", "waterlogged": "false" - }, - "id": 15026 + } }, { + "id": 15982, "properties": { "bottom": "false", "distance": "3", "waterlogged": "true" - }, - "id": 15027 + } }, { + "id": 15983, "properties": { "bottom": "false", "distance": "3", "waterlogged": "false" - }, - "id": 15028 + } }, { + "id": 15984, "properties": { "bottom": "false", "distance": "4", "waterlogged": "true" - }, - "id": 15029 + } }, { + "id": 15985, "properties": { "bottom": "false", "distance": "4", "waterlogged": "false" - }, - "id": 15030 + } }, { + "id": 15986, "properties": { "bottom": "false", "distance": "5", "waterlogged": "true" - }, - "id": 15031 + } }, { + "id": 15987, "properties": { "bottom": "false", "distance": "5", "waterlogged": "false" - }, - "id": 15032 + } }, { + "id": 15988, "properties": { "bottom": "false", "distance": "6", "waterlogged": "true" - }, - "id": 15033 + } }, { + "id": 15989, "properties": { "bottom": "false", "distance": "6", "waterlogged": "false" - }, - "id": 15034 + } }, { + "id": 15990, "properties": { "bottom": "false", "distance": "7", "waterlogged": "true" - }, - "id": 15035 + } }, { + "default": true, + "id": 15991, "properties": { "bottom": "false", "distance": "7", "waterlogged": "false" - }, - "id": 15036, - "default": true + } } ] }, - "minecraft:loom": { + "minecraft:sculk": { + "states": [ + { + "default": true, + "id": 18769 + } + ] + }, + "minecraft:sculk_catalyst": { + "properties": { + "bloom": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18898, + "properties": { + "bloom": "true" + } + }, + { + "default": true, + "id": 18899, + "properties": { + "bloom": "false" + } + } + ] + }, + "minecraft:sculk_sensor": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "sculk_sensor_phase": [ + "inactive", + "active", + "cooldown" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18673, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18674, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18675, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18676, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18677, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18678, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18679, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18680, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18681, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18682, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18683, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18684, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18685, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18686, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18687, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18688, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18689, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18690, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18691, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18692, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18693, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18694, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18695, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18696, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18697, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18698, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18699, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18700, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18701, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18702, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18703, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18704, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18705, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18706, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18707, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18708, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18709, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18710, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18711, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18712, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18713, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18714, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18715, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18716, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18717, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18718, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18719, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18720, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18721, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18722, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18723, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18724, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18725, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18726, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18727, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18728, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18729, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18730, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18731, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18732, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18733, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18734, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18735, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18736, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18737, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18738, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18739, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18740, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18741, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18742, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18743, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18744, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18745, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18746, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18747, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18748, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18749, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18750, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18751, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18752, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18753, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18754, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18755, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18756, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18757, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18758, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18759, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18760, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18761, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18762, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 18763, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 18764, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 18765, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 18766, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 18767, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 18768, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_shrieker": { + "properties": { + "can_summon": [ + "true", + "false" + ], + "shrieking": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18900, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 18901, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 18902, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "id": 18903, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "false" + } + }, + { + "id": 18904, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 18905, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 18906, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18907, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_vein": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18770, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18771, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18772, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18773, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18774, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18775, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18776, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18777, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18778, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18779, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18780, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18781, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18782, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18783, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18784, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18785, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18786, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18787, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18788, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18789, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18790, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18791, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18792, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18793, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18794, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18795, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18796, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18797, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18798, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18799, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18800, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18801, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18802, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18803, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18804, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18805, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18806, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18807, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18808, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18809, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18810, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18811, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18812, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18813, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18814, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18815, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18816, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18817, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18818, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18819, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18820, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18821, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18822, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18823, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18824, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18825, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18826, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18827, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18828, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18829, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18830, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18831, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18832, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18833, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18834, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18835, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18836, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18837, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18838, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18839, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18840, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18841, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18842, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18843, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18844, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18845, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18846, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18847, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18848, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18849, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18850, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18851, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18852, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18853, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18854, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18855, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18856, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18857, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18858, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18859, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18860, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18861, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18862, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18863, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18864, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18865, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18866, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18867, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18868, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18869, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18870, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18871, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18872, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18873, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18874, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18875, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18876, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18877, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18878, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18879, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18880, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18881, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18882, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18883, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18884, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18885, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18886, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18887, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18888, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18889, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18890, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18891, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18892, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18893, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18894, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18895, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18896, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 18897, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:sea_lantern": { + "states": [ + { + "default": true, + "id": 8603 + } + ] + }, + "minecraft:sea_pickle": { + "properties": { + "pickles": [ + "1", + "2", + "3", + "4" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10521, + "properties": { + "pickles": "1", + "waterlogged": "true" + } + }, + { + "id": 10522, + "properties": { + "pickles": "1", + "waterlogged": "false" + } + }, + { + "id": 10523, + "properties": { + "pickles": "2", + "waterlogged": "true" + } + }, + { + "id": 10524, + "properties": { + "pickles": "2", + "waterlogged": "false" + } + }, + { + "id": 10525, + "properties": { + "pickles": "3", + "waterlogged": "true" + } + }, + { + "id": 10526, + "properties": { + "pickles": "3", + "waterlogged": "false" + } + }, + { + "id": 10527, + "properties": { + "pickles": "4", + "waterlogged": "true" + } + }, + { + "id": 10528, + "properties": { + "pickles": "4", + "waterlogged": "false" + } + } + ] + }, + "minecraft:seagrass": { + "states": [ + { + "default": true, + "id": 1599 + } + ] + }, + "minecraft:shroomlight": { + "states": [ + { + "default": true, + "id": 16198 + } + ] + }, + "minecraft:shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10153, + "properties": { + "facing": "north" + } + }, + { + "id": 10154, + "properties": { + "facing": "east" + } + }, + { + "id": 10155, + "properties": { + "facing": "south" + } + }, + { + "id": 10156, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10157, + "properties": { + "facing": "up" + } + }, + { + "id": 10158, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:skeleton_skull": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 7107, + "properties": { + "rotation": "0" + } + }, + { + "id": 7108, + "properties": { + "rotation": "1" + } + }, + { + "id": 7109, + "properties": { + "rotation": "2" + } + }, + { + "id": 7110, + "properties": { + "rotation": "3" + } + }, + { + "id": 7111, + "properties": { + "rotation": "4" + } + }, + { + "id": 7112, + "properties": { + "rotation": "5" + } + }, + { + "id": 7113, + "properties": { + "rotation": "6" + } + }, + { + "id": 7114, + "properties": { + "rotation": "7" + } + }, + { + "id": 7115, + "properties": { + "rotation": "8" + } + }, + { + "id": 7116, + "properties": { + "rotation": "9" + } + }, + { + "id": 7117, + "properties": { + "rotation": "10" + } + }, + { + "id": 7118, + "properties": { + "rotation": "11" + } + }, + { + "id": 7119, + "properties": { + "rotation": "12" + } + }, + { + "id": 7120, + "properties": { + "rotation": "13" + } + }, + { + "id": 7121, + "properties": { + "rotation": "14" + } + }, + { + "id": 7122, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:skeleton_wall_skull": { "properties": { "facing": [ "north", @@ -151090,33 +189186,41 @@ }, "states": [ { + "default": true, + "id": 7123, "properties": { "facing": "north" - }, - "id": 15037, - "default": true + } }, { + "id": 7124, "properties": { "facing": "south" - }, - "id": 15038 + } }, { + "id": 7125, "properties": { "facing": "west" - }, - "id": 15039 + } }, { + "id": 7126, "properties": { "facing": "east" - }, - "id": 15040 + } } ] }, - "minecraft:barrel": { + "minecraft:slime_block": { + "states": [ + { + "default": true, + "id": 8244 + } + ] + }, + "minecraft:small_amethyst_bud": { "properties": { "facing": [ "north", @@ -151126,96 +189230,253 @@ "up", "down" ], - "open": [ + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 18657, "properties": { "facing": "north", - "open": "true" - }, - "id": 15041 + "waterlogged": "true" + } }, { + "id": 18658, "properties": { "facing": "north", - "open": "false" - }, - "id": 15042, - "default": true + "waterlogged": "false" + } }, { + "id": 18659, "properties": { "facing": "east", - "open": "true" - }, - "id": 15043 + "waterlogged": "true" + } }, { + "id": 18660, "properties": { "facing": "east", - "open": "false" - }, - "id": 15044 + "waterlogged": "false" + } }, { + "id": 18661, "properties": { "facing": "south", - "open": "true" - }, - "id": 15045 + "waterlogged": "true" + } }, { + "id": 18662, "properties": { "facing": "south", - "open": "false" - }, - "id": 15046 + "waterlogged": "false" + } }, { + "id": 18663, "properties": { "facing": "west", - "open": "true" - }, - "id": 15047 + "waterlogged": "true" + } }, { + "id": 18664, "properties": { "facing": "west", - "open": "false" - }, - "id": 15048 + "waterlogged": "false" + } }, { + "id": 18665, "properties": { "facing": "up", - "open": "true" - }, - "id": 15049 + "waterlogged": "true" + } }, { + "default": true, + "id": 18666, "properties": { "facing": "up", - "open": "false" - }, - "id": 15050 + "waterlogged": "false" + } }, { + "id": 18667, "properties": { "facing": "down", - "open": "true" - }, - "id": 15051 + "waterlogged": "true" + } }, { + "id": 18668, "properties": { "facing": "down", - "open": "false" - }, - "id": 15052 + "waterlogged": "false" + } + } + ] + }, + "minecraft:small_dripleaf": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19758, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 19759, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 19760, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19761, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 19762, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 19763, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 19764, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 19765, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 19766, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 19767, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 19768, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 19769, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 19770, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 19771, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 19772, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 19773, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smithing_table": { + "states": [ + { + "default": true, + "id": 16054 } ] }, @@ -151234,733 +189495,86 @@ }, "states": [ { + "id": 16008, "properties": { "facing": "north", "lit": "true" - }, - "id": 15053 + } }, { + "default": true, + "id": 16009, "properties": { "facing": "north", "lit": "false" - }, - "id": 15054, - "default": true + } }, { + "id": 16010, "properties": { "facing": "south", "lit": "true" - }, - "id": 15055 + } }, { + "id": 16011, "properties": { "facing": "south", "lit": "false" - }, - "id": 15056 + } }, { + "id": 16012, "properties": { "facing": "west", "lit": "true" - }, - "id": 15057 + } }, { + "id": 16013, "properties": { "facing": "west", "lit": "false" - }, - "id": 15058 + } }, { + "id": 16014, "properties": { "facing": "east", "lit": "true" - }, - "id": 15059 + } }, { + "id": 16015, "properties": { "facing": "east", "lit": "false" - }, - "id": 15060 + } } ] }, - "minecraft:blast_furnace": { + "minecraft:smooth_basalt": { + "states": [ + { + "default": true, + "id": 21431 + } + ] + }, + "minecraft:smooth_quartz": { + "states": [ + { + "default": true, + "id": 9169 + } + ] + }, + "minecraft:smooth_quartz_slab": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "lit": "true" - }, - "id": 15061 - }, - { - "properties": { - "facing": "north", - "lit": "false" - }, - "id": 15062, - "default": true - }, - { - "properties": { - "facing": "south", - "lit": "true" - }, - "id": 15063 - }, - { - "properties": { - "facing": "south", - "lit": "false" - }, - "id": 15064 - }, - { - "properties": { - "facing": "west", - "lit": "true" - }, - "id": 15065 - }, - { - "properties": { - "facing": "west", - "lit": "false" - }, - "id": 15066 - }, - { - "properties": { - "facing": "east", - "lit": "true" - }, - "id": 15067 - }, - { - "properties": { - "facing": "east", - "lit": "false" - }, - "id": 15068 - } - ] - }, - "minecraft:cartography_table": { - "states": [ - { - "id": 15069, - "default": true - } - ] - }, - "minecraft:fletching_table": { - "states": [ - { - "id": 15070, - "default": true - } - ] - }, - "minecraft:grindstone": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north" - }, - "id": 15071 - }, - { - "properties": { - "face": "floor", - "facing": "south" - }, - "id": 15072 - }, - { - "properties": { - "face": "floor", - "facing": "west" - }, - "id": 15073 - }, - { - "properties": { - "face": "floor", - "facing": "east" - }, - "id": 15074 - }, - { - "properties": { - "face": "wall", - "facing": "north" - }, - "id": 15075, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south" - }, - "id": 15076 - }, - { - "properties": { - "face": "wall", - "facing": "west" - }, - "id": 15077 - }, - { - "properties": { - "face": "wall", - "facing": "east" - }, - "id": 15078 - }, - { - "properties": { - "face": "ceiling", - "facing": "north" - }, - "id": 15079 - }, - { - "properties": { - "face": "ceiling", - "facing": "south" - }, - "id": 15080 - }, - { - "properties": { - "face": "ceiling", - "facing": "west" - }, - "id": 15081 - }, - { - "properties": { - "face": "ceiling", - "facing": "east" - }, - "id": 15082 - } - ] - }, - "minecraft:lectern": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "has_book": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "has_book": "true", - "powered": "true" - }, - "id": 15083 - }, - { - "properties": { - "facing": "north", - "has_book": "true", - "powered": "false" - }, - "id": 15084 - }, - { - "properties": { - "facing": "north", - "has_book": "false", - "powered": "true" - }, - "id": 15085 - }, - { - "properties": { - "facing": "north", - "has_book": "false", - "powered": "false" - }, - "id": 15086, - "default": true - }, - { - "properties": { - "facing": "south", - "has_book": "true", - "powered": "true" - }, - "id": 15087 - }, - { - "properties": { - "facing": "south", - "has_book": "true", - "powered": "false" - }, - "id": 15088 - }, - { - "properties": { - "facing": "south", - "has_book": "false", - "powered": "true" - }, - "id": 15089 - }, - { - "properties": { - "facing": "south", - "has_book": "false", - "powered": "false" - }, - "id": 15090 - }, - { - "properties": { - "facing": "west", - "has_book": "true", - "powered": "true" - }, - "id": 15091 - }, - { - "properties": { - "facing": "west", - "has_book": "true", - "powered": "false" - }, - "id": 15092 - }, - { - "properties": { - "facing": "west", - "has_book": "false", - "powered": "true" - }, - "id": 15093 - }, - { - "properties": { - "facing": "west", - "has_book": "false", - "powered": "false" - }, - "id": 15094 - }, - { - "properties": { - "facing": "east", - "has_book": "true", - "powered": "true" - }, - "id": 15095 - }, - { - "properties": { - "facing": "east", - "has_book": "true", - "powered": "false" - }, - "id": 15096 - }, - { - "properties": { - "facing": "east", - "has_book": "false", - "powered": "true" - }, - "id": 15097 - }, - { - "properties": { - "facing": "east", - "has_book": "false", - "powered": "false" - }, - "id": 15098 - } - ] - }, - "minecraft:smithing_table": { - "states": [ - { - "id": 15099, - "default": true - } - ] - }, - "minecraft:stonecutter": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 15100, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 15101 - }, - { - "properties": { - "facing": "west" - }, - "id": 15102 - }, - { - "properties": { - "facing": "east" - }, - "id": 15103 - } - ] - }, - "minecraft:bell": { - "properties": { - "attachment": [ - "floor", - "ceiling", - "single_wall", - "double_wall" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "attachment": "floor", - "facing": "north", - "powered": "true" - }, - "id": 15104 - }, - { - "properties": { - "attachment": "floor", - "facing": "north", - "powered": "false" - }, - "id": 15105, - "default": true - }, - { - "properties": { - "attachment": "floor", - "facing": "south", - "powered": "true" - }, - "id": 15106 - }, - { - "properties": { - "attachment": "floor", - "facing": "south", - "powered": "false" - }, - "id": 15107 - }, - { - "properties": { - "attachment": "floor", - "facing": "west", - "powered": "true" - }, - "id": 15108 - }, - { - "properties": { - "attachment": "floor", - "facing": "west", - "powered": "false" - }, - "id": 15109 - }, - { - "properties": { - "attachment": "floor", - "facing": "east", - "powered": "true" - }, - "id": 15110 - }, - { - "properties": { - "attachment": "floor", - "facing": "east", - "powered": "false" - }, - "id": 15111 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 15112 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 15113 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 15114 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 15115 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 15116 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 15117 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 15118 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 15119 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "north", - "powered": "true" - }, - "id": 15120 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "north", - "powered": "false" - }, - "id": 15121 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "south", - "powered": "true" - }, - "id": 15122 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "south", - "powered": "false" - }, - "id": 15123 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "west", - "powered": "true" - }, - "id": 15124 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "west", - "powered": "false" - }, - "id": 15125 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "east", - "powered": "true" - }, - "id": 15126 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "east", - "powered": "false" - }, - "id": 15127 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "north", - "powered": "true" - }, - "id": 15128 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "north", - "powered": "false" - }, - "id": 15129 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "south", - "powered": "true" - }, - "id": 15130 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "south", - "powered": "false" - }, - "id": 15131 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "west", - "powered": "true" - }, - "id": 15132 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "west", - "powered": "false" - }, - "id": 15133 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "east", - "powered": "true" - }, - "id": 15134 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "east", - "powered": "false" - }, - "id": 15135 - } - ] - }, - "minecraft:lantern": { - "properties": { - "hanging": [ - "true", - "false" + "type": [ + "top", + "bottom", + "double" ], "waterlogged": [ "true", @@ -151969,80 +189583,51 @@ }, "states": [ { + "id": 11712, "properties": { - "hanging": "true", + "type": "top", "waterlogged": "true" - }, - "id": 15136 + } }, { + "id": 11713, "properties": { - "hanging": "true", + "type": "top", "waterlogged": "false" - }, - "id": 15137 + } }, { + "id": 11714, "properties": { - "hanging": "false", + "type": "bottom", "waterlogged": "true" - }, - "id": 15138 + } }, { + "default": true, + "id": 11715, "properties": { - "hanging": "false", + "type": "bottom", "waterlogged": "false" - }, - "id": 15139, - "default": true + } + }, + { + "id": 11716, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11717, + "properties": { + "type": "double", + "waterlogged": "false" + } } ] }, - "minecraft:soul_lantern": { - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "hanging": "true", - "waterlogged": "true" - }, - "id": 15140 - }, - { - "properties": { - "hanging": "true", - "waterlogged": "false" - }, - "id": 15141 - }, - { - "properties": { - "hanging": "false", - "waterlogged": "true" - }, - "id": 15142 - }, - { - "properties": { - "hanging": "false", - "waterlogged": "false" - }, - "id": 15143, - "default": true - } - ] - }, - "minecraft:campfire": { + "minecraft:smooth_quartz_stairs": { "properties": { "facing": [ "north", @@ -152050,13 +189635,16 @@ "west", "east" ], - "lit": [ - "true", - "false" + "half": [ + "top", + "bottom" ], - "signal_fire": [ - "true", - "false" + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ], "waterlogged": [ "true", @@ -152065,293 +189653,2492 @@ }, "states": [ { + "id": 11190, "properties": { "facing": "north", - "lit": "true", - "signal_fire": "true", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 15144 + } }, { + "id": 11191, "properties": { "facing": "north", - "lit": "true", - "signal_fire": "true", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 15145 + } }, { + "id": 11192, "properties": { "facing": "north", - "lit": "true", - "signal_fire": "false", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 15146 + } }, { + "id": 11193, "properties": { "facing": "north", - "lit": "true", - "signal_fire": "false", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 15147, - "default": true + } }, { + "id": 11194, "properties": { "facing": "north", - "lit": "false", - "signal_fire": "true", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 15148 + } }, { + "id": 11195, "properties": { "facing": "north", - "lit": "false", - "signal_fire": "true", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 15149 + } }, { + "id": 11196, "properties": { "facing": "north", - "lit": "false", - "signal_fire": "false", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 15150 + } }, { + "id": 11197, "properties": { "facing": "north", - "lit": "false", - "signal_fire": "false", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 15151 + } }, { + "id": 11198, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11199, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11200, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11201, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11202, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11203, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11204, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11205, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11206, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11207, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11208, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11209, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11210, "properties": { "facing": "south", - "lit": "true", - "signal_fire": "true", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 15152 + } }, { + "id": 11211, "properties": { "facing": "south", - "lit": "true", - "signal_fire": "true", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 15153 + } }, { + "id": 11212, "properties": { "facing": "south", - "lit": "true", - "signal_fire": "false", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 15154 + } }, { + "id": 11213, "properties": { "facing": "south", - "lit": "true", - "signal_fire": "false", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 15155 + } }, { + "id": 11214, "properties": { "facing": "south", - "lit": "false", - "signal_fire": "true", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 15156 + } }, { + "id": 11215, "properties": { "facing": "south", - "lit": "false", - "signal_fire": "true", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 15157 + } }, { + "id": 11216, "properties": { "facing": "south", - "lit": "false", - "signal_fire": "false", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 15158 + } }, { + "id": 11217, "properties": { "facing": "south", - "lit": "false", - "signal_fire": "false", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 15159 + } }, { + "id": 11218, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11219, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11220, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11221, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11222, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11223, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11224, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11225, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11226, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11227, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11228, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11229, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11230, "properties": { "facing": "west", - "lit": "true", - "signal_fire": "true", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 15160 + } }, { + "id": 11231, "properties": { "facing": "west", - "lit": "true", - "signal_fire": "true", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 15161 + } }, { + "id": 11232, "properties": { "facing": "west", - "lit": "true", - "signal_fire": "false", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 15162 + } }, { + "id": 11233, "properties": { "facing": "west", - "lit": "true", - "signal_fire": "false", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 15163 + } }, { + "id": 11234, "properties": { "facing": "west", - "lit": "false", - "signal_fire": "true", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 15164 + } }, { + "id": 11235, "properties": { "facing": "west", - "lit": "false", - "signal_fire": "true", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 15165 + } }, { + "id": 11236, "properties": { "facing": "west", - "lit": "false", - "signal_fire": "false", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 15166 + } }, { + "id": 11237, "properties": { "facing": "west", - "lit": "false", - "signal_fire": "false", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 15167 + } }, { + "id": 11238, "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", + "facing": "west", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 15168 + } }, { + "id": 11239, "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", + "facing": "west", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 15169 + } }, { + "id": 11240, "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 15170 + } }, { + "id": 11241, "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 15171 + } }, { + "id": 11242, "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", + "facing": "west", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 15172 + } }, { + "id": 11243, "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", + "facing": "west", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 15173 + } }, { + "id": 11244, "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "false", + "facing": "west", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 15174 + } }, { + "id": 11245, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11246, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11247, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11248, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11249, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11250, "properties": { "facing": "east", - "lit": "false", - "signal_fire": "false", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11251, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 15175 + } + }, + { + "id": 11252, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11253, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11254, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11255, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11256, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11257, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11258, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11259, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11260, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11261, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11262, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11263, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11264, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11265, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11266, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11267, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11268, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11269, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone": { + "states": [ + { + "default": true, + "id": 9170 + } + ] + }, + "minecraft:smooth_red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11676, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11677, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11678, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11679, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11680, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11681, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10630, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10631, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10632, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10633, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10634, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10635, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10636, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10637, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10638, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10639, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10640, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10641, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10642, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10643, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10644, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10645, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10646, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10647, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10648, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10649, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10650, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10651, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10652, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10653, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10654, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10655, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10656, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10657, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10658, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10659, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10660, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10661, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10662, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10663, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10664, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10665, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10666, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10667, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10668, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10669, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10670, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10671, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10672, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10673, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10674, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10675, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10676, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10677, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10678, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10679, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10680, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10681, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10682, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10683, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10684, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10685, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10686, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10687, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10688, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10689, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10690, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10691, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10692, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10693, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10694, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10695, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10696, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10697, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10698, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10699, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10700, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10701, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10702, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10703, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10704, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10705, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10706, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10707, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10708, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10709, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone": { + "states": [ + { + "default": true, + "id": 9168 + } + ] + }, + "minecraft:smooth_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11706, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11707, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11708, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11709, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11710, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11711, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11110, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11111, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11112, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11113, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11114, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11115, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11116, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11117, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11118, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11119, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11120, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11121, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11122, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11123, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11124, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11125, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11126, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11127, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11128, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11129, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11130, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11131, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11132, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11133, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11134, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11135, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11136, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11137, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11138, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11139, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11140, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11141, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11142, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11143, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11144, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11145, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11146, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11147, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11148, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11149, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11150, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11151, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11152, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11153, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11154, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11155, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11156, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11157, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11158, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11159, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11160, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11161, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11162, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11163, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11164, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11165, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11166, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11167, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11168, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11169, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11170, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11171, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11172, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11173, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11174, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11175, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11176, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11177, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11178, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11179, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11180, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11181, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11182, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11183, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11184, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11185, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11186, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11187, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11188, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11189, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_stone": { + "states": [ + { + "default": true, + "id": 9167 + } + ] + }, + "minecraft:smooth_stone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9089, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9090, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9091, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9092, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9093, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9094, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:snow": { + "properties": { + "layers": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ + { + "default": true, + "id": 4230, + "properties": { + "layers": "1" + } + }, + { + "id": 4231, + "properties": { + "layers": "2" + } + }, + { + "id": 4232, + "properties": { + "layers": "3" + } + }, + { + "id": 4233, + "properties": { + "layers": "4" + } + }, + { + "id": 4234, + "properties": { + "layers": "5" + } + }, + { + "id": 4235, + "properties": { + "layers": "6" + } + }, + { + "id": 4236, + "properties": { + "layers": "7" + } + }, + { + "id": 4237, + "properties": { + "layers": "8" + } + } + ] + }, + "minecraft:snow_block": { + "states": [ + { + "default": true, + "id": 4239 } ] }, @@ -152378,334 +192165,4109 @@ }, "states": [ { + "id": 16131, "properties": { "facing": "north", "lit": "true", "signal_fire": "true", "waterlogged": "true" - }, - "id": 15176 + } }, { + "id": 16132, "properties": { "facing": "north", "lit": "true", "signal_fire": "true", "waterlogged": "false" - }, - "id": 15177 + } }, { + "id": 16133, "properties": { "facing": "north", "lit": "true", "signal_fire": "false", "waterlogged": "true" - }, - "id": 15178 + } }, { + "default": true, + "id": 16134, "properties": { "facing": "north", "lit": "true", "signal_fire": "false", "waterlogged": "false" - }, - "id": 15179, - "default": true + } }, { + "id": 16135, "properties": { "facing": "north", "lit": "false", "signal_fire": "true", "waterlogged": "true" - }, - "id": 15180 + } }, { + "id": 16136, "properties": { "facing": "north", "lit": "false", "signal_fire": "true", "waterlogged": "false" - }, - "id": 15181 + } }, { + "id": 16137, "properties": { "facing": "north", "lit": "false", "signal_fire": "false", "waterlogged": "true" - }, - "id": 15182 + } }, { + "id": 16138, "properties": { "facing": "north", "lit": "false", "signal_fire": "false", "waterlogged": "false" - }, - "id": 15183 + } }, { + "id": 16139, "properties": { "facing": "south", "lit": "true", "signal_fire": "true", "waterlogged": "true" - }, - "id": 15184 + } }, { + "id": 16140, "properties": { "facing": "south", "lit": "true", "signal_fire": "true", "waterlogged": "false" - }, - "id": 15185 + } }, { + "id": 16141, "properties": { "facing": "south", "lit": "true", "signal_fire": "false", "waterlogged": "true" - }, - "id": 15186 + } }, { + "id": 16142, "properties": { "facing": "south", "lit": "true", "signal_fire": "false", "waterlogged": "false" - }, - "id": 15187 + } }, { + "id": 16143, "properties": { "facing": "south", "lit": "false", "signal_fire": "true", "waterlogged": "true" - }, - "id": 15188 + } }, { + "id": 16144, "properties": { "facing": "south", "lit": "false", "signal_fire": "true", "waterlogged": "false" - }, - "id": 15189 + } }, { + "id": 16145, "properties": { "facing": "south", "lit": "false", "signal_fire": "false", "waterlogged": "true" - }, - "id": 15190 + } }, { + "id": 16146, "properties": { "facing": "south", "lit": "false", "signal_fire": "false", "waterlogged": "false" - }, - "id": 15191 + } }, { + "id": 16147, "properties": { "facing": "west", "lit": "true", "signal_fire": "true", "waterlogged": "true" - }, - "id": 15192 + } }, { + "id": 16148, "properties": { "facing": "west", "lit": "true", "signal_fire": "true", "waterlogged": "false" - }, - "id": 15193 + } }, { + "id": 16149, "properties": { "facing": "west", "lit": "true", "signal_fire": "false", "waterlogged": "true" - }, - "id": 15194 + } }, { + "id": 16150, "properties": { "facing": "west", "lit": "true", "signal_fire": "false", "waterlogged": "false" - }, - "id": 15195 + } }, { + "id": 16151, "properties": { "facing": "west", "lit": "false", "signal_fire": "true", "waterlogged": "true" - }, - "id": 15196 + } }, { + "id": 16152, "properties": { "facing": "west", "lit": "false", "signal_fire": "true", "waterlogged": "false" - }, - "id": 15197 + } }, { + "id": 16153, "properties": { "facing": "west", "lit": "false", "signal_fire": "false", "waterlogged": "true" - }, - "id": 15198 + } }, { + "id": 16154, "properties": { "facing": "west", "lit": "false", "signal_fire": "false", "waterlogged": "false" - }, - "id": 15199 + } }, { + "id": 16155, "properties": { "facing": "east", "lit": "true", "signal_fire": "true", "waterlogged": "true" - }, - "id": 15200 + } }, { + "id": 16156, "properties": { "facing": "east", "lit": "true", "signal_fire": "true", "waterlogged": "false" - }, - "id": 15201 + } }, { + "id": 16157, "properties": { "facing": "east", "lit": "true", "signal_fire": "false", "waterlogged": "true" - }, - "id": 15202 + } }, { + "id": 16158, "properties": { "facing": "east", "lit": "true", "signal_fire": "false", "waterlogged": "false" - }, - "id": 15203 + } }, { + "id": 16159, "properties": { "facing": "east", "lit": "false", "signal_fire": "true", "waterlogged": "true" - }, - "id": 15204 + } }, { + "id": 16160, "properties": { "facing": "east", "lit": "false", "signal_fire": "true", "waterlogged": "false" - }, - "id": 15205 + } }, { + "id": 16161, "properties": { "facing": "east", "lit": "false", "signal_fire": "false", "waterlogged": "true" - }, - "id": 15206 + } }, { + "id": 16162, "properties": { "facing": "east", "lit": "false", "signal_fire": "false", "waterlogged": "false" - }, - "id": 15207 + } } ] }, - "minecraft:sweet_berry_bush": { + "minecraft:soul_fire": { + "states": [ + { + "default": true, + "id": 2206 + } + ] + }, + "minecraft:soul_lantern": { "properties": { - "age": [ + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16095, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 16096, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 16097, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16098, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:soul_sand": { + "states": [ + { + "default": true, + "id": 4309 + } + ] + }, + "minecraft:soul_soil": { + "states": [ + { + "default": true, + "id": 4310 + } + ] + }, + "minecraft:soul_torch": { + "states": [ + { + "default": true, + "id": 4317 + } + ] + }, + "minecraft:soul_wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 4318, + "properties": { + "facing": "north" + } + }, + { + "id": 4319, + "properties": { + "facing": "south" + } + }, + { + "id": 4320, + "properties": { + "facing": "west" + } + }, + { + "id": 4321, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:spawner": { + "states": [ + { + "default": true, + "id": 2207 + } + ] + }, + "minecraft:sponge": { + "states": [ + { + "default": true, + "id": 458 + } + ] + }, + "minecraft:spore_blossom": { + "states": [ + { + "default": true, + "id": 19713 + } + ] + }, + "minecraft:spruce_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6963, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 6964, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6965, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6966, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6967, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6968, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6969, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6970, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 6971, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 6972, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6973, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6974, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6975, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6976, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6977, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6978, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 6979, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 6980, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6981, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6982, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6983, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6984, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6985, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6986, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9555, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9556, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9557, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9558, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9559, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9560, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9561, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9562, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9563, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9564, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9565, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 9566, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9567, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9568, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9569, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9570, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9571, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9572, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9573, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9574, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9575, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9576, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9577, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9578, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9579, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9580, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9581, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9582, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9583, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9584, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9585, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9586, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9587, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9588, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9589, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9590, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9591, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9592, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9593, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9594, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9595, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9596, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9597, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9598, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9599, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9600, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9601, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9602, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9603, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9604, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9605, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9606, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9607, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9608, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9609, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9610, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 9611, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 9612, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 9613, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 9614, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 9615, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 9616, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 9617, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9618, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9363, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9364, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9365, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9366, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9367, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9368, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9369, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9370, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9371, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9372, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9373, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9374, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9375, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9376, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9377, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9378, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9379, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9380, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9381, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9382, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9383, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9384, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9385, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9386, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9387, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9388, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9389, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9390, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9391, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9392, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9393, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9394, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:spruce_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9171, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9172, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9173, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9174, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9175, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9176, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9177, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 9178, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9179, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9180, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9181, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9182, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9183, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9184, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9185, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9186, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9187, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9188, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9189, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9190, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9191, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9192, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9193, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9194, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 9195, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 9196, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9197, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9198, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9199, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9200, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9201, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 9202, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 234, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 235, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 236, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 237, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 238, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 239, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 240, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 241, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 242, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 243, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 244, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 245, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 246, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 247, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 248, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 249, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 250, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 251, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 252, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 253, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 254, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 255, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 256, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 257, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 258, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 259, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 260, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 261, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 120, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 121, + "properties": { + "axis": "y" + } + }, + { + "id": 122, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:spruce_planks": { + "states": [ + { + "default": true, + "id": 16 + } + ] + }, + "minecraft:spruce_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4180, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 4181, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:spruce_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 24, + "properties": { + "stage": "0" + } + }, + { + "id": 25, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:spruce_sign": { + "properties": { + "rotation": [ "0", "1", "2", - "3" + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { + "id": 3668, "properties": { - "age": "0" - }, - "id": 15208, - "default": true + "rotation": "0", + "waterlogged": "true" + } }, { + "default": true, + "id": 3669, "properties": { - "age": "1" - }, - "id": 15209 + "rotation": "0", + "waterlogged": "false" + } }, { + "id": 3670, "properties": { - "age": "2" - }, - "id": 15210 + "rotation": "1", + "waterlogged": "true" + } }, { + "id": 3671, "properties": { - "age": "3" - }, - "id": 15211 + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 3672, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 3673, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 3674, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 3675, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 3676, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 3677, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 3678, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 3679, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 3680, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 3681, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 3682, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 3683, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 3684, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 3685, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 3686, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 3687, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 3688, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 3689, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 3690, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 3691, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 3692, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 3693, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 3694, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 3695, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 3696, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 3697, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 3698, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 3699, + "properties": { + "rotation": "15", + "waterlogged": "false" + } } ] }, - "minecraft:warped_stem": { + "minecraft:spruce_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9047, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9048, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9049, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9050, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9051, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9052, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5996, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5997, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5998, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5999, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6000, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6001, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6002, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6003, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6004, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6005, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6006, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6007, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6008, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6009, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6010, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6011, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6012, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6013, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6014, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6015, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6016, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6017, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6018, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6019, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6020, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6021, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6022, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6023, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6024, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6025, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6026, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6027, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6028, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6029, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6030, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6031, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6032, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6033, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6034, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6035, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6036, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6037, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6038, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6039, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6040, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6041, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6042, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6043, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6044, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6045, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6046, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6047, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6048, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6049, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6050, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6051, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6052, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6053, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6054, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6055, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6056, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6057, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6058, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6059, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6060, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6061, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6062, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6063, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6064, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6065, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6066, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6067, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6068, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6069, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6070, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6071, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6072, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6073, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6074, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6075, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4484, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4485, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4486, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4487, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4488, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4489, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4490, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4491, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4492, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4493, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4494, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4495, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4496, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4497, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4498, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4499, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4500, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4501, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4502, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4503, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4504, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4505, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4506, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4507, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4508, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4509, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4510, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4511, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4512, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4513, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4514, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4515, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4516, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4517, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4518, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4519, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4520, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4521, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4522, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4523, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4524, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4525, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4526, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4527, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4528, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4529, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4530, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4531, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4532, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4533, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4534, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4535, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4536, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4537, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4538, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4539, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4540, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4541, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4542, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4543, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 4544, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 4545, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 4546, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 4547, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4040, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4041, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4042, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4043, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4044, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4045, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4046, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4047, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wood": { "properties": { "axis": [ "x", @@ -152715,27 +196277,5631 @@ }, "states": [ { + "id": 167, "properties": { "axis": "x" - }, - "id": 15212 + } }, { + "default": true, + "id": 168, "properties": { "axis": "y" - }, - "id": 15213, - "default": true + } }, { + "id": 169, "properties": { "axis": "z" - }, - "id": 15214 + } } ] }, - "minecraft:stripped_warped_stem": { + "minecraft:sticky_piston": { + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 1583, + "properties": { + "extended": "true", + "facing": "north" + } + }, + { + "id": 1584, + "properties": { + "extended": "true", + "facing": "east" + } + }, + { + "id": 1585, + "properties": { + "extended": "true", + "facing": "south" + } + }, + { + "id": 1586, + "properties": { + "extended": "true", + "facing": "west" + } + }, + { + "id": 1587, + "properties": { + "extended": "true", + "facing": "up" + } + }, + { + "id": 1588, + "properties": { + "extended": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 1589, + "properties": { + "extended": "false", + "facing": "north" + } + }, + { + "id": 1590, + "properties": { + "extended": "false", + "facing": "east" + } + }, + { + "id": 1591, + "properties": { + "extended": "false", + "facing": "south" + } + }, + { + "id": 1592, + "properties": { + "extended": "false", + "facing": "west" + } + }, + { + "id": 1593, + "properties": { + "extended": "false", + "facing": "up" + } + }, + { + "id": 1594, + "properties": { + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:stone": { + "states": [ + { + "default": true, + "id": 1 + } + ] + }, + "minecraft:stone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9125, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9126, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9127, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9128, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9129, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9130, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5439, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5440, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5441, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5442, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5443, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5444, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5445, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5446, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5447, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5448, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5449, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5450, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5451, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5452, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5453, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5454, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5455, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5456, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5457, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5458, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5459, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5460, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5461, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5462, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5463, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5464, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5465, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5466, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5467, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5468, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5469, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5470, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5471, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5472, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5473, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5474, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5475, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5476, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5477, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5478, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5479, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5480, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5481, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5482, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5483, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5484, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5485, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5486, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5487, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5488, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5489, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5490, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5491, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5492, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5493, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5494, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5495, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5496, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5497, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5498, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5499, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5500, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5501, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5502, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5503, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5504, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5505, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5506, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5507, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5508, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5509, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5510, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5511, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5512, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5513, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5514, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5515, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5516, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5517, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5518, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 13368, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13369, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13370, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 13371, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13372, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13373, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13374, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13375, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13376, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13377, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13378, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13379, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13380, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13381, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13382, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13383, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13384, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13385, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13386, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13387, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13388, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13389, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13390, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13391, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13392, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13393, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13394, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13395, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13396, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13397, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13398, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13399, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13400, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13401, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13402, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13403, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13404, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13405, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13406, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13407, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13408, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13409, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13410, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13411, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13412, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13413, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13414, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13415, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13416, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13417, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13418, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13419, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13420, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13421, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13422, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13423, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13424, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13425, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13426, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13427, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13428, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13429, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13430, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13431, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13432, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13433, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13434, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13435, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13436, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13437, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13438, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13439, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13440, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13441, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13442, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13443, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13444, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13445, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13446, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13447, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13448, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13449, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13450, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13451, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13452, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13453, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13454, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13455, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13456, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13457, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13458, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13459, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13460, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13461, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13462, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13463, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13464, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13465, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13466, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13467, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13468, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13469, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13470, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13471, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13472, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13473, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13474, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13475, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13476, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13477, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13478, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13479, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13480, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13481, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13482, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13483, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13484, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13485, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13486, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13487, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13488, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13489, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13490, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13491, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13492, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13493, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13494, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13495, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13496, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13497, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13498, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13499, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13500, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13501, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13502, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13503, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13504, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13505, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13506, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13507, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13508, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13509, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13510, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13511, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13512, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13513, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13514, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13515, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13516, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13517, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13518, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13519, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13520, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13521, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13522, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13523, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13524, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13525, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13526, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13527, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13528, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13529, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13530, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13531, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13532, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13533, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13534, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13535, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13536, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13537, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13538, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13539, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13540, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13541, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13542, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13543, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13544, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13545, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13546, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13547, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13548, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13549, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13550, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13551, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13552, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13553, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13554, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13555, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13556, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13557, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13558, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13559, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13560, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13561, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13562, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13563, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13564, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13565, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13566, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13567, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13568, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13569, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13570, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13571, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13572, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13573, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13574, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13575, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13576, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13577, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13578, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13579, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13580, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13581, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13582, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13583, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13584, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13585, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13586, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13587, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13588, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13589, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13590, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13591, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13592, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13593, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13594, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13595, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13596, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13597, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13598, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13599, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13600, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13601, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13602, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13603, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13604, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13605, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13606, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13607, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13608, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13609, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13610, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13611, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13612, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13613, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13614, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13615, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13616, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13617, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13618, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13619, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13620, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13621, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13622, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13623, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13624, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13625, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13626, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13627, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13628, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13629, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13630, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13631, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13632, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13633, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13634, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13635, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13636, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13637, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13638, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13639, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13640, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13641, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13642, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13643, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13644, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13645, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13646, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13647, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13648, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13649, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13650, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13651, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13652, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13653, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13654, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13655, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13656, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13657, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13658, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13659, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13660, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13661, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13662, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13663, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13664, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13665, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13666, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13667, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13668, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13669, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13670, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13671, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13672, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13673, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13674, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13675, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13676, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13677, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13678, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13679, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13680, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13681, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13682, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13683, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13684, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13685, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13686, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13687, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13688, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13689, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13690, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13691, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:stone_bricks": { + "states": [ + { + "default": true, + "id": 4868 + } + ] + }, + "minecraft:stone_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4206, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 4207, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 4208, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 4209, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 4210, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 4211, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 4212, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 4213, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 4214, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 4215, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 4216, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 4217, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 4218, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 4219, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 4220, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 4221, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 4222, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 4223, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 4224, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 4225, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 4226, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 4227, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 4228, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 4229, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:stone_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4112, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 4113, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:stone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9083, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9084, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9085, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9086, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9087, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9088, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11030, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11031, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11032, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11033, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11034, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11035, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11036, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11037, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11038, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11039, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11040, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11041, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11042, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11043, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11044, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11045, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11046, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11047, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11048, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11049, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11050, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11051, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11052, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11053, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11054, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11055, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11056, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11057, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11058, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11059, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11060, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11061, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11062, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11063, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11064, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11065, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11066, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11067, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11068, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11069, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11070, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11071, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11072, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11073, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11074, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11075, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11076, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11077, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11078, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11079, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11080, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11081, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11082, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11083, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11084, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11085, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11086, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11087, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11088, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11089, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11090, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11091, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11092, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11093, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11094, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11095, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11096, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11097, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11098, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11099, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11100, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11101, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11102, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11103, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11104, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11105, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11106, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11107, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11108, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11109, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stonecutter": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 16055, + "properties": { + "facing": "north" + } + }, + { + "id": 16056, + "properties": { + "facing": "south" + } + }, + { + "id": 16057, + "properties": { + "facing": "west" + } + }, + { + "id": 16058, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:stripped_acacia_log": { "properties": { "axis": [ "x", @@ -152745,27 +201911,27 @@ }, "states": [ { + "id": 152, "properties": { "axis": "x" - }, - "id": 15215 + } }, { + "default": true, + "id": 153, "properties": { "axis": "y" - }, - "id": 15216, - "default": true + } }, { + "id": 154, "properties": { "axis": "z" - }, - "id": 15217 + } } ] }, - "minecraft:warped_hyphae": { + "minecraft:stripped_acacia_wood": { "properties": { "axis": [ "x", @@ -152775,27 +201941,27 @@ }, "states": [ { + "id": 197, "properties": { "axis": "x" - }, - "id": 15218 + } }, { + "default": true, + "id": 198, "properties": { "axis": "y" - }, - "id": 15219, - "default": true + } }, { + "id": 199, "properties": { "axis": "z" - }, - "id": 15220 + } } ] }, - "minecraft:stripped_warped_hyphae": { + "minecraft:stripped_birch_log": { "properties": { "axis": [ "x", @@ -152805,67 +201971,27 @@ }, "states": [ { + "id": 146, "properties": { "axis": "x" - }, - "id": 15221 + } }, { + "default": true, + "id": 147, "properties": { "axis": "y" - }, - "id": 15222, - "default": true + } }, { + "id": 148, "properties": { "axis": "z" - }, - "id": 15223 + } } ] }, - "minecraft:warped_nylium": { - "states": [ - { - "id": 15224, - "default": true - } - ] - }, - "minecraft:warped_fungus": { - "states": [ - { - "id": 15225, - "default": true - } - ] - }, - "minecraft:warped_wart_block": { - "states": [ - { - "id": 15226, - "default": true - } - ] - }, - "minecraft:warped_roots": { - "states": [ - { - "id": 15227, - "default": true - } - ] - }, - "minecraft:nether_sprouts": { - "states": [ - { - "id": 15228, - "default": true - } - ] - }, - "minecraft:crimson_stem": { + "minecraft:stripped_birch_wood": { "properties": { "axis": [ "x", @@ -152875,83 +202001,23 @@ }, "states": [ { + "id": 191, "properties": { "axis": "x" - }, - "id": 15229 + } }, { + "default": true, + "id": 192, "properties": { "axis": "y" - }, - "id": 15230, - "default": true + } }, { + "id": 193, "properties": { "axis": "z" - }, - "id": 15231 - } - ] - }, - "minecraft:stripped_crimson_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 15232 - }, - { - "properties": { - "axis": "y" - }, - "id": 15233, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 15234 - } - ] - }, - "minecraft:crimson_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 15235 - }, - { - "properties": { - "axis": "y" - }, - "id": 15236, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 15237 + } } ] }, @@ -152965,51 +202031,462 @@ }, "states": [ { + "id": 16193, "properties": { "axis": "x" - }, - "id": 15238 + } }, { + "default": true, + "id": 16194, "properties": { "axis": "y" - }, - "id": 15239, - "default": true + } }, { + "id": 16195, "properties": { "axis": "z" - }, - "id": 15240 + } } ] }, - "minecraft:crimson_nylium": { + "minecraft:stripped_crimson_stem": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, "states": [ { - "id": 15241, - "default": true + "id": 16187, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 16188, + "properties": { + "axis": "y" + } + }, + { + "id": 16189, + "properties": { + "axis": "z" + } } ] }, - "minecraft:crimson_fungus": { + "minecraft:stripped_dark_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, "states": [ { - "id": 15242, - "default": true + "id": 155, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 156, + "properties": { + "axis": "y" + } + }, + { + "id": 157, + "properties": { + "axis": "z" + } } ] }, - "minecraft:shroomlight": { + "minecraft:stripped_dark_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, "states": [ { - "id": 15243, - "default": true + "id": 200, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 201, + "properties": { + "axis": "y" + } + }, + { + "id": 202, + "properties": { + "axis": "z" + } } ] }, - "minecraft:weeping_vines": { + "minecraft:stripped_jungle_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 149, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 150, + "properties": { + "axis": "y" + } + }, + { + "id": 151, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_jungle_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 194, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 195, + "properties": { + "axis": "y" + } + }, + { + "id": 196, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 161, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 162, + "properties": { + "axis": "y" + } + }, + { + "id": 163, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 203, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 204, + "properties": { + "axis": "y" + } + }, + { + "id": 205, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 158, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 159, + "properties": { + "axis": "y" + } + }, + { + "id": 160, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 185, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 186, + "properties": { + "axis": "y" + } + }, + { + "id": 187, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_spruce_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 143, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 144, + "properties": { + "axis": "y" + } + }, + { + "id": 145, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_spruce_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 188, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 189, + "properties": { + "axis": "y" + } + }, + { + "id": 190, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_warped_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 16176, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 16177, + "properties": { + "axis": "y" + } + }, + { + "id": 16178, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_warped_stem": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 16170, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 16171, + "properties": { + "axis": "y" + } + }, + { + "id": 16172, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:structure_block": { + "properties": { + "mode": [ + "save", + "load", + "corner", + "data" + ] + }, + "states": [ + { + "id": 16944, + "properties": { + "mode": "save" + } + }, + { + "default": true, + "id": 16945, + "properties": { + "mode": "load" + } + }, + { + "id": 16946, + "properties": { + "mode": "corner" + } + }, + { + "id": 16947, + "properties": { + "mode": "data" + } + } + ] + }, + "minecraft:structure_void": { + "states": [ + { + "default": true, + "id": 10140 + } + ] + }, + "minecraft:sugar_cane": { "properties": { "age": [ "0", @@ -153027,184 +202504,2551 @@ "12", "13", "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" + "15" ] }, "states": [ { + "default": true, + "id": 4257, "properties": { "age": "0" - }, - "id": 15244, - "default": true + } }, { + "id": 4258, "properties": { "age": "1" - }, - "id": 15245 + } }, { + "id": 4259, "properties": { "age": "2" - }, - "id": 15246 + } }, { + "id": 4260, "properties": { "age": "3" - }, - "id": 15247 + } }, { + "id": 4261, "properties": { "age": "4" - }, - "id": 15248 + } }, { + "id": 4262, "properties": { "age": "5" - }, - "id": 15249 + } }, { + "id": 4263, "properties": { "age": "6" - }, - "id": 15250 + } }, { + "id": 4264, "properties": { "age": "7" - }, - "id": 15251 + } }, { + "id": 4265, "properties": { "age": "8" - }, - "id": 15252 + } }, { + "id": 4266, "properties": { "age": "9" - }, - "id": 15253 + } }, { + "id": 4267, "properties": { "age": "10" - }, - "id": 15254 + } }, { + "id": 4268, "properties": { "age": "11" - }, - "id": 15255 + } }, { + "id": 4269, "properties": { "age": "12" - }, - "id": 15256 + } }, { + "id": 4270, "properties": { "age": "13" - }, - "id": 15257 + } }, { + "id": 4271, "properties": { "age": "14" - }, - "id": 15258 + } }, { + "id": 4272, "properties": { "age": "15" - }, - "id": 15259 - }, - { - "properties": { - "age": "16" - }, - "id": 15260 - }, - { - "properties": { - "age": "17" - }, - "id": 15261 - }, - { - "properties": { - "age": "18" - }, - "id": 15262 - }, - { - "properties": { - "age": "19" - }, - "id": 15263 - }, - { - "properties": { - "age": "20" - }, - "id": 15264 - }, - { - "properties": { - "age": "21" - }, - "id": 15265 - }, - { - "properties": { - "age": "22" - }, - "id": 15266 - }, - { - "properties": { - "age": "23" - }, - "id": 15267 - }, - { - "properties": { - "age": "24" - }, - "id": 15268 - }, - { - "properties": { - "age": "25" - }, - "id": 15269 + } } ] }, - "minecraft:weeping_vines_plant": { + "minecraft:sunflower": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, "states": [ { - "id": 15270, - "default": true + "id": 8626, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 8627, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:sweet_berry_bush": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 16163, + "properties": { + "age": "0" + } + }, + { + "id": 16164, + "properties": { + "age": "1" + } + }, + { + "id": 16165, + "properties": { + "age": "2" + } + }, + { + "id": 16166, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:tall_grass": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 8634, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 8635, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:tall_seagrass": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 1600, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 1601, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:target": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 16969, + "properties": { + "power": "0" + } + }, + { + "id": 16970, + "properties": { + "power": "1" + } + }, + { + "id": 16971, + "properties": { + "power": "2" + } + }, + { + "id": 16972, + "properties": { + "power": "3" + } + }, + { + "id": 16973, + "properties": { + "power": "4" + } + }, + { + "id": 16974, + "properties": { + "power": "5" + } + }, + { + "id": 16975, + "properties": { + "power": "6" + } + }, + { + "id": 16976, + "properties": { + "power": "7" + } + }, + { + "id": 16977, + "properties": { + "power": "8" + } + }, + { + "id": 16978, + "properties": { + "power": "9" + } + }, + { + "id": 16979, + "properties": { + "power": "10" + } + }, + { + "id": 16980, + "properties": { + "power": "11" + } + }, + { + "id": 16981, + "properties": { + "power": "12" + } + }, + { + "id": 16982, + "properties": { + "power": "13" + } + }, + { + "id": 16983, + "properties": { + "power": "14" + } + }, + { + "id": 16984, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:terracotta": { + "states": [ + { + "default": true, + "id": 8623 + } + ] + }, + "minecraft:tinted_glass": { + "states": [ + { + "default": true, + "id": 18671 + } + ] + }, + "minecraft:tnt": { + "properties": { + "unstable": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1684, + "properties": { + "unstable": "true" + } + }, + { + "default": true, + "id": 1685, + "properties": { + "unstable": "false" + } + } + ] + }, + "minecraft:torch": { + "states": [ + { + "default": true, + "id": 1689 + } + ] + }, + "minecraft:trapped_chest": { + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7239, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7240, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 7241, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 7242, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 7243, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 7244, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 7245, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 7246, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 7247, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 7248, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 7249, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 7250, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 7251, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 7252, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 7253, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 7254, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 7255, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 7256, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 7257, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 7258, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 7259, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 7260, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 7261, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 7262, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tripwire": { + "properties": { + "attached": [ + "true", + "false" + ], + "disarmed": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5867, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5868, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5869, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5870, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5871, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5872, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5873, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5874, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5875, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5876, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5877, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5878, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5879, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5880, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5881, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5882, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5883, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5884, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5885, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5886, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5887, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5888, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5889, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5890, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5891, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5892, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5893, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5894, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5895, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5896, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5897, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5898, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5899, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5900, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5901, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5902, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5903, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5904, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5905, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5906, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5907, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5908, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5909, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5910, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5911, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5912, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5913, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5914, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5915, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5916, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5917, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5918, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5919, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5920, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5921, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5922, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5923, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5924, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5925, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5926, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5927, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5928, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5929, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5930, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5931, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5932, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5933, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5934, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5935, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5936, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5937, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5938, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5939, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5940, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5941, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5942, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5943, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5944, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5945, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5946, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5947, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5948, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5949, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5950, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5951, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5952, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5953, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5954, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5955, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5956, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5957, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5958, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5959, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5960, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5961, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5962, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5963, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5964, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5965, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5966, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5967, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5968, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5969, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5970, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5971, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5972, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5973, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5974, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5975, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5976, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5977, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5978, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5979, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5980, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5981, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5982, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5983, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5984, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5985, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 5986, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 5987, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 5988, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 5989, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 5990, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 5991, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 5992, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 5993, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "default": true, + "id": 5994, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + } + ] + }, + "minecraft:tripwire_hook": { + "properties": { + "attached": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5851, + "properties": { + "attached": "true", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5852, + "properties": { + "attached": "true", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5853, + "properties": { + "attached": "true", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5854, + "properties": { + "attached": "true", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5855, + "properties": { + "attached": "true", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5856, + "properties": { + "attached": "true", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5857, + "properties": { + "attached": "true", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5858, + "properties": { + "attached": "true", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5859, + "properties": { + "attached": "false", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 5860, + "properties": { + "attached": "false", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5861, + "properties": { + "attached": "false", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5862, + "properties": { + "attached": "false", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5863, + "properties": { + "attached": "false", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5864, + "properties": { + "attached": "false", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5865, + "properties": { + "attached": "false", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5866, + "properties": { + "attached": "false", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:tube_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10411, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10412, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:tube_coral_block": { + "states": [ + { + "default": true, + "id": 10396 + } + ] + }, + "minecraft:tube_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10431, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10432, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:tube_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10481, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 10482, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 10483, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 10484, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 10485, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 10486, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 10487, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 10488, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff": { + "states": [ + { + "default": true, + "id": 18669 + } + ] + }, + "minecraft:turtle_egg": { + "properties": { + "eggs": [ + "1", + "2", + "3", + "4" + ], + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ + { + "default": true, + "id": 10379, + "properties": { + "eggs": "1", + "hatch": "0" + } + }, + { + "id": 10380, + "properties": { + "eggs": "1", + "hatch": "1" + } + }, + { + "id": 10381, + "properties": { + "eggs": "1", + "hatch": "2" + } + }, + { + "id": 10382, + "properties": { + "eggs": "2", + "hatch": "0" + } + }, + { + "id": 10383, + "properties": { + "eggs": "2", + "hatch": "1" + } + }, + { + "id": 10384, + "properties": { + "eggs": "2", + "hatch": "2" + } + }, + { + "id": 10385, + "properties": { + "eggs": "3", + "hatch": "0" + } + }, + { + "id": 10386, + "properties": { + "eggs": "3", + "hatch": "1" + } + }, + { + "id": 10387, + "properties": { + "eggs": "3", + "hatch": "2" + } + }, + { + "id": 10388, + "properties": { + "eggs": "4", + "hatch": "0" + } + }, + { + "id": 10389, + "properties": { + "eggs": "4", + "hatch": "1" + } + }, + { + "id": 10390, + "properties": { + "eggs": "4", + "hatch": "2" + } } ] }, @@ -153241,359 +205085,203 @@ }, "states": [ { + "default": true, + "id": 16226, "properties": { "age": "0" - }, - "id": 15271, - "default": true + } }, { + "id": 16227, "properties": { "age": "1" - }, - "id": 15272 + } }, { + "id": 16228, "properties": { "age": "2" - }, - "id": 15273 + } }, { + "id": 16229, "properties": { "age": "3" - }, - "id": 15274 + } }, { + "id": 16230, "properties": { "age": "4" - }, - "id": 15275 + } }, { + "id": 16231, "properties": { "age": "5" - }, - "id": 15276 + } }, { + "id": 16232, "properties": { "age": "6" - }, - "id": 15277 + } }, { + "id": 16233, "properties": { "age": "7" - }, - "id": 15278 + } }, { + "id": 16234, "properties": { "age": "8" - }, - "id": 15279 + } }, { + "id": 16235, "properties": { "age": "9" - }, - "id": 15280 + } }, { + "id": 16236, "properties": { "age": "10" - }, - "id": 15281 + } }, { + "id": 16237, "properties": { "age": "11" - }, - "id": 15282 + } }, { + "id": 16238, "properties": { "age": "12" - }, - "id": 15283 + } }, { + "id": 16239, "properties": { "age": "13" - }, - "id": 15284 + } }, { + "id": 16240, "properties": { "age": "14" - }, - "id": 15285 + } }, { + "id": 16241, "properties": { "age": "15" - }, - "id": 15286 + } }, { + "id": 16242, "properties": { "age": "16" - }, - "id": 15287 + } }, { + "id": 16243, "properties": { "age": "17" - }, - "id": 15288 + } }, { + "id": 16244, "properties": { "age": "18" - }, - "id": 15289 + } }, { + "id": 16245, "properties": { "age": "19" - }, - "id": 15290 + } }, { + "id": 16246, "properties": { "age": "20" - }, - "id": 15291 + } }, { + "id": 16247, "properties": { "age": "21" - }, - "id": 15292 + } }, { + "id": 16248, "properties": { "age": "22" - }, - "id": 15293 + } }, { + "id": 16249, "properties": { "age": "23" - }, - "id": 15294 + } }, { + "id": 16250, "properties": { "age": "24" - }, - "id": 15295 + } }, { + "id": 16251, "properties": { "age": "25" - }, - "id": 15296 + } } ] }, "minecraft:twisting_vines_plant": { "states": [ { - "id": 15297, - "default": true + "default": true, + "id": 16252 } ] }, - "minecraft:crimson_roots": { - "states": [ - { - "id": 15298, - "default": true - } - ] - }, - "minecraft:crimson_planks": { - "states": [ - { - "id": 15299, - "default": true - } - ] - }, - "minecraft:warped_planks": { - "states": [ - { - "id": 15300, - "default": true - } - ] - }, - "minecraft:crimson_slab": { + "minecraft:verdant_froglight": { "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" + "axis": [ + "x", + "y", + "z" ] }, "states": [ { + "id": 21440, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 15301 + "axis": "x" + } }, { + "default": true, + "id": 21441, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 15302 + "axis": "y" + } }, { + "id": 21442, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 15303 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 15304, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 15305 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 15306 + "axis": "z" + } } ] }, - "minecraft:warped_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 15307 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 15308 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 15309 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 15310, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 15311 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 15312 - } - ] - }, - "minecraft:crimson_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 15313 - }, - { - "properties": { - "powered": "false" - }, - "id": 15314, - "default": true - } - ] - }, - "minecraft:warped_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 15315 - }, - { - "properties": { - "powered": "false" - }, - "id": 15316, - "default": true - } - ] - }, - "minecraft:crimson_fence": { + "minecraft:vine": { "properties": { "east": [ "true", @@ -153607,7 +205295,7 @@ "true", "false" ], - "waterlogged": [ + "up": [ "true", "false" ], @@ -153618,4346 +205306,370 @@ }, "states": [ { + "id": 5167, "properties": { "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 15317 + } }, { + "id": 5168, "properties": { "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 15318 + } }, { + "id": 5169, "properties": { "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 15319 + } }, { + "id": 5170, "properties": { "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 15320 + } }, { + "id": 5171, "properties": { "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 15321 + } }, { + "id": 5172, "properties": { "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 15322 + } }, { + "id": 5173, "properties": { "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 15323 + } }, { + "id": 5174, "properties": { "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 15324 + } }, { + "id": 5175, "properties": { "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 15325 + } }, { + "id": 5176, "properties": { "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 15326 + } }, { + "id": 5177, "properties": { "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 15327 + } }, { + "id": 5178, "properties": { "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 15328 + } }, { + "id": 5179, "properties": { "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 15329 + } }, { + "id": 5180, "properties": { "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 15330 + } }, { + "id": 5181, "properties": { "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 15331 + } }, { + "id": 5182, "properties": { "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 15332 + } }, { + "id": 5183, "properties": { "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 15333 + } }, { + "id": 5184, "properties": { "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 15334 + } }, { + "id": 5185, "properties": { "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 15335 + } }, { + "id": 5186, "properties": { "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 15336 + } }, { + "id": 5187, "properties": { "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 15337 + } }, { + "id": 5188, "properties": { "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 15338 + } }, { + "id": 5189, "properties": { "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 15339 + } }, { + "id": 5190, "properties": { "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 15340 + } }, { + "id": 5191, "properties": { "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 15341 + } }, { + "id": 5192, "properties": { "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 15342 + } }, { + "id": 5193, "properties": { "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 15343 + } }, { + "id": 5194, "properties": { "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 15344 + } }, { + "id": 5195, "properties": { "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 15345 + } }, { + "id": 5196, "properties": { "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 15346 + } }, { + "id": 5197, "properties": { "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 15347 + } }, { + "default": true, + "id": 5198, "properties": { "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 15348, - "default": true + } } ] }, - "minecraft:warped_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, + "minecraft:void_air": { "states": [ { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 15349 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 15350 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 15351 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 15352 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 15353 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 15354 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 15355 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 15356 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 15357 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 15358 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 15359 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 15360 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 15361 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 15362 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 15363 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 15364 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 15365 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 15366 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 15367 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 15368 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 15369 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 15370 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 15371 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 15372 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 15373 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 15374 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 15375 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 15376 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 15377 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 15378 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 15379 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 15380, - "default": true + "default": true, + "id": 10546 } ] }, - "minecraft:crimson_trapdoor": { + "minecraft:wall_torch": { "properties": { "facing": [ "north", "south", "west", "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" ] }, "states": [ { + "default": true, + "id": 1690, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15381 + "facing": "north" + } }, { + "id": 1691, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15382 + "facing": "south" + } }, { + "id": 1692, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15383 + "facing": "west" + } }, { + "id": 1693, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15384 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15385 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15386 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15387 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15388 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15389 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15390 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15391 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15392 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15393 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15394 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15395 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15396, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15397 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15398 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15399 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15400 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15401 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15402 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15403 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15404 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15405 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15406 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15407 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15408 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15409 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15410 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15411 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15412 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15413 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15414 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15415 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15416 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15417 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15418 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15419 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15420 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15421 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15422 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15423 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15424 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15425 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15426 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15427 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15428 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15429 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15430 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15431 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15432 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15433 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15434 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15435 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15436 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15437 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15438 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15439 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15440 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15441 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15442 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15443 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15444 - } - ] - }, - "minecraft:warped_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15445 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15446 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15447 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15448 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15449 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15450 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15451 - }, - { - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15452 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15453 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15454 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15455 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15456 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15457 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15458 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15459 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15460, - "default": true - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15461 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15462 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15463 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15464 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15465 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15466 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15467 - }, - { - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15468 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15469 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15470 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15471 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15472 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15473 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15474 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15475 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15476 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15477 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15478 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15479 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15480 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15481 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15482 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15483 - }, - { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15484 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15485 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15486 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15487 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15488 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15489 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15490 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15491 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15492 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15493 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15494 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15495 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15496 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15497 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15498 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15499 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15500 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15501 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15502 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15503 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15504 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15505 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15506 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15507 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15508 - } - ] - }, - "minecraft:crimson_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15509 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15510 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15511 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15512 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15513 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15514 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15515 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15516, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15517 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15518 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15519 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15520 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15521 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15522 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15523 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15524 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15525 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15526 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15527 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15528 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15529 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15530 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15531 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15532 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15533 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15534 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15535 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15536 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15537 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15538 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15539 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15540 - } - ] - }, - "minecraft:warped_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15541 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15542 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15543 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15544 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15545 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15546 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15547 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15548, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15549 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15550 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15551 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15552 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15553 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15554 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15555 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15556 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15557 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15558 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15559 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15560 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15561 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15562 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15563 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15564 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15565 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15566 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15567 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15568 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15569 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15570 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15571 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15572 - } - ] - }, - "minecraft:crimson_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15573 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15574 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15575 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15576 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15577 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15578 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15579 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15580 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15581 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15582 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15583 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15584, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15585 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15586 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15587 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15588 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15589 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15590 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15591 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15592 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15593 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15594 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15595 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15596 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15597 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15598 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15599 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15600 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15601 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15602 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15603 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15604 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15605 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15606 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15607 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15608 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15609 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15610 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15611 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15612 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15613 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15614 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15615 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15616 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15617 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15618 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15619 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15620 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15621 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15622 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15623 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15624 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15625 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15626 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15627 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15628 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15629 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15630 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15631 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15632 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15633 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15634 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15635 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15636 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15637 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15638 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15639 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15640 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15641 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15642 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15643 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15644 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15645 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15646 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15647 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15648 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15649 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15650 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15651 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15652 - } - ] - }, - "minecraft:warped_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15653 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15654 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15655 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15656 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15657 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15658 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15659 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15660 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15661 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15662 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15663 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15664, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15665 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15666 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15667 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15668 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15669 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15670 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15671 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15672 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15673 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15674 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15675 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15676 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15677 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15678 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15679 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15680 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15681 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15682 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15683 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15684 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15685 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15686 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15687 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15688 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15689 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15690 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15691 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15692 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15693 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15694 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15695 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15696 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15697 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15698 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15699 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15700 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15701 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15702 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15703 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15704 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15705 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15706 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15707 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15708 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15709 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15710 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15711 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15712 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15713 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15714 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15715 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15716 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15717 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15718 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15719 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15720 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15721 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15722 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15723 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15724 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15725 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15726 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15727 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15728 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15729 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15730 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15731 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15732 - } - ] - }, - "minecraft:crimson_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 15733 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 15734 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 15735 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 15736 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 15737 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 15738 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 15739 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 15740 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 15741 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 15742, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 15743 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 15744 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 15745 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 15746 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 15747 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 15748 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 15749 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 15750 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 15751 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 15752 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 15753 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 15754 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 15755 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 15756 + "facing": "east" + } } ] }, @@ -157981,866 +205693,197 @@ }, "states": [ { + "id": 16712, "properties": { "face": "floor", "facing": "north", "powered": "true" - }, - "id": 15757 + } }, { + "id": 16713, "properties": { "face": "floor", "facing": "north", "powered": "false" - }, - "id": 15758 + } }, { + "id": 16714, "properties": { "face": "floor", "facing": "south", "powered": "true" - }, - "id": 15759 + } }, { + "id": 16715, "properties": { "face": "floor", "facing": "south", "powered": "false" - }, - "id": 15760 + } }, { + "id": 16716, "properties": { "face": "floor", "facing": "west", "powered": "true" - }, - "id": 15761 + } }, { + "id": 16717, "properties": { "face": "floor", "facing": "west", "powered": "false" - }, - "id": 15762 + } }, { + "id": 16718, "properties": { "face": "floor", "facing": "east", "powered": "true" - }, - "id": 15763 + } }, { + "id": 16719, "properties": { "face": "floor", "facing": "east", "powered": "false" - }, - "id": 15764 + } }, { + "id": 16720, "properties": { "face": "wall", "facing": "north", "powered": "true" - }, - "id": 15765 + } }, { + "default": true, + "id": 16721, "properties": { "face": "wall", "facing": "north", "powered": "false" - }, - "id": 15766, - "default": true + } }, { + "id": 16722, "properties": { "face": "wall", "facing": "south", "powered": "true" - }, - "id": 15767 + } }, { + "id": 16723, "properties": { "face": "wall", "facing": "south", "powered": "false" - }, - "id": 15768 + } }, { + "id": 16724, "properties": { "face": "wall", "facing": "west", "powered": "true" - }, - "id": 15769 + } }, { + "id": 16725, "properties": { "face": "wall", "facing": "west", "powered": "false" - }, - "id": 15770 + } }, { + "id": 16726, "properties": { "face": "wall", "facing": "east", "powered": "true" - }, - "id": 15771 + } }, { + "id": 16727, "properties": { "face": "wall", "facing": "east", "powered": "false" - }, - "id": 15772 + } }, { + "id": 16728, "properties": { "face": "ceiling", "facing": "north", "powered": "true" - }, - "id": 15773 + } }, { + "id": 16729, "properties": { "face": "ceiling", "facing": "north", "powered": "false" - }, - "id": 15774 + } }, { + "id": 16730, "properties": { "face": "ceiling", "facing": "south", "powered": "true" - }, - "id": 15775 + } }, { + "id": 16731, "properties": { "face": "ceiling", "facing": "south", "powered": "false" - }, - "id": 15776 + } }, { + "id": 16732, "properties": { "face": "ceiling", "facing": "west", "powered": "true" - }, - "id": 15777 + } }, { + "id": 16733, "properties": { "face": "ceiling", "facing": "west", "powered": "false" - }, - "id": 15778 + } }, { + "id": 16734, "properties": { "face": "ceiling", "facing": "east", "powered": "true" - }, - "id": 15779 + } }, { + "id": 16735, "properties": { "face": "ceiling", "facing": "east", "powered": "false" - }, - "id": 15780 - } - ] - }, - "minecraft:crimson_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15781 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15782 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15783 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15784 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15785 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15786 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15787 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15788 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15789 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15790 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15791 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15792, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15793 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15794 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15795 - }, - { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15796 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15797 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15798 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15799 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15800 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15801 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15802 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15803 - }, - { - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15804 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15805 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15806 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15807 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15808 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15809 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15810 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15811 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15812 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15813 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15814 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15815 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15816 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15817 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15818 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15819 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15820 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15821 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15822 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15823 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15824 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15825 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15826 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15827 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15828 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15829 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15830 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15831 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15832 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15833 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15834 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15835 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15836 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15837 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15838 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15839 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15840 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15841 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15842 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15843 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15844 + } } ] }, @@ -158871,898 +205914,1390 @@ }, "states": [ { + "id": 16800, "properties": { "facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 15845 + } }, { + "id": 16801, "properties": { "facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 15846 + } }, { + "id": 16802, "properties": { "facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 15847 + } }, { + "id": 16803, "properties": { "facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 15848 + } }, { + "id": 16804, "properties": { "facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 15849 + } }, { + "id": 16805, "properties": { "facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 15850 + } }, { + "id": 16806, "properties": { "facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 15851 + } }, { + "id": 16807, "properties": { "facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 15852 + } }, { + "id": 16808, "properties": { "facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 15853 + } }, { + "id": 16809, "properties": { "facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 15854 + } }, { + "id": 16810, "properties": { "facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 15855 + } }, { + "default": true, + "id": 16811, "properties": { "facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 15856, - "default": true + } }, { + "id": 16812, "properties": { "facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 15857 + } }, { + "id": 16813, "properties": { "facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 15858 + } }, { + "id": 16814, "properties": { "facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 15859 + } }, { + "id": 16815, "properties": { "facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 15860 + } }, { + "id": 16816, "properties": { "facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 15861 + } }, { + "id": 16817, "properties": { "facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 15862 + } }, { + "id": 16818, "properties": { "facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 15863 + } }, { + "id": 16819, "properties": { "facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 15864 + } }, { + "id": 16820, "properties": { "facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 15865 + } }, { + "id": 16821, "properties": { "facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 15866 + } }, { + "id": 16822, "properties": { "facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 15867 + } }, { + "id": 16823, "properties": { "facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 15868 + } }, { + "id": 16824, "properties": { "facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 15869 + } }, { + "id": 16825, "properties": { "facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 15870 + } }, { + "id": 16826, "properties": { "facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 15871 + } }, { + "id": 16827, "properties": { "facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 15872 + } }, { + "id": 16828, "properties": { "facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 15873 + } }, { + "id": 16829, "properties": { "facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 15874 + } }, { + "id": 16830, "properties": { "facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 15875 + } }, { + "id": 16831, "properties": { "facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 15876 + } }, { + "id": 16832, "properties": { "facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 15877 + } }, { + "id": 16833, "properties": { "facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 15878 + } }, { + "id": 16834, "properties": { "facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 15879 + } }, { + "id": 16835, "properties": { "facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 15880 + } }, { + "id": 16836, "properties": { "facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 15881 + } }, { + "id": 16837, "properties": { "facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 15882 + } }, { + "id": 16838, "properties": { "facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 15883 + } }, { + "id": 16839, "properties": { "facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 15884 + } }, { + "id": 16840, "properties": { "facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 15885 + } }, { + "id": 16841, "properties": { "facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 15886 + } }, { + "id": 16842, "properties": { "facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 15887 + } }, { + "id": 16843, "properties": { "facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 15888 + } }, { + "id": 16844, "properties": { "facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 15889 + } }, { + "id": 16845, "properties": { "facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 15890 + } }, { + "id": 16846, "properties": { "facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 15891 + } }, { + "id": 16847, "properties": { "facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 15892 + } }, { + "id": 16848, "properties": { "facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 15893 + } }, { + "id": 16849, "properties": { "facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 15894 + } }, { + "id": 16850, "properties": { "facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 15895 + } }, { + "id": 16851, "properties": { "facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 15896 + } }, { + "id": 16852, "properties": { "facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 15897 + } }, { + "id": 16853, "properties": { "facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 15898 + } }, { + "id": 16854, "properties": { "facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 15899 + } }, { + "id": 16855, "properties": { "facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 15900 + } }, { + "id": 16856, "properties": { "facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 15901 + } }, { + "id": 16857, "properties": { "facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 15902 + } }, { + "id": 16858, "properties": { "facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 15903 + } }, { + "id": 16859, "properties": { "facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 15904 + } }, { + "id": 16860, "properties": { "facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 15905 + } }, { + "id": 16861, "properties": { "facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 15906 + } }, { + "id": 16862, "properties": { "facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 15907 + } }, { + "id": 16863, "properties": { "facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 15908 + } } ] }, - "minecraft:crimson_sign": { + "minecraft:warped_fence": { "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "true", + "false" ] }, "states": [ { + "id": 16304, "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 15909 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16305, "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 15910, - "default": true + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16306, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 15911 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16307, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 15912 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 16308, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 15913 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16309, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 15914 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16310, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 15915 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16311, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 15916 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 16312, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 15917 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16313, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 15918 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16314, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 15919 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16315, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 15920 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 16316, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 15921 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16317, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 15922 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16318, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 15923 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16319, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 15924 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 16320, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 15925 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16321, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 15926 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16322, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 15927 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16323, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 15928 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 16324, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 15929 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16325, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 15930 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16326, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 15931 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16327, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 15932 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 16328, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 15933 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16329, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 15934 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16330, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 15935 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16331, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 15936 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 16332, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 15937 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16333, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 15938 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16334, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 15939 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 16335, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 15940 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:warped_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16496, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 16497, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 16498, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 16499, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 16500, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 16501, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 16502, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 16503, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 16504, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 16505, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 16506, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 16507, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 16508, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 16509, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 16510, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 16511, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 16512, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 16513, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 16514, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 16515, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 16516, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 16517, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 16518, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 16519, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 16520, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 16521, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 16522, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 16523, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 16524, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 16525, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 16526, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 16527, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:warped_fungus": { + "states": [ + { + "default": true, + "id": 16180 + } + ] + }, + "minecraft:warped_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 16173, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 16174, + "properties": { + "axis": "y" + } + }, + { + "id": 16175, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:warped_nylium": { + "states": [ + { + "default": true, + "id": 16179 + } + ] + }, + "minecraft:warped_planks": { + "states": [ + { + "default": true, + "id": 16255 + } + ] + }, + "minecraft:warped_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16270, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 16271, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:warped_roots": { + "states": [ + { + "default": true, + "id": 16182 } ] }, @@ -159793,239 +207328,238 @@ }, "states": [ { + "id": 16896, "properties": { "rotation": "0", "waterlogged": "true" - }, - "id": 15941 + } }, { + "default": true, + "id": 16897, "properties": { "rotation": "0", "waterlogged": "false" - }, - "id": 15942, - "default": true + } }, { + "id": 16898, "properties": { "rotation": "1", "waterlogged": "true" - }, - "id": 15943 + } }, { + "id": 16899, "properties": { "rotation": "1", "waterlogged": "false" - }, - "id": 15944 + } }, { + "id": 16900, "properties": { "rotation": "2", "waterlogged": "true" - }, - "id": 15945 + } }, { + "id": 16901, "properties": { "rotation": "2", "waterlogged": "false" - }, - "id": 15946 + } }, { + "id": 16902, "properties": { "rotation": "3", "waterlogged": "true" - }, - "id": 15947 + } }, { + "id": 16903, "properties": { "rotation": "3", "waterlogged": "false" - }, - "id": 15948 + } }, { + "id": 16904, "properties": { "rotation": "4", "waterlogged": "true" - }, - "id": 15949 + } }, { + "id": 16905, "properties": { "rotation": "4", "waterlogged": "false" - }, - "id": 15950 + } }, { + "id": 16906, "properties": { "rotation": "5", "waterlogged": "true" - }, - "id": 15951 + } }, { + "id": 16907, "properties": { "rotation": "5", "waterlogged": "false" - }, - "id": 15952 + } }, { + "id": 16908, "properties": { "rotation": "6", "waterlogged": "true" - }, - "id": 15953 + } }, { + "id": 16909, "properties": { "rotation": "6", "waterlogged": "false" - }, - "id": 15954 + } }, { + "id": 16910, "properties": { "rotation": "7", "waterlogged": "true" - }, - "id": 15955 + } }, { + "id": 16911, "properties": { "rotation": "7", "waterlogged": "false" - }, - "id": 15956 + } }, { + "id": 16912, "properties": { "rotation": "8", "waterlogged": "true" - }, - "id": 15957 + } }, { + "id": 16913, "properties": { "rotation": "8", "waterlogged": "false" - }, - "id": 15958 + } }, { + "id": 16914, "properties": { "rotation": "9", "waterlogged": "true" - }, - "id": 15959 + } }, { + "id": 16915, "properties": { "rotation": "9", "waterlogged": "false" - }, - "id": 15960 + } }, { + "id": 16916, "properties": { "rotation": "10", "waterlogged": "true" - }, - "id": 15961 + } }, { + "id": 16917, "properties": { "rotation": "10", "waterlogged": "false" - }, - "id": 15962 + } }, { + "id": 16918, "properties": { "rotation": "11", "waterlogged": "true" - }, - "id": 15963 + } }, { + "id": 16919, "properties": { "rotation": "11", "waterlogged": "false" - }, - "id": 15964 + } }, { + "id": 16920, "properties": { "rotation": "12", "waterlogged": "true" - }, - "id": 15965 + } }, { + "id": 16921, "properties": { "rotation": "12", "waterlogged": "false" - }, - "id": 15966 + } }, { + "id": 16922, "properties": { "rotation": "13", "waterlogged": "true" - }, - "id": 15967 + } }, { + "id": 16923, "properties": { "rotation": "13", "waterlogged": "false" - }, - "id": 15968 + } }, { + "id": 16924, "properties": { "rotation": "14", "waterlogged": "true" - }, - "id": 15969 + } }, { + "id": 16925, "properties": { "rotation": "14", "waterlogged": "false" - }, - "id": 15970 + } }, { + "id": 16926, "properties": { "rotation": "15", "waterlogged": "true" - }, - "id": 15971 + } }, { + "id": 16927, "properties": { "rotation": "15", "waterlogged": "false" - }, - "id": 15972 + } } ] }, - "minecraft:crimson_wall_sign": { + "minecraft:warped_slab": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "type": [ + "top", + "bottom", + "double" ], "waterlogged": [ "true", @@ -160034,61 +207568,1494 @@ }, "states": [ { + "id": 16262, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16263, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16264, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16265, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16266, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16267, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16608, "properties": { "facing": "north", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 15973 + } }, { + "id": 16609, "properties": { "facing": "north", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 15974, - "default": true + } }, { + "id": 16610, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16611, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16612, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16613, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16614, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16615, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16616, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16617, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16618, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16619, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16620, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16621, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16622, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16623, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16624, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16625, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16626, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16627, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16628, "properties": { "facing": "south", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 15975 + } }, { + "id": 16629, "properties": { "facing": "south", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 15976 + } }, { + "id": 16630, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16631, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16632, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16633, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16634, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16635, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16636, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16637, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16638, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16639, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16640, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16641, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16642, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16643, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16644, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16645, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16646, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16647, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16648, "properties": { "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 15977 + } }, { + "id": 16649, "properties": { "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 15978 + } }, { + "id": 16650, "properties": { - "facing": "east", + "facing": "west", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 15979 + } }, { + "id": 16651, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16652, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16653, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16654, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16655, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16656, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16657, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16658, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16659, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16660, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16661, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16662, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16663, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16664, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16665, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16666, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16667, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16668, "properties": { "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16669, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 15980 + } + }, + { + "id": 16670, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16671, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16672, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16673, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16674, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16675, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16676, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16677, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16678, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16679, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16680, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16681, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16682, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16683, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16684, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16685, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16686, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16687, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_stem": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 16167, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 16168, + "properties": { + "axis": "y" + } + }, + { + "id": 16169, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:warped_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16400, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16401, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16402, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16403, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16404, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16405, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16406, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16407, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16408, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16409, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16410, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16411, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16412, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16413, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16414, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16415, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16416, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16417, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16418, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16419, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16420, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16421, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16422, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16423, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16424, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16425, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16426, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16427, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16428, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16429, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16430, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16431, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16432, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16433, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16434, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16435, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16436, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16437, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16438, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16439, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16440, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16441, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16442, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16443, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16444, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16445, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16446, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16447, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16448, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16449, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16450, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16451, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16452, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16453, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16454, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16455, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16456, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16457, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16458, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16459, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16460, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16461, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16462, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16463, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } } ] }, @@ -160107,195 +209074,73 @@ }, "states": [ { + "id": 16936, "properties": { "facing": "north", "waterlogged": "true" - }, - "id": 15981 + } }, { + "default": true, + "id": 16937, "properties": { "facing": "north", "waterlogged": "false" - }, - "id": 15982, - "default": true + } }, { + "id": 16938, "properties": { "facing": "south", "waterlogged": "true" - }, - "id": 15983 + } }, { + "id": 16939, "properties": { "facing": "south", "waterlogged": "false" - }, - "id": 15984 + } }, { + "id": 16940, "properties": { "facing": "west", "waterlogged": "true" - }, - "id": 15985 + } }, { + "id": 16941, "properties": { "facing": "west", "waterlogged": "false" - }, - "id": 15986 + } }, { + "id": 16942, "properties": { "facing": "east", "waterlogged": "true" - }, - "id": 15987 + } }, { + "id": 16943, "properties": { "facing": "east", "waterlogged": "false" - }, - "id": 15988 + } } ] }, - "minecraft:structure_block": { - "properties": { - "mode": [ - "save", - "load", - "corner", - "data" - ] - }, + "minecraft:warped_wart_block": { "states": [ { - "properties": { - "mode": "save" - }, - "id": 15989 - }, - { - "properties": { - "mode": "load" - }, - "id": 15990, - "default": true - }, - { - "properties": { - "mode": "corner" - }, - "id": 15991 - }, - { - "properties": { - "mode": "data" - }, - "id": 15992 + "default": true, + "id": 16181 } ] }, - "minecraft:jigsaw": { - "properties": { - "orientation": [ - "down_east", - "down_north", - "down_south", - "down_west", - "up_east", - "up_north", - "up_south", - "up_west", - "west_up", - "east_up", - "north_up", - "south_up" - ] - }, - "states": [ - { - "properties": { - "orientation": "down_east" - }, - "id": 15993 - }, - { - "properties": { - "orientation": "down_north" - }, - "id": 15994 - }, - { - "properties": { - "orientation": "down_south" - }, - "id": 15995 - }, - { - "properties": { - "orientation": "down_west" - }, - "id": 15996 - }, - { - "properties": { - "orientation": "up_east" - }, - "id": 15997 - }, - { - "properties": { - "orientation": "up_north" - }, - "id": 15998 - }, - { - "properties": { - "orientation": "up_south" - }, - "id": 15999 - }, - { - "properties": { - "orientation": "up_west" - }, - "id": 16000 - }, - { - "properties": { - "orientation": "west_up" - }, - "id": 16001 - }, - { - "properties": { - "orientation": "east_up" - }, - "id": 16002 - }, - { - "properties": { - "orientation": "north_up" - }, - "id": 16003, - "default": true - }, - { - "properties": { - "orientation": "south_up" - }, - "id": 16004 - } - ] - }, - "minecraft:composter": { + "minecraft:water": { "properties": { "level": [ "0", @@ -160306,21786 +209151,168 @@ "5", "6", "7", - "8" + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] }, "states": [ { + "default": true, + "id": 75, "properties": { "level": "0" - }, - "id": 16005, - "default": true + } }, { + "id": 76, "properties": { "level": "1" - }, - "id": 16006 + } }, { + "id": 77, "properties": { "level": "2" - }, - "id": 16007 + } }, { + "id": 78, "properties": { "level": "3" - }, - "id": 16008 + } }, { + "id": 79, "properties": { "level": "4" - }, - "id": 16009 + } }, { + "id": 80, "properties": { "level": "5" - }, - "id": 16010 + } }, { + "id": 81, "properties": { "level": "6" - }, - "id": 16011 + } }, { + "id": 82, "properties": { "level": "7" - }, - "id": 16012 + } }, { + "id": 83, "properties": { "level": "8" - }, - "id": 16013 + } + }, + { + "id": 84, + "properties": { + "level": "9" + } + }, + { + "id": 85, + "properties": { + "level": "10" + } + }, + { + "id": 86, + "properties": { + "level": "11" + } + }, + { + "id": 87, + "properties": { + "level": "12" + } + }, + { + "id": 88, + "properties": { + "level": "13" + } + }, + { + "id": 89, + "properties": { + "level": "14" + } + }, + { + "id": 90, + "properties": { + "level": "15" + } } ] }, - "minecraft:target": { + "minecraft:water_cauldron": { "properties": { - "power": [ - "0", + "level": [ "1", "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "3" ] }, "states": [ { + "default": true, + "id": 5729, "properties": { - "power": "0" - }, - "id": 16014, - "default": true + "level": "1" + } }, { + "id": 5730, "properties": { - "power": "1" - }, - "id": 16015 + "level": "2" + } }, { + "id": 5731, "properties": { - "power": "2" - }, - "id": 16016 - }, - { - "properties": { - "power": "3" - }, - "id": 16017 - }, - { - "properties": { - "power": "4" - }, - "id": 16018 - }, - { - "properties": { - "power": "5" - }, - "id": 16019 - }, - { - "properties": { - "power": "6" - }, - "id": 16020 - }, - { - "properties": { - "power": "7" - }, - "id": 16021 - }, - { - "properties": { - "power": "8" - }, - "id": 16022 - }, - { - "properties": { - "power": "9" - }, - "id": 16023 - }, - { - "properties": { - "power": "10" - }, - "id": 16024 - }, - { - "properties": { - "power": "11" - }, - "id": 16025 - }, - { - "properties": { - "power": "12" - }, - "id": 16026 - }, - { - "properties": { - "power": "13" - }, - "id": 16027 - }, - { - "properties": { - "power": "14" - }, - "id": 16028 - }, - { - "properties": { - "power": "15" - }, - "id": 16029 - } - ] - }, - "minecraft:bee_nest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "honey_level": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "honey_level": "0" - }, - "id": 16030, - "default": true - }, - { - "properties": { - "facing": "north", - "honey_level": "1" - }, - "id": 16031 - }, - { - "properties": { - "facing": "north", - "honey_level": "2" - }, - "id": 16032 - }, - { - "properties": { - "facing": "north", - "honey_level": "3" - }, - "id": 16033 - }, - { - "properties": { - "facing": "north", - "honey_level": "4" - }, - "id": 16034 - }, - { - "properties": { - "facing": "north", - "honey_level": "5" - }, - "id": 16035 - }, - { - "properties": { - "facing": "south", - "honey_level": "0" - }, - "id": 16036 - }, - { - "properties": { - "facing": "south", - "honey_level": "1" - }, - "id": 16037 - }, - { - "properties": { - "facing": "south", - "honey_level": "2" - }, - "id": 16038 - }, - { - "properties": { - "facing": "south", - "honey_level": "3" - }, - "id": 16039 - }, - { - "properties": { - "facing": "south", - "honey_level": "4" - }, - "id": 16040 - }, - { - "properties": { - "facing": "south", - "honey_level": "5" - }, - "id": 16041 - }, - { - "properties": { - "facing": "west", - "honey_level": "0" - }, - "id": 16042 - }, - { - "properties": { - "facing": "west", - "honey_level": "1" - }, - "id": 16043 - }, - { - "properties": { - "facing": "west", - "honey_level": "2" - }, - "id": 16044 - }, - { - "properties": { - "facing": "west", - "honey_level": "3" - }, - "id": 16045 - }, - { - "properties": { - "facing": "west", - "honey_level": "4" - }, - "id": 16046 - }, - { - "properties": { - "facing": "west", - "honey_level": "5" - }, - "id": 16047 - }, - { - "properties": { - "facing": "east", - "honey_level": "0" - }, - "id": 16048 - }, - { - "properties": { - "facing": "east", - "honey_level": "1" - }, - "id": 16049 - }, - { - "properties": { - "facing": "east", - "honey_level": "2" - }, - "id": 16050 - }, - { - "properties": { - "facing": "east", - "honey_level": "3" - }, - "id": 16051 - }, - { - "properties": { - "facing": "east", - "honey_level": "4" - }, - "id": 16052 - }, - { - "properties": { - "facing": "east", - "honey_level": "5" - }, - "id": 16053 - } - ] - }, - "minecraft:beehive": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "honey_level": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "honey_level": "0" - }, - "id": 16054, - "default": true - }, - { - "properties": { - "facing": "north", - "honey_level": "1" - }, - "id": 16055 - }, - { - "properties": { - "facing": "north", - "honey_level": "2" - }, - "id": 16056 - }, - { - "properties": { - "facing": "north", - "honey_level": "3" - }, - "id": 16057 - }, - { - "properties": { - "facing": "north", - "honey_level": "4" - }, - "id": 16058 - }, - { - "properties": { - "facing": "north", - "honey_level": "5" - }, - "id": 16059 - }, - { - "properties": { - "facing": "south", - "honey_level": "0" - }, - "id": 16060 - }, - { - "properties": { - "facing": "south", - "honey_level": "1" - }, - "id": 16061 - }, - { - "properties": { - "facing": "south", - "honey_level": "2" - }, - "id": 16062 - }, - { - "properties": { - "facing": "south", - "honey_level": "3" - }, - "id": 16063 - }, - { - "properties": { - "facing": "south", - "honey_level": "4" - }, - "id": 16064 - }, - { - "properties": { - "facing": "south", - "honey_level": "5" - }, - "id": 16065 - }, - { - "properties": { - "facing": "west", - "honey_level": "0" - }, - "id": 16066 - }, - { - "properties": { - "facing": "west", - "honey_level": "1" - }, - "id": 16067 - }, - { - "properties": { - "facing": "west", - "honey_level": "2" - }, - "id": 16068 - }, - { - "properties": { - "facing": "west", - "honey_level": "3" - }, - "id": 16069 - }, - { - "properties": { - "facing": "west", - "honey_level": "4" - }, - "id": 16070 - }, - { - "properties": { - "facing": "west", - "honey_level": "5" - }, - "id": 16071 - }, - { - "properties": { - "facing": "east", - "honey_level": "0" - }, - "id": 16072 - }, - { - "properties": { - "facing": "east", - "honey_level": "1" - }, - "id": 16073 - }, - { - "properties": { - "facing": "east", - "honey_level": "2" - }, - "id": 16074 - }, - { - "properties": { - "facing": "east", - "honey_level": "3" - }, - "id": 16075 - }, - { - "properties": { - "facing": "east", - "honey_level": "4" - }, - "id": 16076 - }, - { - "properties": { - "facing": "east", - "honey_level": "5" - }, - "id": 16077 - } - ] - }, - "minecraft:honey_block": { - "states": [ - { - "id": 16078, - "default": true - } - ] - }, - "minecraft:honeycomb_block": { - "states": [ - { - "id": 16079, - "default": true - } - ] - }, - "minecraft:netherite_block": { - "states": [ - { - "id": 16080, - "default": true - } - ] - }, - "minecraft:ancient_debris": { - "states": [ - { - "id": 16081, - "default": true - } - ] - }, - "minecraft:crying_obsidian": { - "states": [ - { - "id": 16082, - "default": true - } - ] - }, - "minecraft:respawn_anchor": { - "properties": { - "charges": [ - "0", - "1", - "2", - "3", - "4" - ] - }, - "states": [ - { - "properties": { - "charges": "0" - }, - "id": 16083, - "default": true - }, - { - "properties": { - "charges": "1" - }, - "id": 16084 - }, - { - "properties": { - "charges": "2" - }, - "id": 16085 - }, - { - "properties": { - "charges": "3" - }, - "id": 16086 - }, - { - "properties": { - "charges": "4" - }, - "id": 16087 - } - ] - }, - "minecraft:potted_crimson_fungus": { - "states": [ - { - "id": 16088, - "default": true - } - ] - }, - "minecraft:potted_warped_fungus": { - "states": [ - { - "id": 16089, - "default": true - } - ] - }, - "minecraft:potted_crimson_roots": { - "states": [ - { - "id": 16090, - "default": true - } - ] - }, - "minecraft:potted_warped_roots": { - "states": [ - { - "id": 16091, - "default": true - } - ] - }, - "minecraft:lodestone": { - "states": [ - { - "id": 16092, - "default": true - } - ] - }, - "minecraft:blackstone": { - "states": [ - { - "id": 16093, - "default": true - } - ] - }, - "minecraft:blackstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16094 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16095 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16096 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16097 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16098 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16099 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16100 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16101 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16102 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16103 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16104 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16105, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16106 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16107 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16108 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16109 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16110 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16111 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16112 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16113 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16114 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16115 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16116 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16117 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16118 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16119 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16120 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16121 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16122 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16123 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16124 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16125 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16126 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16127 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16128 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16129 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16130 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16131 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16132 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16133 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16134 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16135 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16136 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16137 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16138 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16139 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16140 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16141 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16142 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16143 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16144 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16145 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16146 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16147 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16148 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16149 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16150 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16151 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16152 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16153 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16154 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16155 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16156 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16157 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16158 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16159 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16160 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16161 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16162 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16163 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16164 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16165 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16166 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16167 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16168 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16169 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16170 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16171 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16172 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16173 - } - ] - }, - "minecraft:blackstone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16174 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16175 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16176 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16177, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16178 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16179 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16180 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16181 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16182 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16183 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16184 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16185 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16186 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16187 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16188 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16189 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16190 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16191 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16192 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16193 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16194 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16195 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16196 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16197 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16198 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16199 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16200 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16201 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16202 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16203 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16204 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16205 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16206 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16207 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16208 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16209 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16210 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16211 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16212 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16213 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16214 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16215 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16216 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16217 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16218 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16219 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16220 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16221 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16222 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16223 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16224 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16225 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16226 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16227 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16228 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16229 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16230 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16231 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16232 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16233 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16234 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16235 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16236 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16237 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16238 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16239 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16240 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16241 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16242 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16243 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16244 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16245 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16246 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16247 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16248 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16249 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16250 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16251 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16252 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16253 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16254 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16255 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16256 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16257 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16258 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16259 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16260 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16261 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16262 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16263 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16264 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16265 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16266 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16267 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16268 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16269 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16270 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16271 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16272 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16273 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16274 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16275 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16276 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16277 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16278 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16279 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16280 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16281 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16282 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16283 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16284 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16285 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16286 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16287 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16288 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16289 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16290 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16291 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16292 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16293 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16294 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16295 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16296 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16297 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16298 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16299 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16300 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16301 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16302 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16303 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16304 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16305 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16306 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16307 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16308 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16309 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16310 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16311 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16312 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16313 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16314 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16315 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16316 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16317 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16318 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16319 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16320 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16321 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16322 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16323 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16324 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16325 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16326 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16327 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16328 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16329 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16330 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16331 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16332 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16333 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16334 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16335 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16336 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16337 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16338 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16339 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16340 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16341 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16342 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16343 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16344 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16345 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16346 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16347 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16348 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16349 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16350 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16351 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16352 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16353 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16354 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16355 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16356 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16357 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16358 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16359 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16360 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16361 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16362 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16363 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16364 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16365 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16366 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16367 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16368 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16369 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16370 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16371 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16372 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16373 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16374 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16375 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16376 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16377 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16378 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16379 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16380 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16381 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16382 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16383 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16384 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16385 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16386 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16387 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16388 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16389 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16390 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16391 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16392 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16393 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16394 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16395 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16396 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16397 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16398 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16399 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16400 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16401 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16402 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16403 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16404 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16405 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16406 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16407 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16408 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16409 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16410 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16411 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16412 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16413 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16414 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16415 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16416 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16417 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16418 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16419 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16420 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16421 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16422 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16423 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16424 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16425 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16426 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16427 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16428 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16429 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16430 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16431 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16432 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16433 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16434 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16435 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16436 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16437 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16438 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16439 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16440 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16441 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16442 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16443 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16444 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16445 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16446 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16447 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16448 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16449 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16450 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16451 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16452 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16453 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16454 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16455 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16456 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16457 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16458 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16459 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16460 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16461 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16462 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16463 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16464 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16465 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16466 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16467 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16468 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16469 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16470 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16471 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16472 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16473 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16474 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16475 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16476 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16477 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16478 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16479 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16480 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16481 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16482 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16483 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16484 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16485 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16486 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16487 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16488 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16489 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16490 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16491 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16492 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16493 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16494 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16495 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16496 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16497 - } - ] - }, - "minecraft:blackstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 16498 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 16499 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 16500 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 16501, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 16502 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 16503 - } - ] - }, - "minecraft:polished_blackstone": { - "states": [ - { - "id": 16504, - "default": true - } - ] - }, - "minecraft:polished_blackstone_bricks": { - "states": [ - { - "id": 16505, - "default": true - } - ] - }, - "minecraft:cracked_polished_blackstone_bricks": { - "states": [ - { - "id": 16506, - "default": true - } - ] - }, - "minecraft:chiseled_polished_blackstone": { - "states": [ - { - "id": 16507, - "default": true - } - ] - }, - "minecraft:polished_blackstone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 16508 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 16509 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 16510 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 16511, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 16512 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 16513 - } - ] - }, - "minecraft:polished_blackstone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16514 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16515 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16516 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16517 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16518 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16519 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16520 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16521 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16522 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16523 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16524 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16525, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16526 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16527 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16528 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16529 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16530 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16531 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16532 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16533 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16534 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16535 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16536 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16537 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16538 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16539 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16540 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16541 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16542 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16543 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16544 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16545 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16546 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16547 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16548 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16549 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16550 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16551 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16552 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16553 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16554 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16555 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16556 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16557 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16558 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16559 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16560 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16561 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16562 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16563 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16564 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16565 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16566 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16567 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16568 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16569 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16570 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16571 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16572 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16573 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16574 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16575 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16576 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16577 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16578 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16579 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16580 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16581 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16582 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16583 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16584 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16585 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16586 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16587 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16588 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16589 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16590 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16591 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16592 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16593 - } - ] - }, - "minecraft:polished_blackstone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16594 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16595 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16596 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16597, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16598 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16599 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16600 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16601 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16602 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16603 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16604 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16605 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16606 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16607 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16608 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16609 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16610 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16611 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16612 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16613 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16614 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16615 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16616 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16617 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16618 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16619 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16620 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16621 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16622 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16623 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16624 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16625 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16626 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16627 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16628 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16629 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16630 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16631 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16632 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16633 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16634 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16635 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16636 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16637 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16638 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16639 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16640 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16641 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16642 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16643 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16644 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16645 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16646 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16647 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16648 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16649 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16650 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16651 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16652 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16653 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16654 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16655 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16656 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16657 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16658 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16659 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16660 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16661 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16662 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16663 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16664 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16665 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16666 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16667 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16668 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16669 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16670 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16671 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16672 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16673 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16674 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16675 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16676 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16677 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16678 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16679 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16680 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16681 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16682 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16683 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16684 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16685 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16686 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16687 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16688 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16689 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16690 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16691 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16692 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16693 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16694 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16695 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16696 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16697 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16698 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16699 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16700 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16701 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16702 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16703 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16704 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16705 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16706 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16707 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16708 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16709 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16710 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16711 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16712 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16713 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16714 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16715 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16716 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16717 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16718 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16719 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16720 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16721 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16722 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16723 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16724 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16725 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16726 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16727 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16728 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16729 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16730 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16731 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16732 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16733 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16734 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16735 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16736 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16737 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16738 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16739 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16740 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16741 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16742 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16743 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16744 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16745 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16746 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16747 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16748 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16749 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16750 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16751 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16752 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16753 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16754 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16755 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16756 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16757 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16758 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16759 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16760 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16761 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16762 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16763 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16764 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16765 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16766 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16767 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16768 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16769 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16770 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16771 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16772 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16773 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16774 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16775 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16776 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16777 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16778 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16779 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16780 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16781 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16782 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16783 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16784 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16785 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16786 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16787 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16788 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16789 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16790 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16791 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16792 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16793 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16794 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16795 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16796 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16797 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16798 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16799 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16800 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16801 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16802 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16803 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16804 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16805 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16806 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16807 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16808 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16809 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16810 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16811 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16812 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16813 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16814 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16815 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16816 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16817 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16818 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16819 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16820 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16821 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16822 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16823 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16824 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16825 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16826 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16827 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16828 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16829 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16830 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16831 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16832 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16833 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16834 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16835 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16836 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16837 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16838 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16839 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16840 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16841 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16842 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16843 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16844 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16845 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16846 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16847 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16848 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16849 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16850 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16851 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16852 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16853 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16854 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16855 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16856 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16857 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16858 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16859 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16860 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16861 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16862 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16863 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16864 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16865 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16866 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16867 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16868 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16869 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16870 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16871 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16872 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16873 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16874 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16875 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16876 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16877 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16878 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16879 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16880 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16881 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16882 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16883 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16884 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16885 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16886 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16887 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16888 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16889 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16890 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16891 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16892 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16893 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16894 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16895 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16896 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16897 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16898 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16899 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16900 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16901 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16902 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16903 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16904 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16905 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16906 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16907 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16908 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16909 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16910 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16911 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16912 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16913 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16914 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16915 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16916 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16917 - } - ] - }, - "minecraft:gilded_blackstone": { - "states": [ - { - "id": 16918, - "default": true - } - ] - }, - "minecraft:polished_blackstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16919 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16920 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16921 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16922 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16923 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16924 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16925 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16926 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16927 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16928 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16929 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16930, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16931 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16932 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16933 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16934 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16935 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16936 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16937 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16938 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16939 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16940 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16941 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16942 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16943 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16944 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16945 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16946 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16947 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16948 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16949 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16950 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16951 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16952 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16953 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16954 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16955 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16956 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16957 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16958 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16959 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16960 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16961 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16962 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16963 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16964 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16965 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16966 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16967 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16968 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16969 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16970 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16971 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16972 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16973 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16974 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16975 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16976 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16977 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16978 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16979 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16980 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16981 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16982 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16983 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16984 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16985 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16986 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16987 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16988 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16989 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16990 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16991 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16992 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16993 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16994 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16995 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16996 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16997 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16998 - } - ] - }, - "minecraft:polished_blackstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 16999 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 17000 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 17001 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 17002, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 17003 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 17004 - } - ] - }, - "minecraft:polished_blackstone_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 17005 - }, - { - "properties": { - "powered": "false" - }, - "id": 17006, - "default": true - } - ] - }, - "minecraft:polished_blackstone_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 17007 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 17008 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 17009 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 17010 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 17011 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 17012 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 17013 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 17014 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 17015 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 17016, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 17017 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 17018 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 17019 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 17020 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 17021 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 17022 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 17023 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 17024 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 17025 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 17026 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 17027 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 17028 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 17029 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 17030 - } - ] - }, - "minecraft:polished_blackstone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17031 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17032 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17033 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17034, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17035 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17036 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17037 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17038 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17039 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17040 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17041 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17042 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17043 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17044 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17045 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17046 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17047 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17048 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17049 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17050 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17051 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17052 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17053 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17054 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17055 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17056 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17057 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17058 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17059 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17060 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17061 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17062 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17063 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17064 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17065 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17066 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17067 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17068 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17069 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17070 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17071 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17072 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17073 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17074 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17075 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17076 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17077 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17078 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17079 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17080 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17081 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17082 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17083 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17084 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17085 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17086 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17087 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17088 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17089 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17090 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17091 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17092 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17093 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17094 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17095 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17096 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17097 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17098 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17099 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17100 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17101 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17102 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17103 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17104 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17105 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17106 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17107 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17108 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17109 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17110 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17111 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17112 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17113 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17114 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17115 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17116 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17117 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17118 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17119 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17120 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17121 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17122 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17123 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17124 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17125 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17126 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17127 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17128 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17129 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17130 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17131 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17132 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17133 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17134 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17135 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17136 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17137 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17138 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17139 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17140 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17141 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17142 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17143 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17144 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17145 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17146 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17147 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17148 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17149 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17150 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17151 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17152 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17153 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17154 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17155 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17156 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17157 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17158 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17159 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17160 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17161 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17162 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17163 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17164 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17165 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17166 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17167 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17168 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17169 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17170 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17171 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17172 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17173 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17174 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17175 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17176 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17177 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17178 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17179 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17180 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17181 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17182 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17183 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17184 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17185 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17186 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17187 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17188 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17189 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17190 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17191 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17192 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17193 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17194 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17195 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17196 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17197 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17198 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17199 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17200 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17201 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17202 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17203 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17204 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17205 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17206 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17207 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17208 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17209 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17210 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17211 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17212 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17213 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17214 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17215 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17216 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17217 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17218 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17219 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17220 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17221 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17222 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17223 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17224 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17225 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17226 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17227 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17228 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17229 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17230 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17231 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17232 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17233 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17234 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17235 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17236 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17237 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17238 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17239 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17240 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17241 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17242 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17243 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17244 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17245 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17246 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17247 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17248 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17249 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17250 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17251 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17252 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17253 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17254 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17255 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17256 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17257 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17258 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17259 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17260 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17261 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17262 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17263 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17264 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17265 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17266 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17267 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17268 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17269 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17270 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17271 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17272 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17273 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17274 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17275 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17276 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17277 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17278 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17279 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17280 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17281 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17282 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17283 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17284 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17285 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17286 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17287 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17288 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17289 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17290 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17291 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17292 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17293 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17294 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17295 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17296 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17297 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17298 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17299 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17300 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17301 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17302 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17303 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17304 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17305 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17306 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17307 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17308 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17309 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17310 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17311 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17312 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17313 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17314 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17315 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17316 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17317 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17318 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17319 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17320 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17321 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17322 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17323 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17324 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17325 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17326 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17327 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17328 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17329 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17330 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17331 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17332 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17333 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17334 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17335 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17336 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17337 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17338 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17339 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17340 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17341 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17342 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 17343 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 17344 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 17345 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 17346 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 17347 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 17348 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 17349 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 17350 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 17351 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 17352 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 17353 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 17354 - } - ] - }, - "minecraft:chiseled_nether_bricks": { - "states": [ - { - "id": 17355, - "default": true - } - ] - }, - "minecraft:cracked_nether_bricks": { - "states": [ - { - "id": 17356, - "default": true - } - ] - }, - "minecraft:quartz_bricks": { - "states": [ - { - "id": 17357, - "default": true - } - ] - }, - "minecraft:candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17358 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17359 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17360 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17361, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17362 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17363 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17364 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17365 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17366 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17367 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17368 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17369 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17370 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17371 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17372 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17373 - } - ] - }, - "minecraft:white_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17374 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17375 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17376 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17377, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17378 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17379 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17380 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17381 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17382 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17383 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17384 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17385 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17386 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17387 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17388 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17389 - } - ] - }, - "minecraft:orange_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17390 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17391 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17392 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17393, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17394 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17395 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17396 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17397 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17398 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17399 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17400 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17401 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17402 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17403 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17404 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17405 - } - ] - }, - "minecraft:magenta_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17406 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17407 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17408 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17409, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17410 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17411 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17412 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17413 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17414 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17415 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17416 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17417 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17418 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17419 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17420 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17421 - } - ] - }, - "minecraft:light_blue_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17422 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17423 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17424 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17425, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17426 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17427 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17428 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17429 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17430 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17431 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17432 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17433 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17434 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17435 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17436 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17437 - } - ] - }, - "minecraft:yellow_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17438 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17439 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17440 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17441, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17442 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17443 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17444 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17445 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17446 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17447 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17448 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17449 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17450 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17451 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17452 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17453 - } - ] - }, - "minecraft:lime_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17454 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17455 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17456 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17457, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17458 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17459 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17460 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17461 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17462 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17463 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17464 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17465 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17466 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17467 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17468 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17469 - } - ] - }, - "minecraft:pink_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17470 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17471 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17472 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17473, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17474 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17475 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17476 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17477 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17478 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17479 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17480 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17481 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17482 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17483 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17484 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17485 - } - ] - }, - "minecraft:gray_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17486 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17487 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17488 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17489, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17490 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17491 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17492 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17493 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17494 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17495 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17496 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17497 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17498 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17499 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17500 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17501 - } - ] - }, - "minecraft:light_gray_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17502 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17503 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17504 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17505, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17506 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17507 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17508 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17509 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17510 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17511 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17512 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17513 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17514 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17515 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17516 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17517 - } - ] - }, - "minecraft:cyan_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17518 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17519 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17520 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17521, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17522 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17523 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17524 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17525 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17526 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17527 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17528 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17529 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17530 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17531 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17532 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17533 - } - ] - }, - "minecraft:purple_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17534 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17535 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17536 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17537, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17538 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17539 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17540 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17541 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17542 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17543 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17544 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17545 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17546 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17547 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17548 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17549 - } - ] - }, - "minecraft:blue_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17550 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17551 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17552 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17553, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17554 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17555 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17556 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17557 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17558 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17559 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17560 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17561 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17562 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17563 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17564 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17565 - } - ] - }, - "minecraft:brown_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17566 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17567 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17568 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17569, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17570 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17571 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17572 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17573 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17574 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17575 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17576 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17577 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17578 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17579 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17580 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17581 - } - ] - }, - "minecraft:green_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17582 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17583 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17584 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17585, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17586 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17587 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17588 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17589 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17590 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17591 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17592 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17593 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17594 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17595 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17596 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17597 - } - ] - }, - "minecraft:red_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17598 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17599 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17600 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17601, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17602 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17603 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17604 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17605 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17606 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17607 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17608 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17609 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17610 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17611 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17612 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17613 - } - ] - }, - "minecraft:black_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17614 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17615 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17616 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17617, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17618 - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17619 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17620 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17621 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17622 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17623 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17624 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17625 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17626 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17627 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17628 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17629 - } - ] - }, - "minecraft:candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17630 - }, - { - "properties": { - "lit": "false" - }, - "id": 17631, - "default": true - } - ] - }, - "minecraft:white_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17632 - }, - { - "properties": { - "lit": "false" - }, - "id": 17633, - "default": true - } - ] - }, - "minecraft:orange_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17634 - }, - { - "properties": { - "lit": "false" - }, - "id": 17635, - "default": true - } - ] - }, - "minecraft:magenta_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17636 - }, - { - "properties": { - "lit": "false" - }, - "id": 17637, - "default": true - } - ] - }, - "minecraft:light_blue_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17638 - }, - { - "properties": { - "lit": "false" - }, - "id": 17639, - "default": true - } - ] - }, - "minecraft:yellow_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17640 - }, - { - "properties": { - "lit": "false" - }, - "id": 17641, - "default": true - } - ] - }, - "minecraft:lime_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17642 - }, - { - "properties": { - "lit": "false" - }, - "id": 17643, - "default": true - } - ] - }, - "minecraft:pink_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17644 - }, - { - "properties": { - "lit": "false" - }, - "id": 17645, - "default": true - } - ] - }, - "minecraft:gray_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17646 - }, - { - "properties": { - "lit": "false" - }, - "id": 17647, - "default": true - } - ] - }, - "minecraft:light_gray_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17648 - }, - { - "properties": { - "lit": "false" - }, - "id": 17649, - "default": true - } - ] - }, - "minecraft:cyan_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17650 - }, - { - "properties": { - "lit": "false" - }, - "id": 17651, - "default": true - } - ] - }, - "minecraft:purple_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17652 - }, - { - "properties": { - "lit": "false" - }, - "id": 17653, - "default": true - } - ] - }, - "minecraft:blue_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17654 - }, - { - "properties": { - "lit": "false" - }, - "id": 17655, - "default": true - } - ] - }, - "minecraft:brown_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17656 - }, - { - "properties": { - "lit": "false" - }, - "id": 17657, - "default": true - } - ] - }, - "minecraft:green_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17658 - }, - { - "properties": { - "lit": "false" - }, - "id": 17659, - "default": true - } - ] - }, - "minecraft:red_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17660 - }, - { - "properties": { - "lit": "false" - }, - "id": 17661, - "default": true - } - ] - }, - "minecraft:black_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "lit": "true" - }, - "id": 17662 - }, - { - "properties": { - "lit": "false" - }, - "id": 17663, - "default": true - } - ] - }, - "minecraft:amethyst_block": { - "states": [ - { - "id": 17664, - "default": true - } - ] - }, - "minecraft:budding_amethyst": { - "states": [ - { - "id": 17665, - "default": true - } - ] - }, - "minecraft:amethyst_cluster": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 17666 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 17667 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 17668 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 17669 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 17670 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 17671 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 17672 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 17673 - }, - { - "properties": { - "facing": "up", - "waterlogged": "true" - }, - "id": 17674 - }, - { - "properties": { - "facing": "up", - "waterlogged": "false" - }, - "id": 17675, - "default": true - }, - { - "properties": { - "facing": "down", - "waterlogged": "true" - }, - "id": 17676 - }, - { - "properties": { - "facing": "down", - "waterlogged": "false" - }, - "id": 17677 - } - ] - }, - "minecraft:large_amethyst_bud": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 17678 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 17679 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 17680 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 17681 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 17682 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 17683 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 17684 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 17685 - }, - { - "properties": { - "facing": "up", - "waterlogged": "true" - }, - "id": 17686 - }, - { - "properties": { - "facing": "up", - "waterlogged": "false" - }, - "id": 17687, - "default": true - }, - { - "properties": { - "facing": "down", - "waterlogged": "true" - }, - "id": 17688 - }, - { - "properties": { - "facing": "down", - "waterlogged": "false" - }, - "id": 17689 - } - ] - }, - "minecraft:medium_amethyst_bud": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 17690 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 17691 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 17692 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 17693 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 17694 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 17695 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 17696 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 17697 - }, - { - "properties": { - "facing": "up", - "waterlogged": "true" - }, - "id": 17698 - }, - { - "properties": { - "facing": "up", - "waterlogged": "false" - }, - "id": 17699, - "default": true - }, - { - "properties": { - "facing": "down", - "waterlogged": "true" - }, - "id": 17700 - }, - { - "properties": { - "facing": "down", - "waterlogged": "false" - }, - "id": 17701 - } - ] - }, - "minecraft:small_amethyst_bud": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 17702 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 17703 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 17704 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 17705 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 17706 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 17707 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 17708 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 17709 - }, - { - "properties": { - "facing": "up", - "waterlogged": "true" - }, - "id": 17710 - }, - { - "properties": { - "facing": "up", - "waterlogged": "false" - }, - "id": 17711, - "default": true - }, - { - "properties": { - "facing": "down", - "waterlogged": "true" - }, - "id": 17712 - }, - { - "properties": { - "facing": "down", - "waterlogged": "false" - }, - "id": 17713 - } - ] - }, - "minecraft:tuff": { - "states": [ - { - "id": 17714, - "default": true - } - ] - }, - "minecraft:calcite": { - "states": [ - { - "id": 17715, - "default": true - } - ] - }, - "minecraft:tinted_glass": { - "states": [ - { - "id": 17716, - "default": true - } - ] - }, - "minecraft:powder_snow": { - "states": [ - { - "id": 17717, - "default": true - } - ] - }, - "minecraft:sculk_sensor": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "sculk_sensor_phase": [ - "inactive", - "active", - "cooldown" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17718 - }, - { - "properties": { - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17719, - "default": true - }, - { - "properties": { - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17720 - }, - { - "properties": { - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17721 - }, - { - "properties": { - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17722 - }, - { - "properties": { - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17723 - }, - { - "properties": { - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17724 - }, - { - "properties": { - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17725 - }, - { - "properties": { - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17726 - }, - { - "properties": { - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17727 - }, - { - "properties": { - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17728 - }, - { - "properties": { - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17729 - }, - { - "properties": { - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17730 - }, - { - "properties": { - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17731 - }, - { - "properties": { - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17732 - }, - { - "properties": { - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17733 - }, - { - "properties": { - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17734 - }, - { - "properties": { - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17735 - }, - { - "properties": { - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17736 - }, - { - "properties": { - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17737 - }, - { - "properties": { - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17738 - }, - { - "properties": { - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17739 - }, - { - "properties": { - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17740 - }, - { - "properties": { - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17741 - }, - { - "properties": { - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17742 - }, - { - "properties": { - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17743 - }, - { - "properties": { - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17744 - }, - { - "properties": { - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17745 - }, - { - "properties": { - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17746 - }, - { - "properties": { - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17747 - }, - { - "properties": { - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17748 - }, - { - "properties": { - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17749 - }, - { - "properties": { - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17750 - }, - { - "properties": { - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17751 - }, - { - "properties": { - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17752 - }, - { - "properties": { - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17753 - }, - { - "properties": { - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17754 - }, - { - "properties": { - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17755 - }, - { - "properties": { - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17756 - }, - { - "properties": { - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17757 - }, - { - "properties": { - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17758 - }, - { - "properties": { - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17759 - }, - { - "properties": { - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17760 - }, - { - "properties": { - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17761 - }, - { - "properties": { - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17762 - }, - { - "properties": { - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17763 - }, - { - "properties": { - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17764 - }, - { - "properties": { - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17765 - }, - { - "properties": { - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17766 - }, - { - "properties": { - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17767 - }, - { - "properties": { - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17768 - }, - { - "properties": { - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17769 - }, - { - "properties": { - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17770 - }, - { - "properties": { - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17771 - }, - { - "properties": { - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17772 - }, - { - "properties": { - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17773 - }, - { - "properties": { - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17774 - }, - { - "properties": { - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17775 - }, - { - "properties": { - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17776 - }, - { - "properties": { - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17777 - }, - { - "properties": { - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17778 - }, - { - "properties": { - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17779 - }, - { - "properties": { - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17780 - }, - { - "properties": { - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17781 - }, - { - "properties": { - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17782 - }, - { - "properties": { - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17783 - }, - { - "properties": { - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17784 - }, - { - "properties": { - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17785 - }, - { - "properties": { - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17786 - }, - { - "properties": { - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17787 - }, - { - "properties": { - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17788 - }, - { - "properties": { - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17789 - }, - { - "properties": { - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17790 - }, - { - "properties": { - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17791 - }, - { - "properties": { - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17792 - }, - { - "properties": { - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17793 - }, - { - "properties": { - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17794 - }, - { - "properties": { - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17795 - }, - { - "properties": { - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17796 - }, - { - "properties": { - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17797 - }, - { - "properties": { - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17798 - }, - { - "properties": { - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17799 - }, - { - "properties": { - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17800 - }, - { - "properties": { - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17801 - }, - { - "properties": { - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17802 - }, - { - "properties": { - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17803 - }, - { - "properties": { - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17804 - }, - { - "properties": { - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17805 - }, - { - "properties": { - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17806 - }, - { - "properties": { - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17807 - }, - { - "properties": { - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17808 - }, - { - "properties": { - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17809 - }, - { - "properties": { - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "true" - }, - "id": 17810 - }, - { - "properties": { - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "false" - }, - "id": 17811 - }, - { - "properties": { - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17812 - }, - { - "properties": { - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17813 - } - ] - }, - "minecraft:oxidized_copper": { - "states": [ - { - "id": 17814, - "default": true - } - ] - }, - "minecraft:weathered_copper": { - "states": [ - { - "id": 17815, - "default": true - } - ] - }, - "minecraft:exposed_copper": { - "states": [ - { - "id": 17816, - "default": true - } - ] - }, - "minecraft:copper_block": { - "states": [ - { - "id": 17817, - "default": true - } - ] - }, - "minecraft:copper_ore": { - "states": [ - { - "id": 17818, - "default": true - } - ] - }, - "minecraft:deepslate_copper_ore": { - "states": [ - { - "id": 17819, - "default": true - } - ] - }, - "minecraft:oxidized_cut_copper": { - "states": [ - { - "id": 17820, - "default": true - } - ] - }, - "minecraft:weathered_cut_copper": { - "states": [ - { - "id": 17821, - "default": true - } - ] - }, - "minecraft:exposed_cut_copper": { - "states": [ - { - "id": 17822, - "default": true - } - ] - }, - "minecraft:cut_copper": { - "states": [ - { - "id": 17823, - "default": true - } - ] - }, - "minecraft:oxidized_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17824 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17825 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17826 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17827 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17828 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17829 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17830 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17831 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17832 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17833 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17834 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17835, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17836 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17837 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17838 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17839 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17840 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17841 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17842 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17843 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17844 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17845 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17846 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17847 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17848 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17849 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17850 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17851 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17852 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17853 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17854 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17855 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17856 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17857 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17858 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17859 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17860 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17861 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17862 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17863 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17864 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17865 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17866 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17867 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17868 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17869 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17870 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17871 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17872 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17873 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17874 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17875 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17876 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17877 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17878 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17879 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17880 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17881 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17882 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17883 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17884 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17885 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17886 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17887 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17888 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17889 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17890 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17891 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17892 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17893 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17894 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17895 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17896 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17897 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17898 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17899 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17900 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17901 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17902 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17903 - } - ] - }, - "minecraft:weathered_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17904 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17905 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17906 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17907 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17908 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17909 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17910 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17911 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17912 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17913 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17914 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17915, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17916 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17917 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17918 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17919 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17920 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17921 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17922 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17923 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17924 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17925 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17926 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17927 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17928 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17929 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17930 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17931 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17932 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17933 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17934 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17935 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17936 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17937 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17938 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17939 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17940 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17941 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17942 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17943 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17944 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17945 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17946 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17947 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17948 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17949 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17950 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17951 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17952 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17953 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17954 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17955 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17956 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17957 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17958 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17959 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17960 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17961 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17962 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17963 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17964 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17965 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17966 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17967 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17968 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17969 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17970 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17971 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17972 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17973 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17974 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17975 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17976 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17977 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17978 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17979 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17980 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17981 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17982 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17983 - } - ] - }, - "minecraft:exposed_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17984 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17985 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17986 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17987 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17988 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17989 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17990 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17991 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17992 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17993 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17994 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17995, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17996 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17997 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 17998 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 17999 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18000 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18001 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18002 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18003 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18004 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18005 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18006 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18007 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18008 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18009 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18010 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18011 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18012 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18013 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18014 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18015 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18016 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18017 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18018 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18019 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18020 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18021 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18022 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18023 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18024 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18025 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18026 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18027 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18028 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18029 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18030 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18031 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18032 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18033 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18034 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18035 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18036 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18037 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18038 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18039 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18040 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18041 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18042 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18043 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18044 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18045 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18046 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18047 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18048 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18049 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18050 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18051 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18052 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18053 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18054 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18055 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18056 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18057 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18058 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18059 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18060 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18061 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18062 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18063 - } - ] - }, - "minecraft:cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18064 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18065 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18066 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18067 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18068 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18069 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18070 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18071 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18072 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18073 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18074 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18075, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18076 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18077 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18078 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18079 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18080 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18081 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18082 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18083 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18084 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18085 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18086 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18087 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18088 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18089 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18090 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18091 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18092 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18093 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18094 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18095 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18096 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18097 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18098 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18099 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18100 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18101 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18102 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18103 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18104 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18105 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18106 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18107 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18108 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18109 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18110 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18111 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18112 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18113 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18114 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18115 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18116 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18117 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18118 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18119 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18120 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18121 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18122 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18123 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18124 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18125 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18126 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18127 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18128 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18129 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18130 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18131 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18132 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18133 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18134 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18135 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18136 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18137 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18138 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18139 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18140 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18141 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18142 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18143 - } - ] - }, - "minecraft:oxidized_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18144 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18145 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18146 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18147, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18148 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18149 - } - ] - }, - "minecraft:weathered_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18150 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18151 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18152 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18153, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18154 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18155 - } - ] - }, - "minecraft:exposed_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18156 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18157 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18158 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18159, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18160 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18161 - } - ] - }, - "minecraft:cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18162 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18163 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18164 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18165, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18166 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18167 + "level": "3" + } } ] }, "minecraft:waxed_copper_block": { "states": [ { - "id": 18168, - "default": true - } - ] - }, - "minecraft:waxed_weathered_copper": { - "states": [ - { - "id": 18169, - "default": true - } - ] - }, - "minecraft:waxed_exposed_copper": { - "states": [ - { - "id": 18170, - "default": true - } - ] - }, - "minecraft:waxed_oxidized_copper": { - "states": [ - { - "id": 18171, - "default": true - } - ] - }, - "minecraft:waxed_oxidized_cut_copper": { - "states": [ - { - "id": 18172, - "default": true - } - ] - }, - "minecraft:waxed_weathered_cut_copper": { - "states": [ - { - "id": 18173, - "default": true - } - ] - }, - "minecraft:waxed_exposed_cut_copper": { - "states": [ - { - "id": 18174, - "default": true + "default": true, + "id": 19262 } ] }, "minecraft:waxed_cut_copper": { "states": [ { - "id": 18175, - "default": true + "default": true, + "id": 19269 } ] }, - "minecraft:waxed_oxidized_cut_copper_stairs": { + "minecraft:waxed_cut_copper_slab": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ + "type": [ "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "bottom", + "double" ], "waterlogged": [ "true", @@ -182094,2221 +209321,47 @@ }, "states": [ { + "id": 19608, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", + "type": "top", "waterlogged": "true" - }, - "id": 18176 + } }, { + "id": 19609, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", + "type": "top", "waterlogged": "false" - }, - "id": 18177 + } }, { + "id": 19610, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", + "type": "bottom", "waterlogged": "true" - }, - "id": 18178 + } }, { + "default": true, + "id": 19611, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", + "type": "bottom", "waterlogged": "false" - }, - "id": 18179 + } }, { + "id": 19612, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", + "type": "double", "waterlogged": "true" - }, - "id": 18180 + } }, { + "id": 19613, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", + "type": "double", "waterlogged": "false" - }, - "id": 18181 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18182 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18183 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18184 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18185 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18186 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18187, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18188 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18189 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18190 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18191 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18192 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18193 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18194 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18195 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18196 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18197 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18198 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18199 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18200 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18201 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18202 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18203 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18204 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18205 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18206 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18207 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18208 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18209 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18210 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18211 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18212 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18213 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18214 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18215 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18216 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18217 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18218 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18219 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18220 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18221 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18222 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18223 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18224 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18225 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18226 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18227 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18228 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18229 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18230 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18231 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18232 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18233 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18234 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18235 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18236 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18237 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18238 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18239 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18240 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18241 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18242 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18243 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18244 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18245 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18246 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18247 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18248 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18249 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18250 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18251 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18252 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18253 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18254 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18255 - } - ] - }, - "minecraft:waxed_weathered_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18256 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18257 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18258 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18259 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18260 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18261 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18262 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18263 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18264 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18265 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18266 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18267, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18268 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18269 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18270 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18271 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18272 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18273 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18274 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18275 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18276 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18277 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18278 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18279 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18280 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18281 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18282 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18283 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18284 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18285 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18286 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18287 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18288 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18289 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18290 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18291 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18292 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18293 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18294 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18295 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18296 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18297 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18298 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18299 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18300 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18301 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18302 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18303 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18304 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18305 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18306 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18307 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18308 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18309 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18310 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18311 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18312 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18313 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18314 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18315 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18316 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18317 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18318 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18319 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18320 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18321 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18322 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18323 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18324 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18325 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18326 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18327 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18328 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18329 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18330 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18331 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18332 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18333 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18334 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18335 - } - ] - }, - "minecraft:waxed_exposed_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18336 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18337 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18338 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18339 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18340 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18341 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18342 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18343 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18344 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18345 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18346 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18347, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18348 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18349 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18350 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18351 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18352 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18353 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18354 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18355 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18356 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18357 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18358 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18359 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18360 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18361 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18362 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18363 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18364 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18365 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18366 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18367 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18368 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18369 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18370 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18371 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18372 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18373 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18374 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18375 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18376 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18377 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18378 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18379 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18380 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18381 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18382 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18383 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18384 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18385 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18386 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18387 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18388 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18389 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18390 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18391 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18392 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18393 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18394 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18395 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18396 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18397 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18398 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18399 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18400 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18401 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18402 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18403 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18404 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18405 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18406 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18407 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18408 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18409 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18410 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18411 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18412 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18413 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18414 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18415 + } } ] }, @@ -184338,841 +209391,741 @@ }, "states": [ { + "id": 19510, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 18416 + } }, { + "id": 19511, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 18417 + } }, { + "id": 19512, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18418 + } }, { + "id": 19513, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18419 + } }, { + "id": 19514, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18420 + } }, { + "id": 19515, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18421 + } }, { + "id": 19516, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18422 + } }, { + "id": 19517, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18423 + } }, { + "id": 19518, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18424 + } }, { + "id": 19519, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18425 + } }, { + "id": 19520, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 18426 + } }, { + "default": true, + "id": 19521, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 18427, - "default": true + } }, { + "id": 19522, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18428 + } }, { + "id": 19523, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18429 + } }, { + "id": 19524, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18430 + } }, { + "id": 19525, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18431 + } }, { + "id": 19526, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18432 + } }, { + "id": 19527, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18433 + } }, { + "id": 19528, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18434 + } }, { + "id": 19529, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18435 + } }, { + "id": 19530, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 18436 + } }, { + "id": 19531, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 18437 + } }, { + "id": 19532, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18438 + } }, { + "id": 19533, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18439 + } }, { + "id": 19534, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18440 + } }, { + "id": 19535, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18441 + } }, { + "id": 19536, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18442 + } }, { + "id": 19537, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18443 + } }, { + "id": 19538, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18444 + } }, { + "id": 19539, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18445 + } }, { + "id": 19540, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 18446 + } }, { + "id": 19541, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 18447 + } }, { + "id": 19542, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18448 + } }, { + "id": 19543, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18449 + } }, { + "id": 19544, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18450 + } }, { + "id": 19545, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18451 + } }, { + "id": 19546, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18452 + } }, { + "id": 19547, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18453 + } }, { + "id": 19548, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18454 + } }, { + "id": 19549, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18455 + } }, { + "id": 19550, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 18456 + } }, { + "id": 19551, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 18457 + } }, { + "id": 19552, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18458 + } }, { + "id": 19553, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18459 + } }, { + "id": 19554, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18460 + } }, { + "id": 19555, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18461 + } }, { + "id": 19556, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18462 + } }, { + "id": 19557, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18463 + } }, { + "id": 19558, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18464 + } }, { + "id": 19559, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18465 + } }, { + "id": 19560, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 18466 + } }, { + "id": 19561, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 18467 + } }, { + "id": 19562, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18468 + } }, { + "id": 19563, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18469 + } }, { + "id": 19564, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18470 + } }, { + "id": 19565, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18471 + } }, { + "id": 19566, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18472 + } }, { + "id": 19567, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18473 + } }, { + "id": 19568, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18474 + } }, { + "id": 19569, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18475 + } }, { + "id": 19570, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 18476 + } }, { + "id": 19571, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 18477 + } }, { + "id": 19572, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18478 + } }, { + "id": 19573, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18479 + } }, { + "id": 19574, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18480 + } }, { + "id": 19575, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18481 + } }, { + "id": 19576, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18482 + } }, { + "id": 19577, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18483 + } }, { + "id": 19578, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18484 + } }, { + "id": 19579, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18485 + } }, { + "id": 19580, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 18486 + } }, { + "id": 19581, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 18487 + } }, { + "id": 19582, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18488 + } }, { + "id": 19583, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18489 + } }, { + "id": 19584, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18490 + } }, { + "id": 19585, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18491 + } }, { + "id": 19586, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18492 + } }, { + "id": 19587, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18493 + } }, { + "id": 19588, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18494 + } }, { + "id": 19589, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18495 + } } ] }, - "minecraft:waxed_oxidized_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, + "minecraft:waxed_exposed_copper": { "states": [ { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18496 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18497 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18498 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18499, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18500 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18501 + "default": true, + "id": 19264 } ] }, - "minecraft:waxed_weathered_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, + "minecraft:waxed_exposed_cut_copper": { "states": [ { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18502 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18503 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18504 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18505, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18506 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18507 + "default": true, + "id": 19268 } ] }, @@ -185190,51 +210143,815 @@ }, "states": [ { + "id": 19602, "properties": { "type": "top", "waterlogged": "true" - }, - "id": 18508 + } }, { + "id": 19603, "properties": { "type": "top", "waterlogged": "false" - }, - "id": 18509 + } }, { + "id": 19604, "properties": { "type": "bottom", "waterlogged": "true" - }, - "id": 18510 + } }, { + "default": true, + "id": 19605, "properties": { "type": "bottom", "waterlogged": "false" - }, - "id": 18511, - "default": true + } }, { + "id": 19606, "properties": { "type": "double", "waterlogged": "true" - }, - "id": 18512 + } }, { + "id": 19607, "properties": { "type": "double", "waterlogged": "false" - }, - "id": 18513 + } } ] }, - "minecraft:waxed_cut_copper_slab": { + "minecraft:waxed_exposed_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19430, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19431, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19432, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19433, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19434, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19435, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19436, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19437, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19438, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19439, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19440, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19441, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19442, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19443, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19444, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19445, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19446, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19447, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19448, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19449, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19450, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19451, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19452, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19453, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19454, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19455, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19456, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19457, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19458, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19459, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19460, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19461, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19462, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19463, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19464, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19465, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19466, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19467, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19468, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19469, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19470, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19471, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19472, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19473, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19474, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19475, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19476, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19477, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19478, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19479, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19480, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19481, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19482, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19483, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19484, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19485, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19486, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19487, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19488, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19489, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19490, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19491, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19492, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19493, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19494, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19495, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19496, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19497, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19498, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19499, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19500, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19501, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19502, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19503, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19504, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19505, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19506, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19507, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19508, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19509, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper": { + "states": [ + { + "default": true, + "id": 19265 + } + ] + }, + "minecraft:waxed_oxidized_cut_copper": { + "states": [ + { + "default": true, + "id": 19266 + } + ] + }, + "minecraft:waxed_oxidized_cut_copper_slab": { "properties": { "type": [ "top", @@ -185248,63 +210965,68 @@ }, "states": [ { + "id": 19590, "properties": { "type": "top", "waterlogged": "true" - }, - "id": 18514 + } }, { + "id": 19591, "properties": { "type": "top", "waterlogged": "false" - }, - "id": 18515 + } }, { + "id": 19592, "properties": { "type": "bottom", "waterlogged": "true" - }, - "id": 18516 + } }, { + "default": true, + "id": 19593, "properties": { "type": "bottom", "waterlogged": "false" - }, - "id": 18517, - "default": true + } }, { + "id": 19594, "properties": { "type": "double", "waterlogged": "true" - }, - "id": 18518 + } }, { + "id": 19595, "properties": { "type": "double", "waterlogged": "false" - }, - "id": 18519 + } } ] }, - "minecraft:lightning_rod": { + "minecraft:waxed_oxidized_cut_copper_stairs": { "properties": { "facing": [ "north", - "east", "south", "west", - "up", - "down" + "east" ], - "powered": [ - "true", - "false" + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ], "waterlogged": [ "true", @@ -185313,212 +211035,750 @@ }, "states": [ { + "id": 19270, "properties": { "facing": "north", - "powered": "true", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 18520 + } }, { + "id": 19271, "properties": { "facing": "north", - "powered": "true", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 18521 + } }, { + "id": 19272, "properties": { "facing": "north", - "powered": "false", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 18522 + } }, { + "id": 19273, "properties": { "facing": "north", - "powered": "false", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 18523 + } }, { + "id": 19274, "properties": { - "facing": "east", - "powered": "true", + "facing": "north", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 18524 + } }, { + "id": 19275, "properties": { - "facing": "east", - "powered": "true", + "facing": "north", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 18525 + } }, { + "id": 19276, "properties": { - "facing": "east", - "powered": "false", + "facing": "north", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 18526 + } }, { + "id": 19277, "properties": { - "facing": "east", - "powered": "false", + "facing": "north", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 18527 + } }, { + "id": 19278, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19279, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19280, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19281, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19282, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19283, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19284, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19285, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19286, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19287, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19288, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19289, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19290, "properties": { "facing": "south", - "powered": "true", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 18528 + } }, { + "id": 19291, "properties": { "facing": "south", - "powered": "true", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 18529 + } }, { + "id": 19292, "properties": { "facing": "south", - "powered": "false", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 18530 + } }, { + "id": 19293, "properties": { "facing": "south", - "powered": "false", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 18531 + } }, { + "id": 19294, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19295, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19296, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19297, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19298, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19299, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19300, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19301, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19302, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19303, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19304, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19305, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19306, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19307, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19308, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19309, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19310, "properties": { "facing": "west", - "powered": "true", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 18532 + } }, { + "id": 19311, "properties": { "facing": "west", - "powered": "true", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 18533 + } }, { + "id": 19312, "properties": { "facing": "west", - "powered": "false", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 18534 + } }, { + "id": 19313, "properties": { "facing": "west", - "powered": "false", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 18535 + } }, { + "id": 19314, "properties": { - "facing": "up", - "powered": "true", + "facing": "west", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 18536 + } }, { + "id": 19315, "properties": { - "facing": "up", - "powered": "true", + "facing": "west", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 18537 + } }, { + "id": 19316, "properties": { - "facing": "up", - "powered": "false", + "facing": "west", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 18538 + } }, { + "id": 19317, "properties": { - "facing": "up", - "powered": "false", + "facing": "west", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 18539, - "default": true + } }, { + "id": 19318, "properties": { - "facing": "down", - "powered": "true", + "facing": "west", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 18540 + } }, { + "id": 19319, "properties": { - "facing": "down", - "powered": "true", + "facing": "west", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 18541 + } }, { + "id": 19320, "properties": { - "facing": "down", - "powered": "false", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 18542 + } }, { + "id": 19321, "properties": { - "facing": "down", - "powered": "false", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 18543 + } + }, + { + "id": 19322, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19323, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19324, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19325, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19326, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19327, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19328, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19329, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19330, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19331, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19332, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19333, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19334, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19335, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19336, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19337, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19338, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19339, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19340, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19341, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19342, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19343, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19344, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19345, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19346, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19347, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19348, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19349, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } } ] }, - "minecraft:pointed_dripstone": { + "minecraft:waxed_weathered_copper": { + "states": [ + { + "default": true, + "id": 19263 + } + ] + }, + "minecraft:waxed_weathered_cut_copper": { + "states": [ + { + "default": true, + "id": 19267 + } + ] + }, + "minecraft:waxed_weathered_cut_copper_slab": { "properties": { - "thickness": [ - "tip_merge", - "tip", - "frustum", - "middle", - "base" - ], - "vertical_direction": [ - "up", - "down" + "type": [ + "top", + "bottom", + "double" ], "waterlogged": [ "true", @@ -185527,177 +211787,1621 @@ }, "states": [ { + "id": 19596, "properties": { - "thickness": "tip_merge", - "vertical_direction": "up", + "type": "top", "waterlogged": "true" - }, - "id": 18544 + } }, { + "id": 19597, "properties": { - "thickness": "tip_merge", - "vertical_direction": "up", + "type": "top", "waterlogged": "false" - }, - "id": 18545 + } }, { + "id": 19598, "properties": { - "thickness": "tip_merge", - "vertical_direction": "down", + "type": "bottom", "waterlogged": "true" - }, - "id": 18546 + } }, { + "default": true, + "id": 19599, "properties": { - "thickness": "tip_merge", - "vertical_direction": "down", + "type": "bottom", "waterlogged": "false" - }, - "id": 18547 + } }, { + "id": 19600, "properties": { - "thickness": "tip", - "vertical_direction": "up", + "type": "double", "waterlogged": "true" - }, - "id": 18548 + } }, { + "id": 19601, "properties": { - "thickness": "tip", - "vertical_direction": "up", + "type": "double", "waterlogged": "false" - }, - "id": 18549, - "default": true - }, - { - "properties": { - "thickness": "tip", - "vertical_direction": "down", - "waterlogged": "true" - }, - "id": 18550 - }, - { - "properties": { - "thickness": "tip", - "vertical_direction": "down", - "waterlogged": "false" - }, - "id": 18551 - }, - { - "properties": { - "thickness": "frustum", - "vertical_direction": "up", - "waterlogged": "true" - }, - "id": 18552 - }, - { - "properties": { - "thickness": "frustum", - "vertical_direction": "up", - "waterlogged": "false" - }, - "id": 18553 - }, - { - "properties": { - "thickness": "frustum", - "vertical_direction": "down", - "waterlogged": "true" - }, - "id": 18554 - }, - { - "properties": { - "thickness": "frustum", - "vertical_direction": "down", - "waterlogged": "false" - }, - "id": 18555 - }, - { - "properties": { - "thickness": "middle", - "vertical_direction": "up", - "waterlogged": "true" - }, - "id": 18556 - }, - { - "properties": { - "thickness": "middle", - "vertical_direction": "up", - "waterlogged": "false" - }, - "id": 18557 - }, - { - "properties": { - "thickness": "middle", - "vertical_direction": "down", - "waterlogged": "true" - }, - "id": 18558 - }, - { - "properties": { - "thickness": "middle", - "vertical_direction": "down", - "waterlogged": "false" - }, - "id": 18559 - }, - { - "properties": { - "thickness": "base", - "vertical_direction": "up", - "waterlogged": "true" - }, - "id": 18560 - }, - { - "properties": { - "thickness": "base", - "vertical_direction": "up", - "waterlogged": "false" - }, - "id": 18561 - }, - { - "properties": { - "thickness": "base", - "vertical_direction": "down", - "waterlogged": "true" - }, - "id": 18562 - }, - { - "properties": { - "thickness": "base", - "vertical_direction": "down", - "waterlogged": "false" - }, - "id": 18563 + } } ] }, - "minecraft:dripstone_block": { + "minecraft:waxed_weathered_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, "states": [ { - "id": 18564, - "default": true + "id": 19350, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19351, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19352, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19353, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19354, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19355, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19356, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19357, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19358, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19359, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19360, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19361, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19362, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19363, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19364, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19365, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19366, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19367, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19368, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19369, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19370, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19371, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19372, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19373, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19374, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19375, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19376, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19377, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19378, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19379, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19380, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19381, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19382, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19383, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19384, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19385, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19386, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19387, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19388, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19389, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19390, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19391, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19392, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19393, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19394, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19395, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19396, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19397, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19398, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19399, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19400, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19401, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19402, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19403, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19404, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19405, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19406, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19407, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19408, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19409, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19410, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19411, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19412, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19413, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19414, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19415, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19416, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19417, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19418, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19419, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19420, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19421, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19422, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19423, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19424, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19425, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19426, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19427, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19428, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19429, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } } ] }, - "minecraft:cave_vines": { + "minecraft:weathered_copper": { + "states": [ + { + "default": true, + "id": 18909 + } + ] + }, + "minecraft:weathered_cut_copper": { + "states": [ + { + "default": true, + "id": 18915 + } + ] + }, + "minecraft:weathered_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19244, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 19245, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 19246, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19247, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 19248, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 19249, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18998, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18999, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19000, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19001, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19002, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19003, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19004, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19005, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19006, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19007, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19008, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19009, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19010, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19011, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19012, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19013, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19014, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19015, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19016, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19017, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19018, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19019, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19020, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19021, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19022, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19023, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19024, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19025, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19026, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19027, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19028, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19029, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19030, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19031, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19032, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19033, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19034, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19035, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19036, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19037, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19038, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19039, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19040, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19041, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19042, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19043, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19044, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19045, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19046, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19047, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19048, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19049, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19050, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19051, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19052, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19053, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19054, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19055, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19056, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19057, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19058, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19059, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19060, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19061, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19062, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19063, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19064, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19065, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19066, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19067, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19068, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19069, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19070, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19071, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19072, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19073, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19074, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19075, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19076, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19077, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weeping_vines": { "properties": { "age": [ "0", @@ -185726,444 +213430,371 @@ "23", "24", "25" - ], - "berries": [ - "true", - "false" ] }, "states": [ { + "default": true, + "id": 16199, "properties": { - "age": "0", - "berries": "true" - }, - "id": 18565 + "age": "0" + } }, { + "id": 16200, "properties": { - "age": "0", - "berries": "false" - }, - "id": 18566, - "default": true + "age": "1" + } }, { + "id": 16201, "properties": { - "age": "1", - "berries": "true" - }, - "id": 18567 + "age": "2" + } }, { + "id": 16202, "properties": { - "age": "1", - "berries": "false" - }, - "id": 18568 + "age": "3" + } }, { + "id": 16203, "properties": { - "age": "2", - "berries": "true" - }, - "id": 18569 + "age": "4" + } }, { + "id": 16204, "properties": { - "age": "2", - "berries": "false" - }, - "id": 18570 + "age": "5" + } }, { + "id": 16205, "properties": { - "age": "3", - "berries": "true" - }, - "id": 18571 + "age": "6" + } }, { + "id": 16206, "properties": { - "age": "3", - "berries": "false" - }, - "id": 18572 + "age": "7" + } }, { + "id": 16207, "properties": { - "age": "4", - "berries": "true" - }, - "id": 18573 + "age": "8" + } }, { + "id": 16208, "properties": { - "age": "4", - "berries": "false" - }, - "id": 18574 + "age": "9" + } }, { + "id": 16209, "properties": { - "age": "5", - "berries": "true" - }, - "id": 18575 + "age": "10" + } }, { + "id": 16210, "properties": { - "age": "5", - "berries": "false" - }, - "id": 18576 + "age": "11" + } }, { + "id": 16211, "properties": { - "age": "6", - "berries": "true" - }, - "id": 18577 + "age": "12" + } }, { + "id": 16212, "properties": { - "age": "6", - "berries": "false" - }, - "id": 18578 + "age": "13" + } }, { + "id": 16213, "properties": { - "age": "7", - "berries": "true" - }, - "id": 18579 + "age": "14" + } }, { + "id": 16214, "properties": { - "age": "7", - "berries": "false" - }, - "id": 18580 + "age": "15" + } }, { + "id": 16215, "properties": { - "age": "8", - "berries": "true" - }, - "id": 18581 + "age": "16" + } }, { + "id": 16216, "properties": { - "age": "8", - "berries": "false" - }, - "id": 18582 + "age": "17" + } }, { + "id": 16217, "properties": { - "age": "9", - "berries": "true" - }, - "id": 18583 + "age": "18" + } }, { + "id": 16218, "properties": { - "age": "9", - "berries": "false" - }, - "id": 18584 + "age": "19" + } }, { + "id": 16219, "properties": { - "age": "10", - "berries": "true" - }, - "id": 18585 + "age": "20" + } }, { + "id": 16220, "properties": { - "age": "10", - "berries": "false" - }, - "id": 18586 + "age": "21" + } }, { + "id": 16221, "properties": { - "age": "11", - "berries": "true" - }, - "id": 18587 + "age": "22" + } }, { + "id": 16222, "properties": { - "age": "11", - "berries": "false" - }, - "id": 18588 + "age": "23" + } }, { + "id": 16223, "properties": { - "age": "12", - "berries": "true" - }, - "id": 18589 + "age": "24" + } }, { + "id": 16224, "properties": { - "age": "12", - "berries": "false" - }, - "id": 18590 - }, - { - "properties": { - "age": "13", - "berries": "true" - }, - "id": 18591 - }, - { - "properties": { - "age": "13", - "berries": "false" - }, - "id": 18592 - }, - { - "properties": { - "age": "14", - "berries": "true" - }, - "id": 18593 - }, - { - "properties": { - "age": "14", - "berries": "false" - }, - "id": 18594 - }, - { - "properties": { - "age": "15", - "berries": "true" - }, - "id": 18595 - }, - { - "properties": { - "age": "15", - "berries": "false" - }, - "id": 18596 - }, - { - "properties": { - "age": "16", - "berries": "true" - }, - "id": 18597 - }, - { - "properties": { - "age": "16", - "berries": "false" - }, - "id": 18598 - }, - { - "properties": { - "age": "17", - "berries": "true" - }, - "id": 18599 - }, - { - "properties": { - "age": "17", - "berries": "false" - }, - "id": 18600 - }, - { - "properties": { - "age": "18", - "berries": "true" - }, - "id": 18601 - }, - { - "properties": { - "age": "18", - "berries": "false" - }, - "id": 18602 - }, - { - "properties": { - "age": "19", - "berries": "true" - }, - "id": 18603 - }, - { - "properties": { - "age": "19", - "berries": "false" - }, - "id": 18604 - }, - { - "properties": { - "age": "20", - "berries": "true" - }, - "id": 18605 - }, - { - "properties": { - "age": "20", - "berries": "false" - }, - "id": 18606 - }, - { - "properties": { - "age": "21", - "berries": "true" - }, - "id": 18607 - }, - { - "properties": { - "age": "21", - "berries": "false" - }, - "id": 18608 - }, - { - "properties": { - "age": "22", - "berries": "true" - }, - "id": 18609 - }, - { - "properties": { - "age": "22", - "berries": "false" - }, - "id": 18610 - }, - { - "properties": { - "age": "23", - "berries": "true" - }, - "id": 18611 - }, - { - "properties": { - "age": "23", - "berries": "false" - }, - "id": 18612 - }, - { - "properties": { - "age": "24", - "berries": "true" - }, - "id": 18613 - }, - { - "properties": { - "age": "24", - "berries": "false" - }, - "id": 18614 - }, - { - "properties": { - "age": "25", - "berries": "true" - }, - "id": 18615 - }, - { - "properties": { - "age": "25", - "berries": "false" - }, - "id": 18616 + "age": "25" + } } ] }, - "minecraft:cave_vines_plant": { + "minecraft:weeping_vines_plant": { + "states": [ + { + "default": true, + "id": 16225 + } + ] + }, + "minecraft:wet_sponge": { + "states": [ + { + "default": true, + "id": 459 + } + ] + }, + "minecraft:wheat": { "properties": { - "berries": [ - "true", - "false" + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" ] }, "states": [ { + "default": true, + "id": 3612, "properties": { - "berries": "true" - }, - "id": 18617 + "age": "0" + } }, { + "id": 3613, "properties": { - "berries": "false" - }, - "id": 18618, - "default": true + "age": "1" + } + }, + { + "id": 3614, + "properties": { + "age": "2" + } + }, + { + "id": 3615, + "properties": { + "age": "3" + } + }, + { + "id": 3616, + "properties": { + "age": "4" + } + }, + { + "id": 3617, + "properties": { + "age": "5" + } + }, + { + "id": 3618, + "properties": { + "age": "6" + } + }, + { + "id": 3619, + "properties": { + "age": "7" + } } ] }, - "minecraft:spore_blossom": { + "minecraft:white_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, "states": [ { - "id": 18619, - "default": true - } - ] - }, - "minecraft:azalea": { - "states": [ + "default": true, + "id": 8638, + "properties": { + "rotation": "0" + } + }, { - "id": 18620, - "default": true - } - ] - }, - "minecraft:flowering_azalea": { - "states": [ + "id": 8639, + "properties": { + "rotation": "1" + } + }, { - "id": 18621, - "default": true - } - ] - }, - "minecraft:moss_carpet": { - "states": [ + "id": 8640, + "properties": { + "rotation": "2" + } + }, { - "id": 18622, - "default": true - } - ] - }, - "minecraft:moss_block": { - "states": [ + "id": 8641, + "properties": { + "rotation": "3" + } + }, { - "id": 18623, - "default": true + "id": 8642, + "properties": { + "rotation": "4" + } + }, + { + "id": 8643, + "properties": { + "rotation": "5" + } + }, + { + "id": 8644, + "properties": { + "rotation": "6" + } + }, + { + "id": 8645, + "properties": { + "rotation": "7" + } + }, + { + "id": 8646, + "properties": { + "rotation": "8" + } + }, + { + "id": 8647, + "properties": { + "rotation": "9" + } + }, + { + "id": 8648, + "properties": { + "rotation": "10" + } + }, + { + "id": 8649, + "properties": { + "rotation": "11" + } + }, + { + "id": 8650, + "properties": { + "rotation": "12" + } + }, + { + "id": 8651, + "properties": { + "rotation": "13" + } + }, + { + "id": 8652, + "properties": { + "rotation": "14" + } + }, + { + "id": 8653, + "properties": { + "rotation": "15" + } } ] }, - "minecraft:big_dripleaf": { + "minecraft:white_bed": { "properties": { "facing": [ "north", @@ -186171,11 +213802,158 @@ "west", "east" ], - "tilt": [ - "none", - "unstable", - "partial", - "full" + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1279, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1280, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1281, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1282, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1283, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1284, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1285, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1286, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1287, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1288, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1289, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1290, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1291, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1292, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1293, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1294, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:white_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" ], "waterlogged": [ "true", @@ -186184,1379 +213962,290 @@ }, "states": [ { + "id": 18329, "properties": { - "facing": "north", - "tilt": "none", + "candles": "1", + "lit": "true", "waterlogged": "true" - }, - "id": 18624 + } }, { + "id": 18330, "properties": { - "facing": "north", - "tilt": "none", + "candles": "1", + "lit": "true", "waterlogged": "false" - }, - "id": 18625, - "default": true + } }, { + "id": 18331, "properties": { - "facing": "north", - "tilt": "unstable", + "candles": "1", + "lit": "false", "waterlogged": "true" - }, - "id": 18626 + } }, { + "default": true, + "id": 18332, "properties": { - "facing": "north", - "tilt": "unstable", + "candles": "1", + "lit": "false", "waterlogged": "false" - }, - "id": 18627 + } }, { + "id": 18333, "properties": { - "facing": "north", - "tilt": "partial", + "candles": "2", + "lit": "true", "waterlogged": "true" - }, - "id": 18628 + } }, { + "id": 18334, "properties": { - "facing": "north", - "tilt": "partial", + "candles": "2", + "lit": "true", "waterlogged": "false" - }, - "id": 18629 + } }, { + "id": 18335, "properties": { - "facing": "north", - "tilt": "full", + "candles": "2", + "lit": "false", "waterlogged": "true" - }, - "id": 18630 + } }, { + "id": 18336, "properties": { - "facing": "north", - "tilt": "full", + "candles": "2", + "lit": "false", "waterlogged": "false" - }, - "id": 18631 + } }, { + "id": 18337, "properties": { - "facing": "south", - "tilt": "none", + "candles": "3", + "lit": "true", "waterlogged": "true" - }, - "id": 18632 + } }, { + "id": 18338, "properties": { - "facing": "south", - "tilt": "none", + "candles": "3", + "lit": "true", "waterlogged": "false" - }, - "id": 18633 + } }, { + "id": 18339, "properties": { - "facing": "south", - "tilt": "unstable", + "candles": "3", + "lit": "false", "waterlogged": "true" - }, - "id": 18634 + } }, { + "id": 18340, "properties": { - "facing": "south", - "tilt": "unstable", + "candles": "3", + "lit": "false", "waterlogged": "false" - }, - "id": 18635 + } }, { + "id": 18341, "properties": { - "facing": "south", - "tilt": "partial", + "candles": "4", + "lit": "true", "waterlogged": "true" - }, - "id": 18636 + } }, { + "id": 18342, "properties": { - "facing": "south", - "tilt": "partial", + "candles": "4", + "lit": "true", "waterlogged": "false" - }, - "id": 18637 + } }, { + "id": 18343, "properties": { - "facing": "south", - "tilt": "full", + "candles": "4", + "lit": "false", "waterlogged": "true" - }, - "id": 18638 + } }, { + "id": 18344, "properties": { - "facing": "south", - "tilt": "full", + "candles": "4", + "lit": "false", "waterlogged": "false" - }, - "id": 18639 - }, - { - "properties": { - "facing": "west", - "tilt": "none", - "waterlogged": "true" - }, - "id": 18640 - }, - { - "properties": { - "facing": "west", - "tilt": "none", - "waterlogged": "false" - }, - "id": 18641 - }, - { - "properties": { - "facing": "west", - "tilt": "unstable", - "waterlogged": "true" - }, - "id": 18642 - }, - { - "properties": { - "facing": "west", - "tilt": "unstable", - "waterlogged": "false" - }, - "id": 18643 - }, - { - "properties": { - "facing": "west", - "tilt": "partial", - "waterlogged": "true" - }, - "id": 18644 - }, - { - "properties": { - "facing": "west", - "tilt": "partial", - "waterlogged": "false" - }, - "id": 18645 - }, - { - "properties": { - "facing": "west", - "tilt": "full", - "waterlogged": "true" - }, - "id": 18646 - }, - { - "properties": { - "facing": "west", - "tilt": "full", - "waterlogged": "false" - }, - "id": 18647 - }, - { - "properties": { - "facing": "east", - "tilt": "none", - "waterlogged": "true" - }, - "id": 18648 - }, - { - "properties": { - "facing": "east", - "tilt": "none", - "waterlogged": "false" - }, - "id": 18649 - }, - { - "properties": { - "facing": "east", - "tilt": "unstable", - "waterlogged": "true" - }, - "id": 18650 - }, - { - "properties": { - "facing": "east", - "tilt": "unstable", - "waterlogged": "false" - }, - "id": 18651 - }, - { - "properties": { - "facing": "east", - "tilt": "partial", - "waterlogged": "true" - }, - "id": 18652 - }, - { - "properties": { - "facing": "east", - "tilt": "partial", - "waterlogged": "false" - }, - "id": 18653 - }, - { - "properties": { - "facing": "east", - "tilt": "full", - "waterlogged": "true" - }, - "id": 18654 - }, - { - "properties": { - "facing": "east", - "tilt": "full", - "waterlogged": "false" - }, - "id": 18655 + } } ] }, - "minecraft:big_dripleaf_stem": { + "minecraft:white_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18587, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18588, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:white_carpet": { + "states": [ + { + "default": true, + "id": 8607 + } + ] + }, + "minecraft:white_concrete": { + "states": [ + { + "default": true, + "id": 10319 + } + ] + }, + "minecraft:white_concrete_powder": { + "states": [ + { + "default": true, + "id": 10335 + } + ] + }, + "minecraft:white_glazed_terracotta": { "properties": { "facing": [ "north", "south", "west", "east" - ], - "waterlogged": [ - "true", - "false" ] }, "states": [ { + "default": true, + "id": 10255, "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 18656 + "facing": "north" + } }, { + "id": 10256, "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 18657, - "default": true + "facing": "south" + } }, { + "id": 10257, "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 18658 + "facing": "west" + } }, { + "id": 10258, "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 18659 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 18660 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 18661 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 18662 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 18663 + "facing": "east" + } } ] }, - "minecraft:small_dripleaf": { + "minecraft:white_shulker_box": { "properties": { "facing": [ "north", + "east", "south", "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "waterlogged": [ - "true", - "false" + "up", + "down" ] }, "states": [ { + "id": 10159, "properties": { - "facing": "north", - "half": "upper", - "waterlogged": "true" - }, - "id": 18664 + "facing": "north" + } }, { + "id": 10160, "properties": { - "facing": "north", - "half": "upper", - "waterlogged": "false" - }, - "id": 18665 + "facing": "east" + } }, { + "id": 10161, "properties": { - "facing": "north", - "half": "lower", - "waterlogged": "true" - }, - "id": 18666 + "facing": "south" + } }, { + "id": 10162, "properties": { - "facing": "north", - "half": "lower", - "waterlogged": "false" - }, - "id": 18667, - "default": true + "facing": "west" + } }, { + "default": true, + "id": 10163, "properties": { - "facing": "south", - "half": "upper", - "waterlogged": "true" - }, - "id": 18668 + "facing": "up" + } }, { + "id": 10164, "properties": { - "facing": "south", - "half": "upper", - "waterlogged": "false" - }, - "id": 18669 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "waterlogged": "true" - }, - "id": 18670 - }, - { - "properties": { - "facing": "south", - "half": "lower", - "waterlogged": "false" - }, - "id": 18671 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "waterlogged": "true" - }, - "id": 18672 - }, - { - "properties": { - "facing": "west", - "half": "upper", - "waterlogged": "false" - }, - "id": 18673 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "waterlogged": "true" - }, - "id": 18674 - }, - { - "properties": { - "facing": "west", - "half": "lower", - "waterlogged": "false" - }, - "id": 18675 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "waterlogged": "true" - }, - "id": 18676 - }, - { - "properties": { - "facing": "east", - "half": "upper", - "waterlogged": "false" - }, - "id": 18677 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "waterlogged": "true" - }, - "id": 18678 - }, - { - "properties": { - "facing": "east", - "half": "lower", - "waterlogged": "false" - }, - "id": 18679 + "facing": "down" + } } ] }, - "minecraft:hanging_roots": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, + "minecraft:white_stained_glass": { "states": [ { - "properties": { - "waterlogged": "true" - }, - "id": 18680 - }, - { - "properties": { - "waterlogged": "false" - }, - "id": 18681, - "default": true + "default": true, + "id": 4404 } ] }, - "minecraft:rooted_dirt": { - "states": [ - { - "id": 18682, - "default": true - } - ] - }, - "minecraft:deepslate": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 18683 - }, - { - "properties": { - "axis": "y" - }, - "id": 18684, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 18685 - } - ] - }, - "minecraft:cobbled_deepslate": { - "states": [ - { - "id": 18686, - "default": true - } - ] - }, - "minecraft:cobbled_deepslate_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18687 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18688 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18689 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18690 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18691 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18692 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18693 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18694 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18695 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18696 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18697 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18698, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18699 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18700 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18701 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18702 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18703 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18704 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18705 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18706 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18707 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18708 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18709 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18710 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18711 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18712 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18713 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18714 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18715 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18716 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18717 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18718 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18719 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18720 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18721 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18722 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18723 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18724 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18725 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18726 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18727 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18728 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18729 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18730 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18731 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18732 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18733 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18734 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18735 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18736 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18737 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18738 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18739 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18740 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18741 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18742 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18743 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18744 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18745 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18746 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18747 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18748 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18749 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18750 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18751 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18752 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18753 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18754 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18755 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18756 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18757 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18758 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18759 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18760 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18761 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18762 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18763 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18764 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18765 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18766 - } - ] - }, - "minecraft:cobbled_deepslate_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18767 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18768 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18769 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18770, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18771 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18772 - } - ] - }, - "minecraft:cobbled_deepslate_wall": { + "minecraft:white_stained_glass_pane": { "properties": { "east": [ - "none", - "low", - "tall" + "true", + "false" ], "north": [ - "none", - "low", - "tall" + "true", + "false" ], "south": [ - "none", - "low", - "tall" - ], - "up": [ "true", "false" ], @@ -187565,3588 +214254,683 @@ "false" ], "west": [ - "none", - "low", - "tall" + "true", + "false" ] }, "states": [ { + "id": 7492, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 18773 + "west": "true" + } }, { + "id": 7493, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 18774 + "west": "false" + } }, { + "id": 7494, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18775 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18776, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18777 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18778 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18779 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18780 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18781 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18782 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18783 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18784 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18785 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18786 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18787 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18788 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18789 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18790 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18791 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18792 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18793 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18794 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18795 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18796 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18797 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18798 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18799 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18800 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18801 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18802 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18803 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18804 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18805 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18806 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18807 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18808 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18809 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18810 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18811 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18812 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18813 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18814 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18815 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18816 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18817 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18818 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18819 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18820 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18821 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18822 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18823 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18824 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18825 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18826 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18827 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18828 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18829 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18830 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18831 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18832 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18833 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18834 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18835 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18836 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18837 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18838 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18839 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18840 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18841 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18842 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18843 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18844 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18845 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18846 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18847 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18848 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18849 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18850 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18851 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18852 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18853 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18854 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18855 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18856 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18857 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18858 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18859 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18860 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18861 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18862 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18863 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18864 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18865 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18866 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18867 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18868 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18869 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18870 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18871 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18872 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18873 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18874 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18875 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18876 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18877 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18878 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18879 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18880 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18881 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18882 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18883 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18884 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18885 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18886 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18887 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18888 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18889 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18890 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18891 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18892 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18893 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18894 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18895 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18896 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18897 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18898 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18899 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18900 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18901 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18902 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18903 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18904 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18905 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18906 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18907 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18908 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18909 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18910 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18911 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18912 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18913 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18914 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18915 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18916 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18917 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18918 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18919 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18920 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18921 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18922 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18923 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18924 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18925 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18926 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18927 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18928 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18929 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18930 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18931 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18932 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18933 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18934 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18935 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18936 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18937 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18938 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18939 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18940 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18941 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18942 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18943 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18944 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18945 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18946 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18947 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18948 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18949 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18950 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18951 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18952 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18953 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18954 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18955 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18956 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18957 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18958 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18959 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18960 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18961 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18962 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18963 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18964 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18965 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18966 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18967 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18968 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18969 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18970 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18971 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18972 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18973 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18974 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18975 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18976 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18977 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18978 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18979 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18980 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18981 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18982 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18983 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18984 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18985 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18986 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18987 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18988 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18989 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18990 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18991 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18992 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18993 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18994 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18995 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18996 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18997 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18998 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18999 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19000 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19001 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19002 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19003 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19004 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19005 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19006 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19007 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19008 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19009 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19010 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19011 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19012 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19013 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19014 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19015 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19016 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19017 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19018 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19019 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19020 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19021 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19022 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19023 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19024 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19025 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19026 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19027 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19028 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19029 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19030 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19031 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19032 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19033 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19034 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 19035 + "west": "true" + } }, { + "id": 7495, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 19036 + "west": "false" + } }, { + "id": 7496, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 19037 + "west": "true" + } }, { + "id": 7497, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 19038 + "west": "false" + } }, { + "id": 7498, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19039 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19040 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19041 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19042 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19043 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19044 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19045 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19046 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19047 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19048 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19049 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19050 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19051 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19052 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19053 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19054 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19055 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19056 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19057 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19058 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 19059 + "west": "true" + } }, { + "id": 7499, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 19060 + "west": "false" + } }, { + "id": 7500, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 19061 + "west": "true" + } }, { + "id": 7501, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 19062 + "west": "false" + } }, { + "id": 7502, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19063 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19064 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 19065 + "west": "true" + } }, { + "id": 7503, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 19066 + "west": "false" + } }, { + "id": 7504, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 19067 + "west": "true" + } }, { + "id": 7505, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 19068 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19069 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19070 + "west": "false" + } }, { + "id": 7506, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 19071 + "west": "true" + } }, { + "id": 7507, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 19072 + "west": "false" + } }, { + "id": 7508, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 19073 + "west": "true" + } }, { + "id": 7509, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 19074 + "west": "false" + } }, { + "id": 7510, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19075 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19076 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 19077 + "west": "true" + } }, { + "id": 7511, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 19078 + "west": "false" + } }, { + "id": 7512, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 19079 + "west": "true" + } }, { + "id": 7513, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 19080 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19081 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19082 + "west": "false" + } }, { + "id": 7514, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 19083 + "west": "true" + } }, { + "id": 7515, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 19084 + "west": "false" + } }, { + "id": 7516, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 19085 + "west": "true" + } }, { + "id": 7517, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 19086 + "west": "false" + } }, { + "id": 7518, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19087 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19088 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 19089 + "west": "true" + } }, { + "id": 7519, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 19090 + "west": "false" + } }, { + "id": 7520, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 19091 + "west": "true" + } }, { + "id": 7521, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 19092 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19093 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19094 + "west": "false" + } }, { + "id": 7522, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 19095 + "west": "true" + } }, { + "default": true, + "id": 7523, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 19096 + "west": "false" + } } ] }, - "minecraft:polished_deepslate": { + "minecraft:white_terracotta": { "states": [ { - "id": 19097, - "default": true + "default": true, + "id": 7476 } ] }, - "minecraft:polished_deepslate_stairs": { + "minecraft:white_tulip": { + "states": [ + { + "default": true, + "id": 1673 + } + ] + }, + "minecraft:white_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8894, + "properties": { + "facing": "north" + } + }, + { + "id": 8895, + "properties": { + "facing": "south" + } + }, + { + "id": 8896, + "properties": { + "facing": "west" + } + }, + { + "id": 8897, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:white_wool": { + "states": [ + { + "default": true, + "id": 1638 + } + ] + }, + "minecraft:wither_rose": { + "states": [ + { + "default": true, + "id": 1677 + } + ] + }, + "minecraft:wither_skeleton_skull": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 7127, + "properties": { + "rotation": "0" + } + }, + { + "id": 7128, + "properties": { + "rotation": "1" + } + }, + { + "id": 7129, + "properties": { + "rotation": "2" + } + }, + { + "id": 7130, + "properties": { + "rotation": "3" + } + }, + { + "id": 7131, + "properties": { + "rotation": "4" + } + }, + { + "id": 7132, + "properties": { + "rotation": "5" + } + }, + { + "id": 7133, + "properties": { + "rotation": "6" + } + }, + { + "id": 7134, + "properties": { + "rotation": "7" + } + }, + { + "id": 7135, + "properties": { + "rotation": "8" + } + }, + { + "id": 7136, + "properties": { + "rotation": "9" + } + }, + { + "id": 7137, + "properties": { + "rotation": "10" + } + }, + { + "id": 7138, + "properties": { + "rotation": "11" + } + }, + { + "id": 7139, + "properties": { + "rotation": "12" + } + }, + { + "id": 7140, + "properties": { + "rotation": "13" + } + }, + { + "id": 7141, + "properties": { + "rotation": "14" + } + }, + { + "id": 7142, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:wither_skeleton_wall_skull": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7143, + "properties": { + "facing": "north" + } + }, + { + "id": 7144, + "properties": { + "facing": "south" + } + }, + { + "id": 7145, + "properties": { + "facing": "west" + } + }, + { + "id": 7146, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:yellow_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8702, + "properties": { + "rotation": "0" + } + }, + { + "id": 8703, + "properties": { + "rotation": "1" + } + }, + { + "id": 8704, + "properties": { + "rotation": "2" + } + }, + { + "id": 8705, + "properties": { + "rotation": "3" + } + }, + { + "id": 8706, + "properties": { + "rotation": "4" + } + }, + { + "id": 8707, + "properties": { + "rotation": "5" + } + }, + { + "id": 8708, + "properties": { + "rotation": "6" + } + }, + { + "id": 8709, + "properties": { + "rotation": "7" + } + }, + { + "id": 8710, + "properties": { + "rotation": "8" + } + }, + { + "id": 8711, + "properties": { + "rotation": "9" + } + }, + { + "id": 8712, + "properties": { + "rotation": "10" + } + }, + { + "id": 8713, + "properties": { + "rotation": "11" + } + }, + { + "id": 8714, + "properties": { + "rotation": "12" + } + }, + { + "id": 8715, + "properties": { + "rotation": "13" + } + }, + { + "id": 8716, + "properties": { + "rotation": "14" + } + }, + { + "id": 8717, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:yellow_bed": { "properties": { "facing": [ "north", @@ -191154,752 +214938,158 @@ "west", "east" ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ + "occupied": [ "true", "false" + ], + "part": [ + "head", + "foot" ] }, "states": [ { + "id": 1343, "properties": { "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19098 + "occupied": "true", + "part": "head" + } }, { + "id": 1344, "properties": { "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19099 + "occupied": "true", + "part": "foot" + } }, { + "id": 1345, "properties": { "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19100 + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1346, "properties": { "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19101 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19102 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19103 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19104 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19105 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19106 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19107 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19108 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19109, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19110 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19111 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19112 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19113 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19114 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19115 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19116 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19117 + "occupied": "false", + "part": "foot" + } }, { + "id": 1347, "properties": { "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19118 + "occupied": "true", + "part": "head" + } }, { + "id": 1348, "properties": { "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19119 + "occupied": "true", + "part": "foot" + } }, { + "id": 1349, "properties": { "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19120 + "occupied": "false", + "part": "head" + } }, { + "id": 1350, "properties": { "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19121 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19122 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19123 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19124 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19125 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19126 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19127 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19128 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19129 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19130 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19131 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19132 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19133 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19134 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19135 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19136 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19137 + "occupied": "false", + "part": "foot" + } }, { + "id": 1351, "properties": { "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19138 + "occupied": "true", + "part": "head" + } }, { + "id": 1352, "properties": { "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19139 + "occupied": "true", + "part": "foot" + } }, { + "id": 1353, "properties": { "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19140 + "occupied": "false", + "part": "head" + } }, { + "id": 1354, "properties": { "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19141 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19142 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19143 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19144 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19145 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19146 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19147 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19148 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19149 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19150 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19151 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19152 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19153 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19154 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19155 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19156 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19157 + "occupied": "false", + "part": "foot" + } }, { + "id": 1355, "properties": { "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19158 + "occupied": "true", + "part": "head" + } }, { + "id": 1356, "properties": { "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19159 + "occupied": "true", + "part": "foot" + } }, { + "id": 1357, "properties": { "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19160 + "occupied": "false", + "part": "head" + } }, { + "id": 1358, "properties": { "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19161 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19162 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19163 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19164 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19165 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19166 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19167 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19168 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19169 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19170 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19171 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19172 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19173 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19174 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19175 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19176 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19177 + "occupied": "false", + "part": "foot" + } } ] }, - "minecraft:polished_deepslate_slab": { + "minecraft:yellow_candle": { "properties": { - "type": [ - "top", - "bottom", - "double" + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" ], "waterlogged": [ "true", @@ -191908,68 +215098,290 @@ }, "states": [ { + "id": 18393, "properties": { - "type": "top", + "candles": "1", + "lit": "true", "waterlogged": "true" - }, - "id": 19178 + } }, { + "id": 18394, "properties": { - "type": "top", + "candles": "1", + "lit": "true", "waterlogged": "false" - }, - "id": 19179 + } }, { + "id": 18395, "properties": { - "type": "bottom", + "candles": "1", + "lit": "false", "waterlogged": "true" - }, - "id": 19180 + } }, { + "default": true, + "id": 18396, "properties": { - "type": "bottom", + "candles": "1", + "lit": "false", "waterlogged": "false" - }, - "id": 19181, - "default": true + } }, { + "id": 18397, "properties": { - "type": "double", + "candles": "2", + "lit": "true", "waterlogged": "true" - }, - "id": 19182 + } }, { + "id": 18398, "properties": { - "type": "double", + "candles": "2", + "lit": "true", "waterlogged": "false" - }, - "id": 19183 + } + }, + { + "id": 18399, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18400, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18401, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18402, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18403, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18404, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18405, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18406, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18407, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18408, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } } ] }, - "minecraft:polished_deepslate_wall": { + "minecraft:yellow_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18595, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18596, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:yellow_carpet": { + "states": [ + { + "default": true, + "id": 8611 + } + ] + }, + "minecraft:yellow_concrete": { + "states": [ + { + "default": true, + "id": 10323 + } + ] + }, + "minecraft:yellow_concrete_powder": { + "states": [ + { + "default": true, + "id": 10339 + } + ] + }, + "minecraft:yellow_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10271, + "properties": { + "facing": "north" + } + }, + { + "id": 10272, + "properties": { + "facing": "south" + } + }, + { + "id": 10273, + "properties": { + "facing": "west" + } + }, + { + "id": 10274, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:yellow_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10183, + "properties": { + "facing": "north" + } + }, + { + "id": 10184, + "properties": { + "facing": "east" + } + }, + { + "id": 10185, + "properties": { + "facing": "south" + } + }, + { + "id": 10186, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10187, + "properties": { + "facing": "up" + } + }, + { + "id": 10188, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:yellow_stained_glass": { + "states": [ + { + "default": true, + "id": 4408 + } + ] + }, + "minecraft:yellow_stained_glass_pane": { "properties": { "east": [ - "none", - "low", - "tall" + "true", + "false" ], "north": [ - "none", - "low", - "tall" + "true", + "false" ], "south": [ - "none", - "low", - "tall" - ], - "up": [ "true", "false" ], @@ -191978,12504 +215390,542 @@ "false" ], "west": [ - "none", - "low", - "tall" + "true", + "false" ] }, "states": [ { + "id": 7620, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 19184 + "west": "true" + } }, { + "id": 7621, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 19185 + "west": "false" + } }, { + "id": 7622, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19186 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19187, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19188 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19189 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19190 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19191 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19192 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19193 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19194 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19195 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19196 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19197 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19198 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19199 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19200 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19201 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19202 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19203 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19204 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19205 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19206 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19207 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19208 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19209 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19210 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19211 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19212 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19213 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19214 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19215 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19216 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19217 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19218 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19219 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19220 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19221 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19222 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19223 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19224 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19225 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19226 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19227 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19228 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19229 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19230 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19231 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19232 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19233 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19234 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19235 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19236 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19237 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19238 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19239 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19240 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19241 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19242 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19243 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19244 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19245 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19246 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19247 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19248 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19249 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19250 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19251 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19252 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19253 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19254 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19255 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19256 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19257 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19258 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19259 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19260 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19261 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19262 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19263 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19264 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19265 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19266 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19267 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19268 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19269 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19270 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19271 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19272 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19273 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19274 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19275 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19276 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19277 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19278 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19279 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19280 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19281 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19282 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19283 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19284 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19285 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19286 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19287 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19288 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19289 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19290 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19291 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19292 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19293 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19294 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19295 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19296 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19297 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19298 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19299 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19300 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19301 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19302 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19303 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19304 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19305 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19306 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19307 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19308 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19309 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19310 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19311 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19312 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19313 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19314 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19315 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19316 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19317 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19318 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19319 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19320 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19321 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19322 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19323 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19324 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19325 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19326 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19327 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19328 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19329 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19330 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19331 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19332 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19333 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19334 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19335 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19336 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19337 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19338 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19339 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19340 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19341 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19342 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19343 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19344 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19345 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19346 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19347 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19348 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19349 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19350 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19351 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19352 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19353 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19354 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19355 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19356 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19357 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19358 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19359 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19360 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19361 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19362 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19363 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19364 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19365 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19366 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19367 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19368 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19369 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19370 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19371 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19372 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19373 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19374 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19375 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19376 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19377 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19378 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19379 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19380 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19381 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19382 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19383 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19384 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19385 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19386 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19387 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19388 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19389 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19390 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19391 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19392 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19393 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19394 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19395 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19396 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19397 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19398 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19399 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19400 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19401 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19402 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19403 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19404 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19405 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19406 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19407 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19408 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19409 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19410 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19411 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19412 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19413 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19414 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19415 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19416 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19417 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19418 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19419 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19420 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19421 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19422 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19423 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19424 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19425 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19426 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19427 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19428 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19429 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19430 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19431 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19432 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19433 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19434 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19435 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19436 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19437 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19438 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19439 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19440 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19441 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19442 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19443 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19444 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19445 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 19446 + "west": "true" + } }, { + "id": 7623, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 19447 + "west": "false" + } }, { + "id": 7624, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 19448 + "west": "true" + } }, { + "id": 7625, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 19449 + "west": "false" + } }, { + "id": 7626, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19450 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19451 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19452 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19453 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19454 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19455 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19456 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19457 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19458 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19459 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19460 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19461 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19462 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19463 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19464 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19465 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19466 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19467 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19468 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19469 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 19470 + "west": "true" + } }, { + "id": 7627, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 19471 + "west": "false" + } }, { + "id": 7628, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 19472 + "west": "true" + } }, { + "id": 7629, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 19473 + "west": "false" + } }, { + "id": 7630, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19474 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19475 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 19476 + "west": "true" + } }, { + "id": 7631, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 19477 + "west": "false" + } }, { + "id": 7632, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 19478 + "west": "true" + } }, { + "id": 7633, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 19479 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19480 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19481 + "west": "false" + } }, { + "id": 7634, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 19482 + "west": "true" + } }, { + "id": 7635, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 19483 + "west": "false" + } }, { + "id": 7636, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 19484 + "west": "true" + } }, { + "id": 7637, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 19485 + "west": "false" + } }, { + "id": 7638, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19486 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19487 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 19488 + "west": "true" + } }, { + "id": 7639, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 19489 + "west": "false" + } }, { + "id": 7640, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 19490 + "west": "true" + } }, { + "id": 7641, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 19491 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19492 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19493 + "west": "false" + } }, { + "id": 7642, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 19494 + "west": "true" + } }, { + "id": 7643, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 19495 + "west": "false" + } }, { + "id": 7644, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 19496 + "west": "true" + } }, { + "id": 7645, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 19497 + "west": "false" + } }, { + "id": 7646, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19498 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19499 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 19500 + "west": "true" + } }, { + "id": 7647, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 19501 + "west": "false" + } }, { + "id": 7648, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 19502 + "west": "true" + } }, { + "id": 7649, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 19503 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19504 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19505 + "west": "false" + } }, { + "id": 7650, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 19506 + "west": "true" + } }, { + "default": true, + "id": 7651, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 19507 + "west": "false" + } } ] }, - "minecraft:deepslate_tiles": { + "minecraft:yellow_terracotta": { "states": [ { - "id": 19508, - "default": true + "default": true, + "id": 7480 } ] }, - "minecraft:deepslate_tile_stairs": { + "minecraft:yellow_wall_banner": { "properties": { "facing": [ "north", "south", "west", "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" ] }, "states": [ { + "default": true, + "id": 8910, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19509 + "facing": "north" + } }, { + "id": 8911, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19510 + "facing": "south" + } }, { + "id": 8912, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19511 + "facing": "west" + } }, { + "id": 8913, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19512 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19513 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19514 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19515 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19516 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19517 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19518 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19519 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19520, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19521 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19522 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19523 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19524 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19525 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19526 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19527 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19528 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19529 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19530 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19531 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19532 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19533 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19534 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19535 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19536 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19537 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19538 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19539 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19540 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19541 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19542 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19543 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19544 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19545 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19546 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19547 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19548 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19549 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19550 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19551 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19552 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19553 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19554 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19555 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19556 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19557 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19558 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19559 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19560 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19561 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19562 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19563 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19564 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19565 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19566 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19567 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19568 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19569 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19570 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19571 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19572 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19573 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19574 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19575 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19576 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19577 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19578 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19579 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19580 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19581 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19582 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19583 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19584 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19585 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19586 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19587 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19588 + "facing": "east" + } } ] }, - "minecraft:deepslate_tile_slab": { + "minecraft:yellow_wool": { + "states": [ + { + "default": true, + "id": 1642 + } + ] + }, + "minecraft:zombie_head": { "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] }, "states": [ { + "default": true, + "id": 7147, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 19589 + "rotation": "0" + } }, { + "id": 7148, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 19590 + "rotation": "1" + } }, { + "id": 7149, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 19591 + "rotation": "2" + } }, { + "id": 7150, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 19592, - "default": true + "rotation": "3" + } }, { + "id": 7151, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 19593 + "rotation": "4" + } }, { + "id": 7152, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 19594 + "rotation": "5" + } + }, + { + "id": 7153, + "properties": { + "rotation": "6" + } + }, + { + "id": 7154, + "properties": { + "rotation": "7" + } + }, + { + "id": 7155, + "properties": { + "rotation": "8" + } + }, + { + "id": 7156, + "properties": { + "rotation": "9" + } + }, + { + "id": 7157, + "properties": { + "rotation": "10" + } + }, + { + "id": 7158, + "properties": { + "rotation": "11" + } + }, + { + "id": 7159, + "properties": { + "rotation": "12" + } + }, + { + "id": 7160, + "properties": { + "rotation": "13" + } + }, + { + "id": 7161, + "properties": { + "rotation": "14" + } + }, + { + "id": 7162, + "properties": { + "rotation": "15" + } } ] }, - "minecraft:deepslate_tile_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19595 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19596 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19597 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19598, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19599 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19600 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19601 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19602 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19603 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19604 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19605 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19606 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19607 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19608 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19609 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19610 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19611 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19612 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19613 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19614 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19615 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19616 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19617 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19618 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19619 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19620 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19621 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19622 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19623 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19624 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19625 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19626 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19627 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19628 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19629 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19630 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19631 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19632 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19633 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19634 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19635 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19636 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19637 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19638 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19639 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19640 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19641 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19642 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19643 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19644 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19645 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19646 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19647 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19648 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19649 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19650 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19651 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19652 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19653 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19654 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19655 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19656 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19657 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19658 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19659 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19660 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19661 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19662 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19663 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19664 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19665 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19666 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19667 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19668 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19669 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19670 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19671 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19672 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19673 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19674 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19675 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19676 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19677 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19678 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19679 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19680 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19681 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19682 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19683 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19684 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19685 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19686 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19687 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19688 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19689 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19690 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19691 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19692 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19693 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19694 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19695 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19696 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19697 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19698 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19699 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19700 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19701 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19702 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19703 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19704 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19705 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19706 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19707 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19708 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19709 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19710 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19711 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19712 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19713 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19714 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19715 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19716 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19717 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19718 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19719 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19720 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19721 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19722 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19723 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19724 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19725 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19726 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19727 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19728 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19729 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19730 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19731 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19732 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19733 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19734 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19735 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19736 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19737 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19738 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19739 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19740 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19741 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19742 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19743 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19744 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19745 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19746 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19747 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19748 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19749 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19750 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19751 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19752 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19753 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19754 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19755 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19756 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19757 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19758 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19759 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19760 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19761 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19762 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19763 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19764 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19765 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19766 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19767 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19768 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19769 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19770 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19771 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19772 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19773 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19774 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19775 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19776 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19777 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19778 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19779 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19780 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19781 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19782 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19783 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19784 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19785 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19786 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19787 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19788 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19789 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19790 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19791 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19792 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19793 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19794 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19795 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19796 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19797 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19798 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19799 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19800 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19801 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19802 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19803 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19804 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19805 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19806 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19807 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19808 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19809 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19810 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19811 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19812 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19813 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19814 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19815 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19816 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19817 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19818 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19819 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19820 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19821 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19822 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19823 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19824 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19825 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19826 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19827 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19828 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19829 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19830 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19831 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19832 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19833 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19834 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19835 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19836 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19837 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19838 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19839 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19840 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19841 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19842 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19843 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19844 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19845 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19846 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19847 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19848 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19849 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19850 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19851 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19852 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19853 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19854 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19855 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19856 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19857 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19858 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19859 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19860 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19861 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19862 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19863 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19864 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19865 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19866 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19867 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19868 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19869 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19870 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19871 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19872 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19873 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19874 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19875 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19876 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19877 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19878 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19879 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19880 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19881 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19882 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19883 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19884 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19885 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19886 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19887 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19888 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19889 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19890 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19891 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19892 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19893 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19894 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19895 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19896 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19897 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19898 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19899 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19900 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19901 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19902 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19903 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19904 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19905 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19906 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19907 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19908 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19909 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19910 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19911 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19912 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19913 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19914 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19915 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19916 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19917 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19918 - } - ] - }, - "minecraft:deepslate_bricks": { - "states": [ - { - "id": 19919, - "default": true - } - ] - }, - "minecraft:deepslate_brick_stairs": { + "minecraft:zombie_wall_head": { "properties": { "facing": [ "north", "south", "west", "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" ] }, "states": [ { + "default": true, + "id": 7163, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19920 + "facing": "north" + } }, { + "id": 7164, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19921 + "facing": "south" + } }, { + "id": 7165, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19922 + "facing": "west" + } }, { + "id": 7166, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19923 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19924 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19925 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19926 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19927 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19928 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19929 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19930 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19931, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19932 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19933 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19934 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19935 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19936 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19937 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19938 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19939 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19940 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19941 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19942 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19943 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19944 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19945 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19946 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19947 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19948 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19949 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19950 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19951 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19952 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19953 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19954 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19955 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19956 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19957 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19958 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19959 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19960 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19961 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19962 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19963 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19964 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19965 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19966 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19967 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19968 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19969 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19970 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19971 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19972 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19973 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19974 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19975 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19976 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19977 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19978 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19979 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19980 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19981 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19982 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19983 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19984 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19985 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19986 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19987 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19988 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19989 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19990 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19991 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19992 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19993 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19994 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19995 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19996 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19997 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19998 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19999 - } - ] - }, - "minecraft:deepslate_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 20000 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 20001 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 20002 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 20003, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 20004 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 20005 - } - ] - }, - "minecraft:deepslate_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20006 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20007 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20008 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20009, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20010 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20011 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20012 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20013 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20014 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20015 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20016 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20017 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20018 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20019 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20020 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20021 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20022 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20023 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20024 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20025 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20026 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20027 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20028 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20029 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20030 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20031 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20032 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20033 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20034 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20035 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20036 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20037 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20038 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20039 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20040 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20041 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20042 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20043 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20044 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20045 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20046 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20047 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20048 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20049 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20050 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20051 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20052 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20053 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20054 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20055 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20056 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20057 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20058 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20059 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20060 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20061 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20062 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20063 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20064 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20065 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20066 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20067 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20068 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20069 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20070 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20071 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20072 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20073 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20074 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20075 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20076 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20077 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20078 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20079 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20080 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20081 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20082 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20083 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20084 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20085 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20086 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20087 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20088 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20089 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20090 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20091 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20092 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20093 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20094 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20095 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20096 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20097 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20098 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20099 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20100 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20101 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20102 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20103 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20104 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20105 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20106 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20107 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20108 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20109 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20110 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20111 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20112 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20113 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20114 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20115 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20116 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20117 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20118 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20119 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20120 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20121 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20122 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20123 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20124 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20125 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20126 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20127 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20128 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20129 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20130 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20131 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20132 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20133 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20134 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20135 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20136 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20137 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20138 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20139 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20140 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20141 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20142 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20143 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20144 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20145 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20146 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20147 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20148 - }, - { - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20149 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20150 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20151 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20152 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20153 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20154 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20155 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20156 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20157 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20158 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20159 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20160 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20161 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20162 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20163 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20164 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20165 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20166 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20167 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20168 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20169 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20170 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20171 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20172 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20173 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20174 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20175 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20176 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20177 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20178 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20179 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20180 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20181 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20182 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20183 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20184 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20185 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20186 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20187 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20188 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20189 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20190 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20191 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20192 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20193 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20194 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20195 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20196 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20197 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20198 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20199 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20200 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20201 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20202 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20203 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20204 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20205 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20206 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20207 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20208 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20209 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20210 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20211 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20212 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20213 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20214 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20215 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20216 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20217 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20218 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20219 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20220 - }, - { - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20221 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20222 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20223 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20224 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20225 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20226 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20227 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20228 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20229 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20230 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20231 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20232 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20233 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20234 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20235 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20236 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20237 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20238 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20239 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20240 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20241 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20242 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20243 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20244 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20245 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20246 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20247 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20248 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20249 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20250 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20251 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20252 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20253 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20254 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20255 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20256 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20257 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20258 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20259 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20260 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20261 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20262 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20263 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20264 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20265 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20266 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20267 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20268 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20269 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20270 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20271 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20272 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20273 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20274 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20275 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20276 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20277 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20278 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20279 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20280 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20281 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20282 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20283 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20284 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20285 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20286 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20287 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20288 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20289 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20290 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20291 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20292 - }, - { - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20293 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20294 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20295 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20296 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20297 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20298 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20299 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20300 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20301 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20302 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20303 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20304 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20305 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20306 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20307 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20308 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20309 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20310 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20311 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20312 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20313 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20314 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20315 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20316 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20317 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20318 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20319 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20320 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20321 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20322 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20323 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20324 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20325 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20326 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20327 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20328 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20329 - } - ] - }, - "minecraft:chiseled_deepslate": { - "states": [ - { - "id": 20330, - "default": true - } - ] - }, - "minecraft:cracked_deepslate_bricks": { - "states": [ - { - "id": 20331, - "default": true - } - ] - }, - "minecraft:cracked_deepslate_tiles": { - "states": [ - { - "id": 20332, - "default": true - } - ] - }, - "minecraft:infested_deepslate": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 20333 - }, - { - "properties": { - "axis": "y" - }, - "id": 20334, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 20335 - } - ] - }, - "minecraft:smooth_basalt": { - "states": [ - { - "id": 20336, - "default": true - } - ] - }, - "minecraft:raw_iron_block": { - "states": [ - { - "id": 20337, - "default": true - } - ] - }, - "minecraft:raw_copper_block": { - "states": [ - { - "id": 20338, - "default": true - } - ] - }, - "minecraft:raw_gold_block": { - "states": [ - { - "id": 20339, - "default": true - } - ] - }, - "minecraft:potted_azalea_bush": { - "states": [ - { - "id": 20340, - "default": true - } - ] - }, - "minecraft:potted_flowering_azalea_bush": { - "states": [ - { - "id": 20341, - "default": true + "facing": "east" + } } ] } diff --git a/src/main/resources/dimension_registry.json b/src/main/resources/dimension_registry.json index 5356990..0818dbf 100644 --- a/src/main/resources/dimension_registry.json +++ b/src/main/resources/dimension_registry.json @@ -1,322 +1,474 @@ { - "type":"CompoundTag", - "value":{ - "minecraft:dimension_type":{ - "type":"CompoundTag", - "value":{ - "type":{ - "type":"StringTag", - "value":"minecraft:dimension_type" + "type": "CompoundTag", + "value": { + "minecraft:chat_type": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:chat_type" }, - "value":{ - "type":"ListTag", - "value":{ - "type":"CompoundTag", - "list":[ + "value": { + "type": "ListTag", + "value": { + "type": "CompoundTag", + "list": [ { - "name":{ - "type":"StringTag", - "value":"minecraft:overworld" + "name": { + "type": "StringTag", + "value": "minecraft:chat" }, - "id":{ - "type":"IntTag", - "value":0 + "id": { + "type": "IntTag", + "value": 0 }, - "element":{ - "type":"CompoundTag", - "value":{ - "piglin_safe":{ - "type":"ByteTag", - "value":0 + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": { + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.text" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } }, - "natural":{ - "type":"ByteTag", - "value":1 - }, - "ambient_light":{ - "type":"FloatTag", - "value":0.0 - }, - "infiniburn":{ - "type":"StringTag", - "value":"#minecraft:infiniburn_overworld" - }, - "respawn_anchor_works":{ - "type":"ByteTag", - "value":0 - }, - "has_skylight":{ - "type":"ByteTag", - "value":1 - }, - "bed_works":{ - "type":"ByteTag", - "value":1 - }, - "effects":{ - "type":"StringTag", - "value":"minecraft:overworld" - }, - "has_raids":{ - "type":"ByteTag", - "value":1 - }, - "logical_height":{ - "type":"IntTag", - "value":256 - }, - "coordinate_scale":{ - "type":"DoubleTag", - "value":1.0 - }, - "min_y":{ - "type":"IntTag", - "value":0 - }, - "ultrawarm":{ - "type":"ByteTag", - "value":0 - }, - "has_ceiling":{ - "type":"ByteTag", - "value":0 - }, - "height":{ - "type":"IntTag", - "value":256 + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "chat" + }, + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.text.narrate" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:overworld_caves" + "name": { + "type": "StringTag", + "value": "minecraft:system" }, - "id":{ - "type":"IntTag", - "value":1 + "id": { + "type": "IntTag", + "value": 1 }, - "element":{ - "type":"CompoundTag", - "value":{ - "piglin_safe":{ - "type":"ByteTag", - "value":0 + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": {} }, - "natural":{ - "type":"ByteTag", - "value":1 - }, - "ambient_light":{ - "type":"FloatTag", - "value":0.0 - }, - "infiniburn":{ - "type":"StringTag", - "value":"#minecraft:infiniburn_overworld" - }, - "respawn_anchor_works":{ - "type":"ByteTag", - "value":0 - }, - "has_skylight":{ - "type":"ByteTag", - "value":1 - }, - "bed_works":{ - "type":"ByteTag", - "value":1 - }, - "effects":{ - "type":"StringTag", - "value":"minecraft:overworld" - }, - "has_raids":{ - "type":"ByteTag", - "value":1 - }, - "logical_height":{ - "type":"IntTag", - "value":256 - }, - "coordinate_scale":{ - "type":"DoubleTag", - "value":1.0 - }, - "min_y":{ - "type":"IntTag", - "value":0 - }, - "ultrawarm":{ - "type":"ByteTag", - "value":0 - }, - "has_ceiling":{ - "type":"ByteTag", - "value":1 - }, - "height":{ - "type":"IntTag", - "value":256 + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "system" + } + } } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:the_nether" + "name": { + "type": "StringTag", + "value": "minecraft:game_info" }, - "id":{ - "type":"IntTag", - "value":2 + "id": { + "type": "IntTag", + "value": 2 }, - "element":{ - "type":"CompoundTag", - "value":{ - "piglin_safe":{ - "type":"ByteTag", - "value":1 - }, - "natural":{ - "type":"ByteTag", - "value":0 - }, - "ambient_light":{ - "type":"FloatTag", - "value":0.1 - }, - "infiniburn":{ - "type":"StringTag", - "value":"#minecraft:infiniburn_nether" - }, - "respawn_anchor_works":{ - "type":"ByteTag", - "value":1 - }, - "has_skylight":{ - "type":"ByteTag", - "value":0 - }, - "bed_works":{ - "type":"ByteTag", - "value":0 - }, - "effects":{ - "type":"StringTag", - "value":"minecraft:the_nether" - }, - "fixed_time":{ - "type":"LongTag", - "value":18000 - }, - "has_raids":{ - "type":"ByteTag", - "value":0 - }, - "logical_height":{ - "type":"IntTag", - "value":128 - }, - "coordinate_scale":{ - "type":"DoubleTag", - "value":8.0 - }, - "min_y":{ - "type":"IntTag", - "value":0 - }, - "ultrawarm":{ - "type":"ByteTag", - "value":1 - }, - "has_ceiling":{ - "type":"ByteTag", - "value":1 - }, - "height":{ - "type":"IntTag", - "value":256 + "element": { + "type": "CompoundTag", + "value": { + "overlay": { + "type": "CompoundTag", + "value": {} } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:the_end" + "name": { + "type": "StringTag", + "value": "minecraft:say_command" }, - "id":{ - "type":"IntTag", - "value":3 + "id": { + "type": "IntTag", + "value": 3 }, - "element":{ - "type":"CompoundTag", - "value":{ - "piglin_safe":{ - "type":"ByteTag", - "value":0 + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": { + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.announcement" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } }, - "natural":{ - "type":"ByteTag", - "value":0 + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "chat" + }, + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.text.narrate" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:msg_command" + }, + "id": { + "type": "IntTag", + "value": 4 + }, + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": { + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "commands.message.display.incoming" + }, + "style": { + "type": "CompoundTag", + "value": { + "color": { + "type": "StringTag", + "value": "gray" + }, + "italic": { + "type": "ByteTag", + "value": 1 + } + } + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } }, - "ambient_light":{ - "type":"FloatTag", - "value":0.0 + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "chat" + }, + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.text.narrate" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:team_msg_command" + }, + "id": { + "type": "IntTag", + "value": 5 + }, + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": { + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.team.text" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "team_name", + "sender", + "content" + ] + } + } + } + } + } }, - "infiniburn":{ - "type":"StringTag", - "value":"#minecraft:infiniburn_end" + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "chat" + }, + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.text.narrate" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:emote_command" + }, + "id": { + "type": "IntTag", + "value": 6 + }, + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": { + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.emote" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } }, - "respawn_anchor_works":{ - "type":"ByteTag", - "value":0 + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "chat" + }, + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.emote" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:tellraw_command" + }, + "id": { + "type": "IntTag", + "value": 7 + }, + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": {} }, - "has_skylight":{ - "type":"ByteTag", - "value":0 - }, - "bed_works":{ - "type":"ByteTag", - "value":0 - }, - "effects":{ - "type":"StringTag", - "value":"minecraft:the_end" - }, - "fixed_time":{ - "type":"LongTag", - "value":6000 - }, - "has_raids":{ - "type":"ByteTag", - "value":1 - }, - "logical_height":{ - "type":"IntTag", - "value":256 - }, - "coordinate_scale":{ - "type":"DoubleTag", - "value":1.0 - }, - "min_y":{ - "type":"IntTag", - "value":0 - }, - "ultrawarm":{ - "type":"ByteTag", - "value":0 - }, - "has_ceiling":{ - "type":"ByteTag", - "value":0 - }, - "height":{ - "type":"IntTag", - "value":256 + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "chat" + } + } } } } @@ -326,4941 +478,5527 @@ } } }, - "minecraft:worldgen/biome":{ - "type":"CompoundTag", - "value":{ - "type":{ - "type":"StringTag", - "value":"minecraft:worldgen/biome" + "minecraft:dimension_type": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:dimension_type" }, - "value":{ - "type":"ListTag", - "value":{ - "type":"CompoundTag", - "list":[ + "value": { + "type": "ListTag", + "value": { + "type": "CompoundTag", + "list": [ { - "name":{ - "type":"StringTag", - "value":"minecraft:the_void" + "name": { + "type": "StringTag", + "value": "minecraft:overworld" }, - "id":{ - "type":"IntTag", - "value":0 + "id": { + "type": "IntTag", + "value": 0 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "piglin_safe": { + "type": "ByteTag", + "value": 0 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "natural": { + "type": "ByteTag", + "value": 1 }, - "downfall":{ - "type":"FloatTag", - "value":0.5 + "ambient_light": { + "type": "FloatTag", + "value": 0 }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "monster_spawn_block_light_limit": { + "type": "IntTag", + "value": 0 + }, + "infiniburn": { + "type": "StringTag", + "value": "#minecraft:infiniburn_overworld" + }, + "respawn_anchor_works": { + "type": "ByteTag", + "value": 0 + }, + "has_skylight": { + "type": "ByteTag", + "value": 1 + }, + "bed_works": { + "type": "ByteTag", + "value": 1 + }, + "effects": { + "type": "StringTag", + "value": "minecraft:overworld" + }, + "has_raids": { + "type": "ByteTag", + "value": 1 + }, + "logical_height": { + "type": "IntTag", + "value": 256 + }, + "coordinate_scale": { + "type": "DoubleTag", + "value": 1 + }, + "monster_spawn_light_level": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:uniform" }, - "sky_color":{ - "type":"IntTag", - "value":8103167 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "value": { + "type": "CompoundTag", + "value": { + "max_inclusive": { + "type": "IntTag", + "value": 7 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_inclusive": { + "type": "IntTag", + "value": 0 } } } } }, - "category":{ - "type":"StringTag", - "value":"none" + "min_y": { + "type": "IntTag", + "value": 0 + }, + "ultrawarm": { + "type": "ByteTag", + "value": 0 + }, + "has_ceiling": { + "type": "ByteTag", + "value": 0 + }, + "height": { + "type": "IntTag", + "value": 256 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:plains" + "name": { + "type": "StringTag", + "value": "minecraft:the_nether" }, - "id":{ - "type":"IntTag", - "value":1 + "id": { + "type": "IntTag", + "value": 1 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.8 + "element": { + "type": "CompoundTag", + "value": { + "piglin_safe": { + "type": "ByteTag", + "value": 1 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "natural": { + "type": "ByteTag", + "value": 0 }, - "downfall":{ - "type":"FloatTag", - "value":0.4 + "ambient_light": { + "type": "FloatTag", + "value": 0.1 }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "monster_spawn_block_light_limit": { + "type": "IntTag", + "value": 15 + }, + "infiniburn": { + "type": "StringTag", + "value": "#minecraft:infiniburn_nether" + }, + "respawn_anchor_works": { + "type": "ByteTag", + "value": 1 + }, + "has_skylight": { + "type": "ByteTag", + "value": 0 + }, + "bed_works": { + "type": "ByteTag", + "value": 0 + }, + "effects": { + "type": "StringTag", + "value": "minecraft:the_nether" + }, + "fixed_time": { + "type": "LongTag", + "value": 18000 + }, + "has_raids": { + "type": "ByteTag", + "value": 0 + }, + "logical_height": { + "type": "IntTag", + "value": 128 + }, + "coordinate_scale": { + "type": "DoubleTag", + "value": 8 + }, + "monster_spawn_light_level": { + "type": "IntTag", + "value": 11 + }, + "min_y": { + "type": "IntTag", + "value": 0 + }, + "ultrawarm": { + "type": "ByteTag", + "value": 1 + }, + "has_ceiling": { + "type": "ByteTag", + "value": 1 + }, + "height": { + "type": "IntTag", + "value": 256 + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:the_end" + }, + "id": { + "type": "IntTag", + "value": 2 + }, + "element": { + "type": "CompoundTag", + "value": { + "piglin_safe": { + "type": "ByteTag", + "value": 0 + }, + "natural": { + "type": "ByteTag", + "value": 0 + }, + "ambient_light": { + "type": "FloatTag", + "value": 0 + }, + "monster_spawn_block_light_limit": { + "type": "IntTag", + "value": 0 + }, + "infiniburn": { + "type": "StringTag", + "value": "#minecraft:infiniburn_end" + }, + "respawn_anchor_works": { + "type": "ByteTag", + "value": 0 + }, + "has_skylight": { + "type": "ByteTag", + "value": 0 + }, + "bed_works": { + "type": "ByteTag", + "value": 0 + }, + "effects": { + "type": "StringTag", + "value": "minecraft:the_end" + }, + "fixed_time": { + "type": "LongTag", + "value": 6000 + }, + "has_raids": { + "type": "ByteTag", + "value": 1 + }, + "logical_height": { + "type": "IntTag", + "value": 256 + }, + "coordinate_scale": { + "type": "DoubleTag", + "value": 1 + }, + "monster_spawn_light_level": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:uniform" }, - "sky_color":{ - "type":"IntTag", - "value":7907327 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "value": { + "type": "CompoundTag", + "value": { + "max_inclusive": { + "type": "IntTag", + "value": 7 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_inclusive": { + "type": "IntTag", + "value": 0 } } } } }, - "category":{ - "type":"StringTag", - "value":"plains" + "min_y": { + "type": "IntTag", + "value": 0 + }, + "ultrawarm": { + "type": "ByteTag", + "value": 0 + }, + "has_ceiling": { + "type": "ByteTag", + "value": 0 + }, + "height": { + "type": "IntTag", + "value": 256 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:sunflower_plains" + "name": { + "type": "StringTag", + "value": "minecraft:overworld_caves" }, - "id":{ - "type":"IntTag", - "value":2 + "id": { + "type": "IntTag", + "value": 3 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.8 + "element": { + "type": "CompoundTag", + "value": { + "piglin_safe": { + "type": "ByteTag", + "value": 0 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "natural": { + "type": "ByteTag", + "value": 1 }, - "downfall":{ - "type":"FloatTag", - "value":0.4 + "ambient_light": { + "type": "FloatTag", + "value": 0 }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "monster_spawn_block_light_limit": { + "type": "IntTag", + "value": 0 + }, + "infiniburn": { + "type": "StringTag", + "value": "#minecraft:infiniburn_overworld" + }, + "respawn_anchor_works": { + "type": "ByteTag", + "value": 0 + }, + "has_skylight": { + "type": "ByteTag", + "value": 1 + }, + "bed_works": { + "type": "ByteTag", + "value": 1 + }, + "effects": { + "type": "StringTag", + "value": "minecraft:overworld" + }, + "has_raids": { + "type": "ByteTag", + "value": 1 + }, + "logical_height": { + "type": "IntTag", + "value": 256 + }, + "coordinate_scale": { + "type": "DoubleTag", + "value": 1 + }, + "monster_spawn_light_level": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:uniform" }, - "sky_color":{ - "type":"IntTag", - "value":7907327 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "value": { + "type": "CompoundTag", + "value": { + "max_inclusive": { + "type": "IntTag", + "value": 7 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_inclusive": { + "type": "IntTag", + "value": 0 } } } } }, - "category":{ - "type":"StringTag", - "value":"plains" + "min_y": { + "type": "IntTag", + "value": 0 + }, + "ultrawarm": { + "type": "ByteTag", + "value": 0 + }, + "has_ceiling": { + "type": "ByteTag", + "value": 1 + }, + "height": { + "type": "IntTag", + "value": 256 } } } - }, + } + ] + } + } + } + }, + "minecraft:worldgen/biome": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:worldgen/biome" + }, + "value": { + "type": "ListTag", + "value": { + "type": "CompoundTag", + "list": [ { - "name":{ - "type":"StringTag", - "value":"minecraft:snowy_plains" + "name": { + "type": "StringTag", + "value": "minecraft:the_void" }, - "id":{ - "type":"IntTag", - "value":3 + "id": { + "type": "IntTag", + "value": 0 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"snow" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":8364543 + "sky_color": { + "type": "IntTag", + "value": 8103167 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"icy" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:ice_spikes" + "name": { + "type": "StringTag", + "value": "minecraft:plains" }, - "id":{ - "type":"IntTag", - "value":4 + "id": { + "type": "IntTag", + "value": 1 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 }, - "precipitation":{ - "type":"StringTag", - "value":"snow" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":8364543 + "sky_color": { + "type": "IntTag", + "value": 7907327 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"icy" + "downfall": { + "type": "FloatTag", + "value": 0.4 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:desert" + "name": { + "type": "StringTag", + "value": "minecraft:sunflower_plains" }, - "id":{ - "type":"IntTag", - "value":5 + "id": { + "type": "IntTag", + "value": 2 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":7254527 + "sky_color": { + "type": "IntTag", + "value": 7907327 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"desert" + "downfall": { + "type": "FloatTag", + "value": 0.4 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:swamp" + "name": { + "type": "StringTag", + "value": "minecraft:snowy_plains" }, - "id":{ - "type":"IntTag", - "value":6 + "id": { + "type": "IntTag", + "value": 3 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.8 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "snow" }, - "downfall":{ - "type":"FloatTag", - "value":0.9 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "grass_color_modifier":{ - "type":"StringTag", - "value":"swamp" + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":7907327 + "sky_color": { + "type": "IntTag", + "value": 8364543 }, - "water_fog_color":{ - "type":"IntTag", - "value":2302743 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "foliage_color":{ - "type":"IntTag", - "value":6975545 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "water_color":{ - "type":"IntTag", - "value":6388580 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"swamp" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:forest" + "name": { + "type": "StringTag", + "value": "minecraft:ice_spikes" }, - "id":{ - "type":"IntTag", - "value":7 + "id": { + "type": "IntTag", + "value": 4 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.7 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "snow" }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":7972607 + "sky_color": { + "type": "IntTag", + "value": 8364543 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"forest" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:flower_forest" + "name": { + "type": "StringTag", + "value": "minecraft:desert" }, - "id":{ - "type":"IntTag", - "value":8 + "id": { + "type": "IntTag", + "value": 5 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.7 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":7972607 + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"forest" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:birch_forest" + "name": { + "type": "StringTag", + "value": "minecraft:swamp" }, - "id":{ - "type":"IntTag", - "value":9 + "id": { + "type": "IntTag", + "value": 6 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.6 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.6 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "grass_color_modifier": { + "type": "StringTag", + "value": "swamp" }, - "sky_color":{ - "type":"IntTag", - "value":8037887 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.swamp" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "sky_color": { + "type": "IntTag", + "value": 7907327 + }, + "foliage_color": { + "type": "IntTag", + "value": 6975545 + }, + "water_fog_color": { + "type": "IntTag", + "value": 2302743 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 6388580 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"forest" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:dark_forest" + "name": { + "type": "StringTag", + "value": "minecraft:mangrove_swamp" }, - "id":{ - "type":"IntTag", - "value":10 + "id": { + "type": "IntTag", + "value": 7 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.7 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "grass_color_modifier":{ - "type":"StringTag", - "value":"dark_forest" + "effects": { + "type": "CompoundTag", + "value": { + "grass_color_modifier": { + "type": "StringTag", + "value": "swamp" }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7972607 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.swamp" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "sky_color": { + "type": "IntTag", + "value": 7907327 + }, + "foliage_color": { + "type": "IntTag", + "value": 9285927 + }, + "water_fog_color": { + "type": "IntTag", + "value": 5077600 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 3832426 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"forest" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:old_growth_birch_forest" + "name": { + "type": "StringTag", + "value": "minecraft:forest" }, - "id":{ - "type":"IntTag", - "value":11 + "id": { + "type": "IntTag", + "value": 8 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.6 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.7 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.6 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8037887 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7972607 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"forest" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:old_growth_pine_taiga" + "name": { + "type": "StringTag", + "value": "minecraft:flower_forest" }, - "id":{ - "type":"IntTag", - "value":12 + "id": { + "type": "IntTag", + "value": 9 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.3 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.7 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8168447 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7972607 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"taiga" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:old_growth_spruce_taiga" + "name": { + "type": "StringTag", + "value": "minecraft:birch_forest" }, - "id":{ - "type":"IntTag", - "value":13 + "id": { + "type": "IntTag", + "value": 10 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.25 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.6 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8233983 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8037887 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"taiga" + "downfall": { + "type": "FloatTag", + "value": 0.6 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:taiga" + "name": { + "type": "StringTag", + "value": "minecraft:dark_forest" }, - "id":{ - "type":"IntTag", - "value":14 + "id": { + "type": "IntTag", + "value": 11 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.25 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.7 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "grass_color_modifier": { + "type": "StringTag", + "value": "dark_forest" }, - "sky_color":{ - "type":"IntTag", - "value":8233983 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "sky_color": { + "type": "IntTag", + "value": 7972607 + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"taiga" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:snowy_taiga" + "name": { + "type": "StringTag", + "value": "minecraft:old_growth_birch_forest" }, - "id":{ - "type":"IntTag", - "value":15 + "id": { + "type": "IntTag", + "value": 12 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":-0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.6 }, - "precipitation":{ - "type":"StringTag", - "value":"snow" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.4 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8625919 - }, - "water_color":{ - "type":"IntTag", - "value":4020182 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8037887 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"taiga" + "downfall": { + "type": "FloatTag", + "value": 0.6 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:savanna" + "name": { + "type": "StringTag", + "value": "minecraft:old_growth_pine_taiga" }, - "id":{ - "type":"IntTag", - "value":16 + "id": { + "type": "IntTag", + "value": 13 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.3 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7254527 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.old_growth_taiga" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8168447 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"savanna" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:savanna_plateau" + "name": { + "type": "StringTag", + "value": "minecraft:old_growth_spruce_taiga" }, - "id":{ - "type":"IntTag", - "value":17 + "id": { + "type": "IntTag", + "value": 14 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.25 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7254527 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.old_growth_taiga" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8233983 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"savanna" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:windswept_hills" + "name": { + "type": "StringTag", + "value": "minecraft:taiga" }, - "id":{ - "type":"IntTag", - "value":18 + "id": { + "type": "IntTag", + "value": 15 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.2 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.25 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.3 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":8233727 + "sky_color": { + "type": "IntTag", + "value": 8233983 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"extreme_hills" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:windswept_gravelly_hills" + "name": { + "type": "StringTag", + "value": "minecraft:snowy_taiga" }, - "id":{ - "type":"IntTag", - "value":19 + "id": { + "type": "IntTag", + "value": 16 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.2 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": -0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "snow" }, - "downfall":{ - "type":"FloatTag", - "value":0.3 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":8233727 + "sky_color": { + "type": "IntTag", + "value": 8625919 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4020182 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"extreme_hills" + "downfall": { + "type": "FloatTag", + "value": 0.4 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:windswept_forest" + "name": { + "type": "StringTag", + "value": "minecraft:savanna" }, - "id":{ - "type":"IntTag", - "value":20 + "id": { + "type": "IntTag", + "value": 17 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.2 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.3 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":8233727 + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"extreme_hills" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:windswept_savanna" + "name": { + "type": "StringTag", + "value": "minecraft:savanna_plateau" }, - "id":{ - "type":"IntTag", - "value":21 + "id": { + "type": "IntTag", + "value": 18 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":7254527 + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"savanna" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:jungle" + "name": { + "type": "StringTag", + "value": "minecraft:windswept_hills" }, - "id":{ - "type":"IntTag", - "value":22 + "id": { + "type": "IntTag", + "value": 19 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.95 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.2 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.9 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":7842047 + "sky_color": { + "type": "IntTag", + "value": 8233727 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"jungle" + "downfall": { + "type": "FloatTag", + "value": 0.3 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:sparse_jungle" + "name": { + "type": "StringTag", + "value": "minecraft:windswept_gravelly_hills" }, - "id":{ - "type":"IntTag", - "value":23 + "id": { + "type": "IntTag", + "value": 20 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.95 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.2 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":7842047 + "sky_color": { + "type": "IntTag", + "value": 8233727 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"jungle" + "downfall": { + "type": "FloatTag", + "value": 0.3 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:bamboo_jungle" + "name": { + "type": "StringTag", + "value": "minecraft:windswept_forest" }, - "id":{ - "type":"IntTag", - "value":24 + "id": { + "type": "IntTag", + "value": 21 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.95 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.2 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.9 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":7842047 + "sky_color": { + "type": "IntTag", + "value": 8233727 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"jungle" + "downfall": { + "type": "FloatTag", + "value": 0.3 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:badlands" + "name": { + "type": "StringTag", + "value": "minecraft:windswept_savanna" }, - "id":{ - "type":"IntTag", - "value":25 + "id": { + "type": "IntTag", + "value": 22 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "sky_color":{ - "type":"IntTag", - "value":7254527 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "grass_color":{ - "type":"IntTag", - "value":9470285 + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "foliage_color":{ - "type":"IntTag", - "value":10387789 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mesa" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:eroded_badlands" + "name": { + "type": "StringTag", + "value": "minecraft:jungle" }, - "id":{ - "type":"IntTag", - "value":26 + "id": { + "type": "IntTag", + "value": 23 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.95 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "sky_color":{ - "type":"IntTag", - "value":7254527 - }, - "grass_color":{ - "type":"IntTag", - "value":9470285 - }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "foliage_color":{ - "type":"IntTag", - "value":10387789 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7842047 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mesa" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:wooded_badlands" + "name": { + "type": "StringTag", + "value": "minecraft:sparse_jungle" }, - "id":{ - "type":"IntTag", - "value":27 + "id": { + "type": "IntTag", + "value": 24 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.95 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "sky_color":{ - "type":"IntTag", - "value":7254527 - }, - "grass_color":{ - "type":"IntTag", - "value":9470285 - }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "foliage_color":{ - "type":"IntTag", - "value":10387789 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7842047 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mesa" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:meadow" + "name": { + "type": "StringTag", + "value": "minecraft:bamboo_jungle" }, - "id":{ - "type":"IntTag", - "value":28 + "id": { + "type": "IntTag", + "value": 25 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.95 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "max_delay":{ - "type":"IntTag", - "value":24000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.meadow" + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":8103167 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":937679 + "sky_color": { + "type": "IntTag", + "value": 7842047 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mountain" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:grove" + "name": { + "type": "StringTag", + "value": "minecraft:badlands" }, - "id":{ - "type":"IntTag", - "value":29 + "id": { + "type": "IntTag", + "value": 26 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":-0.2 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 }, - "precipitation":{ - "type":"StringTag", - "value":"snow" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.grove" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 - } - } + "grass_color": { + "type": "IntTag", + "value": 9470285 }, - "sky_color":{ - "type":"IntTag", - "value":8495359 + "foliage_color": { + "type": "IntTag", + "value": 10387789 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"forest" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:snowy_slopes" + "name": { + "type": "StringTag", + "value": "minecraft:eroded_badlands" }, - "id":{ - "type":"IntTag", - "value":30 + "id": { + "type": "IntTag", + "value": 27 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":-0.3 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 }, - "precipitation":{ - "type":"StringTag", - "value":"snow" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.9 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.snowy_slopes" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 - } - } + "grass_color": { + "type": "IntTag", + "value": 9470285 }, - "sky_color":{ - "type":"IntTag", - "value":8560639 + "foliage_color": { + "type": "IntTag", + "value": 10387789 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mountain" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:frozen_peaks" + "name": { + "type": "StringTag", + "value": "minecraft:wooded_badlands" }, - "id":{ - "type":"IntTag", - "value":31 + "id": { + "type": "IntTag", + "value": 28 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":-0.7 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 }, - "precipitation":{ - "type":"StringTag", - "value":"snow" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.9 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.frozen_peaks" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 - } - } + "grass_color": { + "type": "IntTag", + "value": 9470285 }, - "sky_color":{ - "type":"IntTag", - "value":8756735 + "foliage_color": { + "type": "IntTag", + "value": 10387789 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mountain" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:jagged_peaks" + "name": { + "type": "StringTag", + "value": "minecraft:meadow" }, - "id":{ - "type":"IntTag", - "value":32 + "id": { + "type": "IntTag", + "value": 29 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":-0.7 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"snow" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.9 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "max_delay":{ - "type":"IntTag", - "value":24000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.jagged_peaks" + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.meadow" }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":8756735 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "sky_color": { + "type": "IntTag", + "value": 8103167 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "water_color": { + "type": "IntTag", + "value": 937679 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mountain" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:stony_peaks" + "name": { + "type": "StringTag", + "value": "minecraft:grove" }, - "id":{ - "type":"IntTag", - "value":33 + "id": { + "type": "IntTag", + "value": 30 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":1.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": -0.2 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "snow" }, - "downfall":{ - "type":"FloatTag", - "value":0.3 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "max_delay":{ - "type":"IntTag", - "value":24000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.stony_peaks" + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.grove" }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":7776511 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "sky_color": { + "type": "IntTag", + "value": 8495359 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mountain" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:river" + "name": { + "type": "StringTag", + "value": "minecraft:snowy_slopes" }, - "id":{ - "type":"IntTag", - "value":34 + "id": { + "type": "IntTag", + "value": 31 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": -0.3 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "snow" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8103167 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.snowy_slopes" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8560639 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"river" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:frozen_river" + "name": { + "type": "StringTag", + "value": "minecraft:frozen_peaks" }, - "id":{ - "type":"IntTag", - "value":35 + "id": { + "type": "IntTag", + "value": 32 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": -0.7 }, - "precipitation":{ - "type":"StringTag", - "value":"snow" + "precipitation": { + "type": "StringTag", + "value": "snow" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8364543 - }, - "water_color":{ - "type":"IntTag", - "value":3750089 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.frozen_peaks" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8756735 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"river" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:beach" + "name": { + "type": "StringTag", + "value": "minecraft:jagged_peaks" }, - "id":{ - "type":"IntTag", - "value":36 + "id": { + "type": "IntTag", + "value": 33 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.8 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": -0.7 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "snow" }, - "downfall":{ - "type":"FloatTag", - "value":0.4 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7907327 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jagged_peaks" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8756735 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"beach" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:snowy_beach" + "name": { + "type": "StringTag", + "value": "minecraft:stony_peaks" }, - "id":{ - "type":"IntTag", - "value":37 + "id": { + "type": "IntTag", + "value": 34 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.05 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 1 }, - "precipitation":{ - "type":"StringTag", - "value":"snow" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.3 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8364543 - }, - "water_color":{ - "type":"IntTag", - "value":4020182 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.stony_peaks" }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7776511 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"beach" + "downfall": { + "type": "FloatTag", + "value": 0.3 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:stony_shore" + "name": { + "type": "StringTag", + "value": "minecraft:river" }, - "id":{ - "type":"IntTag", - "value":38 + "id": { + "type": "IntTag", + "value": 35 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.2 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.3 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":8233727 + "sky_color": { + "type": "IntTag", + "value": 8103167 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"beach" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:warm_ocean" + "name": { + "type": "StringTag", + "value": "minecraft:frozen_river" }, - "id":{ - "type":"IntTag", - "value":39 + "id": { + "type": "IntTag", + "value": 36 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "snow" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":270131 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":8103167 + "sky_color": { + "type": "IntTag", + "value": 8364543 }, - "water_color":{ - "type":"IntTag", - "value":4445678 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 3750089 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:lukewarm_ocean" + "name": { + "type": "StringTag", + "value": "minecraft:beach" }, - "id":{ - "type":"IntTag", - "value":40 + "id": { + "type": "IntTag", + "value": 37 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":267827 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":8103167 + "sky_color": { + "type": "IntTag", + "value": 7907327 }, - "water_color":{ - "type":"IntTag", - "value":4566514 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.4 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:deep_lukewarm_ocean" + "name": { + "type": "StringTag", + "value": "minecraft:snowy_beach" }, - "id":{ - "type":"IntTag", - "value":41 + "id": { + "type": "IntTag", + "value": 38 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.05 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "snow" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":267827 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":8103167 + "sky_color": { + "type": "IntTag", + "value": 8364543 }, - "water_color":{ - "type":"IntTag", - "value":4566514 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4020182 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.3 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:ocean" + "name": { + "type": "StringTag", + "value": "minecraft:stony_shore" }, - "id":{ - "type":"IntTag", - "value":42 + "id": { + "type": "IntTag", + "value": 39 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.2 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":8103167 + "sky_color": { + "type": "IntTag", + "value": 8233727 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.3 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:deep_ocean" + "name": { + "type": "StringTag", + "value": "minecraft:warm_ocean" }, - "id":{ - "type":"IntTag", - "value":43 + "id": { + "type": "IntTag", + "value": 40 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 270131 }, - "sky_color":{ - "type":"IntTag", - "value":8103167 + "sky_color": { + "type": "IntTag", + "value": 8103167 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4445678 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:cold_ocean" + "name": { + "type": "StringTag", + "value": "minecraft:lukewarm_ocean" }, - "id":{ - "type":"IntTag", - "value":44 + "id": { + "type": "IntTag", + "value": 41 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 267827 }, - "sky_color":{ - "type":"IntTag", - "value":8103167 + "sky_color": { + "type": "IntTag", + "value": 8103167 }, - "water_color":{ - "type":"IntTag", - "value":4020182 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4566514 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:deep_cold_ocean" + "name": { + "type": "StringTag", + "value": "minecraft:deep_lukewarm_ocean" }, - "id":{ - "type":"IntTag", - "value":45 + "id": { + "type": "IntTag", + "value": 42 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 267827 }, - "sky_color":{ - "type":"IntTag", - "value":8103167 + "sky_color": { + "type": "IntTag", + "value": 8103167 }, - "water_color":{ - "type":"IntTag", - "value":4020182 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4566514 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:frozen_ocean" + "name": { + "type": "StringTag", + "value": "minecraft:ocean" }, - "id":{ - "type":"IntTag", - "value":46 + "id": { + "type": "IntTag", + "value": 43 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"snow" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":8364543 + "sky_color": { + "type": "IntTag", + "value": 8103167 }, - "water_color":{ - "type":"IntTag", - "value":3750089 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" - }, - "temperature_modifier":{ - "type":"StringTag", - "value":"frozen" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:deep_frozen_ocean" + "name": { + "type": "StringTag", + "value": "minecraft:deep_ocean" }, - "id":{ - "type":"IntTag", - "value":47 + "id": { + "type": "IntTag", + "value": 44 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":8103167 + "sky_color": { + "type": "IntTag", + "value": 8103167 }, - "water_color":{ - "type":"IntTag", - "value":3750089 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" - }, - "temperature_modifier":{ - "type":"StringTag", - "value":"frozen" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:mushroom_fields" + "name": { + "type": "StringTag", + "value": "minecraft:cold_ocean" }, - "id":{ - "type":"IntTag", - "value":48 + "id": { + "type": "IntTag", + "value": 45 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.9 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":1.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":7842047 + "sky_color": { + "type": "IntTag", + "value": 8103167 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4020182 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mushroom" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:dripstone_caves" + "name": { + "type": "StringTag", + "value": "minecraft:deep_cold_ocean" }, - "id":{ - "type":"IntTag", - "value":49 + "id": { + "type": "IntTag", + "value": 46 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.8 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.4 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.dripstone_caves" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 - } - } + "sky_color": { + "type": "IntTag", + "value": 8103167 }, - "sky_color":{ - "type":"IntTag", - "value":7907327 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "water_color": { + "type": "IntTag", + "value": 4020182 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"underground" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:lush_caves" + "name": { + "type": "StringTag", + "value": "minecraft:frozen_ocean" }, - "id":{ - "type":"IntTag", - "value":50 + "id": { + "type": "IntTag", + "value": 47 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0 }, - "precipitation":{ - "type":"StringTag", - "value":"rain" + "precipitation": { + "type": "StringTag", + "value": "snow" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.lush_caves" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 - } - } + "sky_color": { + "type": "IntTag", + "value": 8364543 }, - "sky_color":{ - "type":"IntTag", - "value":8103167 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "water_color": { + "type": "IntTag", + "value": 3750089 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"underground" + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, + "temperature_modifier": { + "type": "StringTag", + "value": "frozen" } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:nether_wastes" + "name": { + "type": "StringTag", + "value": "minecraft:deep_frozen_ocean" }, - "id":{ - "type":"IntTag", - "value":51 + "id": { + "type": "IntTag", + "value": 48 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.nether.nether_wastes" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 - } - } + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":7254527 + "sky_color": { + "type": "IntTag", + "value": 8103167 }, - "ambient_sound":{ - "type":"StringTag", - "value":"minecraft:ambient.nether_wastes.loop" + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "additions_sound":{ - "type":"CompoundTag", - "value":{ - "tick_chance":{ - "type":"DoubleTag", - "value":0.0111 + "water_color": { + "type": "IntTag", + "value": 3750089 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.nether_wastes.additions" - } - } - }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":3344392 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.nether_wastes.mood" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"nether" + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, + "temperature_modifier": { + "type": "StringTag", + "value": "frozen" } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:warped_forest" + "name": { + "type": "StringTag", + "value": "minecraft:mushroom_fields" }, - "id":{ - "type":"IntTag", - "value":52 + "id": { + "type": "IntTag", + "value": 49 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.9 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "rain" }, - "downfall":{ - "type":"FloatTag", - "value":0.0 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7842047 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" + } + } + } + } }, - "effects":{ - "type":"CompoundTag", - "value":{ - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 + "downfall": { + "type": "FloatTag", + "value": 1 + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:dripstone_caves" + }, + "id": { + "type": "IntTag", + "value": 50 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "max_delay":{ - "type":"IntTag", - "value":24000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.nether.warped_forest" + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.dripstone_caves" }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":7254527 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "ambient_sound":{ - "type":"StringTag", - "value":"minecraft:ambient.warped_forest.loop" + "sky_color": { + "type": "IntTag", + "value": 7907327 }, - "additions_sound":{ - "type":"CompoundTag", - "value":{ - "tick_chance":{ - "type":"DoubleTag", - "value":0.0111 + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.warped_forest.additions" + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" + } + } + } + } + }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:lush_caves" + }, + "id": { + "type": "IntTag", + "value": 51 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.lush_caves" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "particle":{ - "type":"CompoundTag", - "value":{ - "options":{ - "type":"CompoundTag", - "value":{ - "type":{ - "type":"StringTag", - "value":"minecraft:warped_spore" + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8103167 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" + } + } + } + } + }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:deep_dark" + }, + "id": { + "type": "IntTag", + "value": 52 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.deep_dark" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7907327 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" + } + } + } + } + }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:nether_wastes" + }, + "id": { + "type": "IntTag", + "value": 53 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.nether.nether_wastes" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "sky_color": { + "type": "IntTag", + "value": 7254527 + }, + "ambient_sound": { + "type": "StringTag", + "value": "minecraft:ambient.nether_wastes.loop" + }, + "additions_sound": { + "type": "CompoundTag", + "value": { + "tick_chance": { + "type": "DoubleTag", + "value": 0.0111 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.nether_wastes.additions" + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "fog_color": { + "type": "IntTag", + "value": 3344392 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.nether_wastes.mood" + } + } + } + } + }, + "downfall": { + "type": "FloatTag", + "value": 0 + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:warped_forest" + }, + "id": { + "type": "IntTag", + "value": 54 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.nether.warped_forest" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "sky_color": { + "type": "IntTag", + "value": 7254527 + }, + "ambient_sound": { + "type": "StringTag", + "value": "minecraft:ambient.warped_forest.loop" + }, + "additions_sound": { + "type": "CompoundTag", + "value": { + "tick_chance": { + "type": "DoubleTag", + "value": 0.0111 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.warped_forest.additions" + } + } + }, + "particle": { + "type": "CompoundTag", + "value": { + "options": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:warped_spore" } } }, - "probability":{ - "type":"FloatTag", - "value":0.01428 + "probability": { + "type": "FloatTag", + "value": 0.01428 } } }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 1705242 }, - "fog_color":{ - "type":"IntTag", - "value":1705242 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.warped_forest.mood" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.warped_forest.mood" } } } } }, - "category":{ - "type":"StringTag", - "value":"nether" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:crimson_forest" + "name": { + "type": "StringTag", + "value": "minecraft:crimson_forest" }, - "id":{ - "type":"IntTag", - "value":53 + "id": { + "type": "IntTag", + "value": 55 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "max_delay":{ - "type":"IntTag", - "value":24000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.nether.crimson_forest" + "sound": { + "type": "StringTag", + "value": "minecraft:music.nether.crimson_forest" }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":7254527 + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "ambient_sound":{ - "type":"StringTag", - "value":"minecraft:ambient.crimson_forest.loop" + "ambient_sound": { + "type": "StringTag", + "value": "minecraft:ambient.crimson_forest.loop" }, - "additions_sound":{ - "type":"CompoundTag", - "value":{ - "tick_chance":{ - "type":"DoubleTag", - "value":0.0111 + "additions_sound": { + "type": "CompoundTag", + "value": { + "tick_chance": { + "type": "DoubleTag", + "value": 0.0111 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.crimson_forest.additions" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.crimson_forest.additions" } } }, - "particle":{ - "type":"CompoundTag", - "value":{ - "options":{ - "type":"CompoundTag", - "value":{ - "type":{ - "type":"StringTag", - "value":"minecraft:crimson_spore" + "particle": { + "type": "CompoundTag", + "value": { + "options": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:crimson_spore" } } }, - "probability":{ - "type":"FloatTag", - "value":0.025 + "probability": { + "type": "FloatTag", + "value": 0.025 } } }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 3343107 }, - "fog_color":{ - "type":"IntTag", - "value":3343107 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.crimson_forest.mood" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.crimson_forest.mood" } } } } }, - "category":{ - "type":"StringTag", - "value":"nether" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:soul_sand_valley" + "name": { + "type": "StringTag", + "value": "minecraft:soul_sand_valley" }, - "id":{ - "type":"IntTag", - "value":54 + "id": { + "type": "IntTag", + "value": 56 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "max_delay":{ - "type":"IntTag", - "value":24000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.nether.soul_sand_valley" + "sound": { + "type": "StringTag", + "value": "minecraft:music.nether.soul_sand_valley" }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":7254527 + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "ambient_sound":{ - "type":"StringTag", - "value":"minecraft:ambient.soul_sand_valley.loop" + "ambient_sound": { + "type": "StringTag", + "value": "minecraft:ambient.soul_sand_valley.loop" }, - "additions_sound":{ - "type":"CompoundTag", - "value":{ - "tick_chance":{ - "type":"DoubleTag", - "value":0.0111 + "additions_sound": { + "type": "CompoundTag", + "value": { + "tick_chance": { + "type": "DoubleTag", + "value": 0.0111 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.soul_sand_valley.additions" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.soul_sand_valley.additions" } } }, - "particle":{ - "type":"CompoundTag", - "value":{ - "options":{ - "type":"CompoundTag", - "value":{ - "type":{ - "type":"StringTag", - "value":"minecraft:ash" + "particle": { + "type": "CompoundTag", + "value": { + "options": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:ash" } } }, - "probability":{ - "type":"FloatTag", - "value":0.00625 + "probability": { + "type": "FloatTag", + "value": 0.00625 } } }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 1787717 }, - "fog_color":{ - "type":"IntTag", - "value":1787717 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.soul_sand_valley.mood" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.soul_sand_valley.mood" } } } } }, - "category":{ - "type":"StringTag", - "value":"nether" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:basalt_deltas" + "name": { + "type": "StringTag", + "value": "minecraft:basalt_deltas" }, - "id":{ - "type":"IntTag", - "value":55 + "id": { + "type": "IntTag", + "value": 57 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 }, - "max_delay":{ - "type":"IntTag", - "value":24000 + "max_delay": { + "type": "IntTag", + "value": 24000 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.nether.basalt_deltas" + "sound": { + "type": "StringTag", + "value": "minecraft:music.nether.basalt_deltas" }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":7254527 + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "ambient_sound":{ - "type":"StringTag", - "value":"minecraft:ambient.basalt_deltas.loop" + "ambient_sound": { + "type": "StringTag", + "value": "minecraft:ambient.basalt_deltas.loop" }, - "additions_sound":{ - "type":"CompoundTag", - "value":{ - "tick_chance":{ - "type":"DoubleTag", - "value":0.0111 + "additions_sound": { + "type": "CompoundTag", + "value": { + "tick_chance": { + "type": "DoubleTag", + "value": 0.0111 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.basalt_deltas.additions" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.basalt_deltas.additions" } } }, - "particle":{ - "type":"CompoundTag", - "value":{ - "options":{ - "type":"CompoundTag", - "value":{ - "type":{ - "type":"StringTag", - "value":"minecraft:white_ash" + "particle": { + "type": "CompoundTag", + "value": { + "options": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:white_ash" } } }, - "probability":{ - "type":"FloatTag", - "value":0.118093334 + "probability": { + "type": "FloatTag", + "value": 0.118093334 } } }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 6840176 }, - "fog_color":{ - "type":"IntTag", - "value":6840176 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.basalt_deltas.mood" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.basalt_deltas.mood" } } } } }, - "category":{ - "type":"StringTag", - "value":"nether" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:the_end" + "name": { + "type": "StringTag", + "value": "minecraft:the_end" }, - "id":{ - "type":"IntTag", - "value":56 + "id": { + "type": "IntTag", + "value": 58 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":0 + "sky_color": { + "type": "IntTag", + "value": 0 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 10518688 }, - "fog_color":{ - "type":"IntTag", - "value":10518688 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"the_end" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:end_highlands" + "name": { + "type": "StringTag", + "value": "minecraft:end_highlands" }, - "id":{ - "type":"IntTag", - "value":57 + "id": { + "type": "IntTag", + "value": 59 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":0 + "sky_color": { + "type": "IntTag", + "value": 0 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 10518688 }, - "fog_color":{ - "type":"IntTag", - "value":10518688 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"the_end" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:end_midlands" + "name": { + "type": "StringTag", + "value": "minecraft:end_midlands" }, - "id":{ - "type":"IntTag", - "value":58 + "id": { + "type": "IntTag", + "value": 60 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":0 + "sky_color": { + "type": "IntTag", + "value": 0 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 10518688 }, - "fog_color":{ - "type":"IntTag", - "value":10518688 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"the_end" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:small_end_islands" + "name": { + "type": "StringTag", + "value": "minecraft:small_end_islands" }, - "id":{ - "type":"IntTag", - "value":59 + "id": { + "type": "IntTag", + "value": 61 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":0 + "sky_color": { + "type": "IntTag", + "value": 0 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 10518688 }, - "fog_color":{ - "type":"IntTag", - "value":10518688 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"the_end" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:end_barrens" + "name": { + "type": "StringTag", + "value": "minecraft:end_barrens" }, - "id":{ - "type":"IntTag", - "value":60 + "id": { + "type": "IntTag", + "value": 62 }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 }, - "precipitation":{ - "type":"StringTag", - "value":"none" + "precipitation": { + "type": "StringTag", + "value": "none" }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "sky_color":{ - "type":"IntTag", - "value":0 + "sky_color": { + "type": "IntTag", + "value": 0 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 10518688 }, - "fog_color":{ - "type":"IntTag", - "value":10518688 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"the_end" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } diff --git a/src/main/resources/mapping.json b/src/main/resources/mapping.json index d3a9162..9bb9f24 100644 --- a/src/main/resources/mapping.json +++ b/src/main/resources/mapping.json @@ -12,44 +12,45 @@ "PacketLoginOutPluginMessaging": "0x04" }, "PlayIn": { - "0x0F": "PacketPlayInKeepAlive", - "0x03": "PacketPlayInChat", - "0x12": "PacketPlayInPositionAndLook", - "0x11": "PacketPlayInPosition", - "0x13": "PacketPlayInRotation", - "0x0A": "PacketPlayInPluginMessaging", - "0x06": "PacketPlayInTabComplete", - "0x25": "PacketPlayInHeldItemChange", - "0x21": "PacketPlayInResourcePackStatus" + "0x11": "PacketPlayInKeepAlive", + "0x03": "ServerboundChatCommandPacket", + "0x04": "PacketPlayInChat", + "0x14": "PacketPlayInPositionAndLook", + "0x13": "PacketPlayInPosition", + "0x15": "PacketPlayInRotation", + "0x0C": "PacketPlayInPluginMessaging", + "0x08": "PacketPlayInTabComplete", + "0x27": "PacketPlayInHeldItemChange", + "0x23": "PacketPlayInResourcePackStatus" }, "PlayOut": { - "PacketPlayOutLogin": "0x26", - "PacketPlayOutPositionAndLook": "0x38", - "PacketPlayOutSpawnPosition": "0x4B", - "PacketPlayOutChat": "0x0F", - "PacketPlayOutPlayerAbilities": "0x32", - "ClientboundLevelChunkWithLightPacket": "0x22", - "PacketPlayOutUnloadChunk": "0x1D", - "PacketPlayOutKeepAlive": "0x21", - "PacketPlayOutPlayerInfo": "0x36", - "PacketPlayOutUpdateViewPosition": "0x49", - "PacketPlayOutDisconnect": "0x1A", - "PacketPlayOutPluginMessaging": "0x18", - "PacketPlayOutTabComplete": "0x11", - "PacketPlayOutDeclareCommands": "0x12", - "PacketPlayOutRespawn": "0x3D", - "PacketPlayOutGameState": "0x1E", - "PacketPlayOutEntityDestroy": "0x3A", + "PacketPlayOutLogin": "0x23", + "PacketPlayOutPositionAndLook": "0x36", + "PacketPlayOutSpawnPosition": "0x4A", + "ClientboundPlayerChatPacket": "0x30", + "ClientboundSystemChatPacket": "0x5F", + "PacketPlayOutPlayerAbilities": "0x2F", + "ClientboundLevelChunkWithLightPacket": "0x1F", + "PacketPlayOutUnloadChunk": "0x1A", + "PacketPlayOutKeepAlive": "0x1E", + "PacketPlayOutPlayerInfo": "0x34", + "PacketPlayOutUpdateViewPosition": "0x48", + "PacketPlayOutDisconnect": "0x17", + "PacketPlayOutPluginMessaging": "0x15", + "PacketPlayOutTabComplete": "0x0E", + "PacketPlayOutDeclareCommands": "0x0F", + "PacketPlayOutRespawn": "0x3B", + "PacketPlayOutGameState": "0x1B", + "PacketPlayOutEntityDestroy": "0x38", "PacketPlayOutEntityMetadata": "0x4D", "PacketPlayOutSpawnEntity": "0x00", - "PacketPlayOutSpawnEntityLiving": "0x02", - "PacketPlayOutHeldItemChange": "0x48", - "PacketPlayOutPlayerListHeaderFooter": "0x5F", - "PacketPlayOutResourcePackSend": "0x3C", + "PacketPlayOutHeldItemChange": "0x47", + "PacketPlayOutPlayerListHeaderFooter": "0x60", + "PacketPlayOutResourcePackSend": "0x3A", "ClientboundSetTitlesAnimationPacket": "0x5B", "ClientboundSetTitleTextPacket": "0x5A", "ClientboundSetSubtitleTextPacket": "0x58", - "ClientboundClearTitlesPacket": "0x10" + "ClientboundClearTitlesPacket": "0x0D" }, "StatusIn": { "0x01": "PacketStatusInPing", diff --git a/src/main/resources/registries.json b/src/main/resources/registries.json index a2f5462..426b897 100644 --- a/src/main/resources/registries.json +++ b/src/main/resources/registries.json @@ -1,10775 +1,3107 @@ { - "minecraft:game_event": { - "default": "minecraft:step", - "protocol_id": 0, + "minecraft:activity": { "entries": { - "minecraft:block_attach": { - "protocol_id": 0 - }, - "minecraft:block_change": { - "protocol_id": 1 - }, - "minecraft:block_close": { - "protocol_id": 2 - }, - "minecraft:block_destroy": { - "protocol_id": 3 - }, - "minecraft:block_detach": { - "protocol_id": 4 - }, - "minecraft:block_open": { - "protocol_id": 5 - }, - "minecraft:block_place": { - "protocol_id": 6 - }, - "minecraft:block_press": { - "protocol_id": 7 - }, - "minecraft:block_switch": { - "protocol_id": 8 - }, - "minecraft:block_unpress": { - "protocol_id": 9 - }, - "minecraft:block_unswitch": { - "protocol_id": 10 - }, - "minecraft:container_close": { - "protocol_id": 11 - }, - "minecraft:container_open": { + "minecraft:admire_item": { "protocol_id": 12 }, - "minecraft:dispense_fail": { + "minecraft:avoid": { "protocol_id": 13 }, - "minecraft:drinking_finish": { - "protocol_id": 14 + "minecraft:celebrate": { + "protocol_id": 11 }, - "minecraft:eat": { - "protocol_id": 15 + "minecraft:core": { + "protocol_id": 0 }, - "minecraft:elytra_free_fall": { - "protocol_id": 16 - }, - "minecraft:entity_damaged": { - "protocol_id": 17 - }, - "minecraft:entity_killed": { - "protocol_id": 18 - }, - "minecraft:entity_place": { - "protocol_id": 19 - }, - "minecraft:equip": { - "protocol_id": 20 - }, - "minecraft:explode": { - "protocol_id": 21 - }, - "minecraft:fishing_rod_cast": { - "protocol_id": 22 - }, - "minecraft:fishing_rod_reel_in": { - "protocol_id": 23 - }, - "minecraft:flap": { - "protocol_id": 24 - }, - "minecraft:fluid_pickup": { + "minecraft:dig": { "protocol_id": 25 }, - "minecraft:fluid_place": { - "protocol_id": 26 + "minecraft:emerge": { + "protocol_id": 24 }, - "minecraft:hit_ground": { - "protocol_id": 27 + "minecraft:fight": { + "protocol_id": 10 }, - "minecraft:mob_interact": { - "protocol_id": 28 + "minecraft:hide": { + "protocol_id": 9 }, - "minecraft:lightning_strike": { - "protocol_id": 29 + "minecraft:idle": { + "protocol_id": 1 }, - "minecraft:minecart_moving": { - "protocol_id": 30 + "minecraft:investigate": { + "protocol_id": 22 }, - "minecraft:piston_contract": { - "protocol_id": 31 + "minecraft:lay_spawn": { + "protocol_id": 20 }, - "minecraft:piston_extend": { - "protocol_id": 32 + "minecraft:long_jump": { + "protocol_id": 16 }, - "minecraft:prime_fuse": { - "protocol_id": 33 + "minecraft:meet": { + "protocol_id": 5 }, - "minecraft:projectile_land": { - "protocol_id": 34 + "minecraft:panic": { + "protocol_id": 6 }, - "minecraft:projectile_shoot": { - "protocol_id": 35 + "minecraft:play": { + "protocol_id": 3 }, - "minecraft:ravager_roar": { - "protocol_id": 36 + "minecraft:play_dead": { + "protocol_id": 15 }, - "minecraft:ring_bell": { - "protocol_id": 37 + "minecraft:pre_raid": { + "protocol_id": 8 }, - "minecraft:shear": { - "protocol_id": 38 + "minecraft:raid": { + "protocol_id": 7 }, - "minecraft:shulker_close": { - "protocol_id": 39 + "minecraft:ram": { + "protocol_id": 17 }, - "minecraft:shulker_open": { - "protocol_id": 40 + "minecraft:rest": { + "protocol_id": 4 }, - "minecraft:splash": { - "protocol_id": 41 + "minecraft:ride": { + "protocol_id": 14 }, - "minecraft:step": { - "protocol_id": 42 + "minecraft:roar": { + "protocol_id": 23 + }, + "minecraft:sniff": { + "protocol_id": 21 }, "minecraft:swim": { - "protocol_id": 43 - }, - "minecraft:wolf_shaking": { - "protocol_id": 44 - } - } - }, - "minecraft:sound_event": { - "protocol_id": 1, - "entries": { - "minecraft:ambient.cave": { - "protocol_id": 0 - }, - "minecraft:ambient.basalt_deltas.additions": { - "protocol_id": 1 - }, - "minecraft:ambient.basalt_deltas.loop": { - "protocol_id": 2 - }, - "minecraft:ambient.basalt_deltas.mood": { - "protocol_id": 3 - }, - "minecraft:ambient.crimson_forest.additions": { - "protocol_id": 4 - }, - "minecraft:ambient.crimson_forest.loop": { - "protocol_id": 5 - }, - "minecraft:ambient.crimson_forest.mood": { - "protocol_id": 6 - }, - "minecraft:ambient.nether_wastes.additions": { - "protocol_id": 7 - }, - "minecraft:ambient.nether_wastes.loop": { - "protocol_id": 8 - }, - "minecraft:ambient.nether_wastes.mood": { - "protocol_id": 9 - }, - "minecraft:ambient.soul_sand_valley.additions": { - "protocol_id": 10 - }, - "minecraft:ambient.soul_sand_valley.loop": { - "protocol_id": 11 - }, - "minecraft:ambient.soul_sand_valley.mood": { - "protocol_id": 12 - }, - "minecraft:ambient.warped_forest.additions": { - "protocol_id": 13 - }, - "minecraft:ambient.warped_forest.loop": { - "protocol_id": 14 - }, - "minecraft:ambient.warped_forest.mood": { - "protocol_id": 15 - }, - "minecraft:ambient.underwater.enter": { - "protocol_id": 16 - }, - "minecraft:ambient.underwater.exit": { - "protocol_id": 17 - }, - "minecraft:ambient.underwater.loop": { - "protocol_id": 18 - }, - "minecraft:ambient.underwater.loop.additions": { "protocol_id": 19 }, - "minecraft:ambient.underwater.loop.additions.rare": { - "protocol_id": 20 + "minecraft:tongue": { + "protocol_id": 18 }, - "minecraft:ambient.underwater.loop.additions.ultra_rare": { - "protocol_id": 21 + "minecraft:work": { + "protocol_id": 2 + } + }, + "protocol_id": 29 + }, + "minecraft:attribute": { + "entries": { + "minecraft:generic.armor": { + "protocol_id": 8 }, - "minecraft:block.amethyst_block.break": { - "protocol_id": 22 + "minecraft:generic.armor_toughness": { + "protocol_id": 9 }, - "minecraft:block.amethyst_block.chime": { - "protocol_id": 23 + "minecraft:generic.attack_damage": { + "protocol_id": 5 }, - "minecraft:block.amethyst_block.fall": { - "protocol_id": 24 + "minecraft:generic.attack_knockback": { + "protocol_id": 6 }, - "minecraft:block.amethyst_block.hit": { - "protocol_id": 25 + "minecraft:generic.attack_speed": { + "protocol_id": 7 }, - "minecraft:block.amethyst_block.place": { - "protocol_id": 26 + "minecraft:generic.flying_speed": { + "protocol_id": 4 }, - "minecraft:block.amethyst_block.step": { - "protocol_id": 27 + "minecraft:generic.follow_range": { + "protocol_id": 1 }, - "minecraft:block.amethyst_cluster.break": { - "protocol_id": 28 + "minecraft:generic.knockback_resistance": { + "protocol_id": 2 }, - "minecraft:block.amethyst_cluster.fall": { - "protocol_id": 29 + "minecraft:generic.luck": { + "protocol_id": 10 }, - "minecraft:block.amethyst_cluster.hit": { + "minecraft:generic.max_health": { + "protocol_id": 0 + }, + "minecraft:generic.movement_speed": { + "protocol_id": 3 + }, + "minecraft:horse.jump_strength": { + "protocol_id": 12 + }, + "minecraft:zombie.spawn_reinforcements": { + "protocol_id": 11 + } + }, + "protocol_id": 19 + }, + "minecraft:banner_pattern": { + "entries": { + "minecraft:base": { + "protocol_id": 0 + }, + "minecraft:border": { "protocol_id": 30 }, - "minecraft:block.amethyst_cluster.place": { - "protocol_id": 31 - }, - "minecraft:block.amethyst_cluster.step": { - "protocol_id": 32 - }, - "minecraft:block.ancient_debris.break": { - "protocol_id": 33 - }, - "minecraft:block.ancient_debris.step": { + "minecraft:bricks": { "protocol_id": 34 }, - "minecraft:block.ancient_debris.place": { - "protocol_id": 35 - }, - "minecraft:block.ancient_debris.hit": { - "protocol_id": 36 - }, - "minecraft:block.ancient_debris.fall": { - "protocol_id": 37 - }, - "minecraft:block.anvil.break": { - "protocol_id": 38 - }, - "minecraft:block.anvil.destroy": { - "protocol_id": 39 - }, - "minecraft:block.anvil.fall": { - "protocol_id": 40 - }, - "minecraft:block.anvil.hit": { - "protocol_id": 41 - }, - "minecraft:block.anvil.land": { - "protocol_id": 42 - }, - "minecraft:block.anvil.place": { - "protocol_id": 43 - }, - "minecraft:block.anvil.step": { - "protocol_id": 44 - }, - "minecraft:block.anvil.use": { - "protocol_id": 45 - }, - "minecraft:item.armor.equip_chain": { - "protocol_id": 46 - }, - "minecraft:item.armor.equip_diamond": { - "protocol_id": 47 - }, - "minecraft:item.armor.equip_elytra": { - "protocol_id": 48 - }, - "minecraft:item.armor.equip_generic": { - "protocol_id": 49 - }, - "minecraft:item.armor.equip_gold": { - "protocol_id": 50 - }, - "minecraft:item.armor.equip_iron": { - "protocol_id": 51 - }, - "minecraft:item.armor.equip_leather": { - "protocol_id": 52 - }, - "minecraft:item.armor.equip_netherite": { - "protocol_id": 53 - }, - "minecraft:item.armor.equip_turtle": { - "protocol_id": 54 - }, - "minecraft:entity.armor_stand.break": { - "protocol_id": 55 - }, - "minecraft:entity.armor_stand.fall": { - "protocol_id": 56 - }, - "minecraft:entity.armor_stand.hit": { - "protocol_id": 57 - }, - "minecraft:entity.armor_stand.place": { - "protocol_id": 58 - }, - "minecraft:entity.arrow.hit": { - "protocol_id": 59 - }, - "minecraft:entity.arrow.hit_player": { - "protocol_id": 60 - }, - "minecraft:entity.arrow.shoot": { - "protocol_id": 61 - }, - "minecraft:item.axe.strip": { - "protocol_id": 62 - }, - "minecraft:item.axe.scrape": { - "protocol_id": 63 - }, - "minecraft:item.axe.wax_off": { - "protocol_id": 64 - }, - "minecraft:entity.axolotl.attack": { - "protocol_id": 65 - }, - "minecraft:entity.axolotl.death": { - "protocol_id": 66 - }, - "minecraft:entity.axolotl.hurt": { - "protocol_id": 67 - }, - "minecraft:entity.axolotl.idle_air": { - "protocol_id": 68 - }, - "minecraft:entity.axolotl.idle_water": { - "protocol_id": 69 - }, - "minecraft:entity.axolotl.splash": { - "protocol_id": 70 - }, - "minecraft:entity.axolotl.swim": { - "protocol_id": 71 - }, - "minecraft:block.azalea.break": { - "protocol_id": 72 - }, - "minecraft:block.azalea.fall": { - "protocol_id": 73 - }, - "minecraft:block.azalea.hit": { - "protocol_id": 74 - }, - "minecraft:block.azalea.place": { - "protocol_id": 75 - }, - "minecraft:block.azalea.step": { - "protocol_id": 76 - }, - "minecraft:block.azalea_leaves.break": { - "protocol_id": 77 - }, - "minecraft:block.azalea_leaves.fall": { - "protocol_id": 78 - }, - "minecraft:block.azalea_leaves.hit": { - "protocol_id": 79 - }, - "minecraft:block.azalea_leaves.place": { - "protocol_id": 80 - }, - "minecraft:block.azalea_leaves.step": { - "protocol_id": 81 - }, - "minecraft:block.bamboo.break": { - "protocol_id": 82 - }, - "minecraft:block.bamboo.fall": { - "protocol_id": 83 - }, - "minecraft:block.bamboo.hit": { - "protocol_id": 84 - }, - "minecraft:block.bamboo.place": { - "protocol_id": 85 - }, - "minecraft:block.bamboo.step": { - "protocol_id": 86 - }, - "minecraft:block.bamboo_sapling.break": { - "protocol_id": 87 - }, - "minecraft:block.bamboo_sapling.hit": { - "protocol_id": 88 - }, - "minecraft:block.bamboo_sapling.place": { - "protocol_id": 89 - }, - "minecraft:block.barrel.close": { - "protocol_id": 90 - }, - "minecraft:block.barrel.open": { - "protocol_id": 91 - }, - "minecraft:block.basalt.break": { - "protocol_id": 92 - }, - "minecraft:block.basalt.step": { - "protocol_id": 93 - }, - "minecraft:block.basalt.place": { - "protocol_id": 94 - }, - "minecraft:block.basalt.hit": { - "protocol_id": 95 - }, - "minecraft:block.basalt.fall": { - "protocol_id": 96 - }, - "minecraft:entity.bat.ambient": { - "protocol_id": 97 - }, - "minecraft:entity.bat.death": { - "protocol_id": 98 - }, - "minecraft:entity.bat.hurt": { - "protocol_id": 99 - }, - "minecraft:entity.bat.loop": { - "protocol_id": 100 - }, - "minecraft:entity.bat.takeoff": { - "protocol_id": 101 - }, - "minecraft:block.beacon.activate": { - "protocol_id": 102 - }, - "minecraft:block.beacon.ambient": { - "protocol_id": 103 - }, - "minecraft:block.beacon.deactivate": { - "protocol_id": 104 - }, - "minecraft:block.beacon.power_select": { - "protocol_id": 105 - }, - "minecraft:entity.bee.death": { - "protocol_id": 106 - }, - "minecraft:entity.bee.hurt": { - "protocol_id": 107 - }, - "minecraft:entity.bee.loop_aggressive": { - "protocol_id": 108 - }, - "minecraft:entity.bee.loop": { - "protocol_id": 109 - }, - "minecraft:entity.bee.sting": { - "protocol_id": 110 - }, - "minecraft:entity.bee.pollinate": { - "protocol_id": 111 - }, - "minecraft:block.beehive.drip": { - "protocol_id": 112 - }, - "minecraft:block.beehive.enter": { - "protocol_id": 113 - }, - "minecraft:block.beehive.exit": { - "protocol_id": 114 - }, - "minecraft:block.beehive.shear": { - "protocol_id": 115 - }, - "minecraft:block.beehive.work": { - "protocol_id": 116 - }, - "minecraft:block.bell.use": { - "protocol_id": 117 - }, - "minecraft:block.bell.resonate": { - "protocol_id": 118 - }, - "minecraft:block.big_dripleaf.break": { - "protocol_id": 119 - }, - "minecraft:block.big_dripleaf.fall": { - "protocol_id": 120 - }, - "minecraft:block.big_dripleaf.hit": { - "protocol_id": 121 - }, - "minecraft:block.big_dripleaf.place": { - "protocol_id": 122 - }, - "minecraft:block.big_dripleaf.step": { - "protocol_id": 123 - }, - "minecraft:entity.blaze.ambient": { - "protocol_id": 124 - }, - "minecraft:entity.blaze.burn": { - "protocol_id": 125 - }, - "minecraft:entity.blaze.death": { - "protocol_id": 126 - }, - "minecraft:entity.blaze.hurt": { - "protocol_id": 127 - }, - "minecraft:entity.blaze.shoot": { - "protocol_id": 128 - }, - "minecraft:entity.boat.paddle_land": { - "protocol_id": 129 - }, - "minecraft:entity.boat.paddle_water": { - "protocol_id": 130 - }, - "minecraft:block.bone_block.break": { - "protocol_id": 131 - }, - "minecraft:block.bone_block.fall": { - "protocol_id": 132 - }, - "minecraft:block.bone_block.hit": { - "protocol_id": 133 - }, - "minecraft:block.bone_block.place": { - "protocol_id": 134 - }, - "minecraft:block.bone_block.step": { - "protocol_id": 135 - }, - "minecraft:item.bone_meal.use": { - "protocol_id": 136 - }, - "minecraft:item.book.page_turn": { - "protocol_id": 137 - }, - "minecraft:item.book.put": { - "protocol_id": 138 - }, - "minecraft:block.blastfurnace.fire_crackle": { - "protocol_id": 139 - }, - "minecraft:item.bottle.empty": { - "protocol_id": 140 - }, - "minecraft:item.bottle.fill": { - "protocol_id": 141 - }, - "minecraft:item.bottle.fill_dragonbreath": { - "protocol_id": 142 - }, - "minecraft:block.brewing_stand.brew": { - "protocol_id": 143 - }, - "minecraft:block.bubble_column.bubble_pop": { - "protocol_id": 144 - }, - "minecraft:block.bubble_column.upwards_ambient": { - "protocol_id": 145 - }, - "minecraft:block.bubble_column.upwards_inside": { - "protocol_id": 146 - }, - "minecraft:block.bubble_column.whirlpool_ambient": { - "protocol_id": 147 - }, - "minecraft:block.bubble_column.whirlpool_inside": { - "protocol_id": 148 - }, - "minecraft:item.bucket.empty": { - "protocol_id": 149 - }, - "minecraft:item.bucket.empty_axolotl": { - "protocol_id": 150 - }, - "minecraft:item.bucket.empty_fish": { - "protocol_id": 151 - }, - "minecraft:item.bucket.empty_lava": { - "protocol_id": 152 - }, - "minecraft:item.bucket.empty_powder_snow": { - "protocol_id": 153 - }, - "minecraft:item.bucket.fill": { - "protocol_id": 154 - }, - "minecraft:item.bucket.fill_axolotl": { - "protocol_id": 155 - }, - "minecraft:item.bucket.fill_fish": { - "protocol_id": 156 - }, - "minecraft:item.bucket.fill_lava": { - "protocol_id": 157 - }, - "minecraft:item.bucket.fill_powder_snow": { - "protocol_id": 158 - }, - "minecraft:item.bundle.drop_contents": { - "protocol_id": 159 - }, - "minecraft:item.bundle.insert": { - "protocol_id": 160 - }, - "minecraft:item.bundle.remove_one": { - "protocol_id": 161 - }, - "minecraft:block.cake.add_candle": { - "protocol_id": 162 - }, - "minecraft:block.calcite.break": { - "protocol_id": 163 - }, - "minecraft:block.calcite.step": { - "protocol_id": 164 - }, - "minecraft:block.calcite.place": { - "protocol_id": 165 - }, - "minecraft:block.calcite.hit": { - "protocol_id": 166 - }, - "minecraft:block.calcite.fall": { - "protocol_id": 167 - }, - "minecraft:block.campfire.crackle": { - "protocol_id": 168 - }, - "minecraft:block.candle.ambient": { - "protocol_id": 169 - }, - "minecraft:block.candle.break": { - "protocol_id": 170 - }, - "minecraft:block.candle.extinguish": { - "protocol_id": 171 - }, - "minecraft:block.candle.fall": { - "protocol_id": 172 - }, - "minecraft:block.candle.hit": { - "protocol_id": 173 - }, - "minecraft:block.candle.place": { - "protocol_id": 174 - }, - "minecraft:block.candle.step": { - "protocol_id": 175 - }, - "minecraft:entity.cat.ambient": { - "protocol_id": 176 - }, - "minecraft:entity.cat.stray_ambient": { - "protocol_id": 177 - }, - "minecraft:entity.cat.death": { - "protocol_id": 178 - }, - "minecraft:entity.cat.eat": { - "protocol_id": 179 - }, - "minecraft:entity.cat.hiss": { - "protocol_id": 180 - }, - "minecraft:entity.cat.beg_for_food": { - "protocol_id": 181 - }, - "minecraft:entity.cat.hurt": { - "protocol_id": 182 - }, - "minecraft:entity.cat.purr": { - "protocol_id": 183 - }, - "minecraft:entity.cat.purreow": { - "protocol_id": 184 - }, - "minecraft:block.cave_vines.break": { - "protocol_id": 185 - }, - "minecraft:block.cave_vines.fall": { - "protocol_id": 186 - }, - "minecraft:block.cave_vines.hit": { - "protocol_id": 187 - }, - "minecraft:block.cave_vines.place": { - "protocol_id": 188 - }, - "minecraft:block.cave_vines.step": { - "protocol_id": 189 - }, - "minecraft:block.cave_vines.pick_berries": { - "protocol_id": 190 - }, - "minecraft:block.chain.break": { - "protocol_id": 191 - }, - "minecraft:block.chain.fall": { - "protocol_id": 192 - }, - "minecraft:block.chain.hit": { - "protocol_id": 193 - }, - "minecraft:block.chain.place": { - "protocol_id": 194 - }, - "minecraft:block.chain.step": { - "protocol_id": 195 - }, - "minecraft:block.chest.close": { - "protocol_id": 196 - }, - "minecraft:block.chest.locked": { - "protocol_id": 197 - }, - "minecraft:block.chest.open": { - "protocol_id": 198 - }, - "minecraft:entity.chicken.ambient": { - "protocol_id": 199 - }, - "minecraft:entity.chicken.death": { - "protocol_id": 200 - }, - "minecraft:entity.chicken.egg": { - "protocol_id": 201 - }, - "minecraft:entity.chicken.hurt": { - "protocol_id": 202 - }, - "minecraft:entity.chicken.step": { - "protocol_id": 203 - }, - "minecraft:block.chorus_flower.death": { - "protocol_id": 204 - }, - "minecraft:block.chorus_flower.grow": { - "protocol_id": 205 - }, - "minecraft:item.chorus_fruit.teleport": { - "protocol_id": 206 - }, - "minecraft:entity.cod.ambient": { - "protocol_id": 207 - }, - "minecraft:entity.cod.death": { - "protocol_id": 208 - }, - "minecraft:entity.cod.flop": { - "protocol_id": 209 - }, - "minecraft:entity.cod.hurt": { - "protocol_id": 210 - }, - "minecraft:block.comparator.click": { - "protocol_id": 211 - }, - "minecraft:block.composter.empty": { - "protocol_id": 212 - }, - "minecraft:block.composter.fill": { - "protocol_id": 213 - }, - "minecraft:block.composter.fill_success": { - "protocol_id": 214 - }, - "minecraft:block.composter.ready": { - "protocol_id": 215 - }, - "minecraft:block.conduit.activate": { - "protocol_id": 216 - }, - "minecraft:block.conduit.ambient": { - "protocol_id": 217 - }, - "minecraft:block.conduit.ambient.short": { - "protocol_id": 218 - }, - "minecraft:block.conduit.attack.target": { - "protocol_id": 219 - }, - "minecraft:block.conduit.deactivate": { - "protocol_id": 220 - }, - "minecraft:block.copper.break": { - "protocol_id": 221 - }, - "minecraft:block.copper.step": { - "protocol_id": 222 - }, - "minecraft:block.copper.place": { - "protocol_id": 223 - }, - "minecraft:block.copper.hit": { - "protocol_id": 224 - }, - "minecraft:block.copper.fall": { - "protocol_id": 225 - }, - "minecraft:block.coral_block.break": { - "protocol_id": 226 - }, - "minecraft:block.coral_block.fall": { - "protocol_id": 227 - }, - "minecraft:block.coral_block.hit": { - "protocol_id": 228 - }, - "minecraft:block.coral_block.place": { - "protocol_id": 229 - }, - "minecraft:block.coral_block.step": { - "protocol_id": 230 - }, - "minecraft:entity.cow.ambient": { - "protocol_id": 231 - }, - "minecraft:entity.cow.death": { - "protocol_id": 232 - }, - "minecraft:entity.cow.hurt": { - "protocol_id": 233 - }, - "minecraft:entity.cow.milk": { - "protocol_id": 234 - }, - "minecraft:entity.cow.step": { - "protocol_id": 235 - }, - "minecraft:entity.creeper.death": { - "protocol_id": 236 - }, - "minecraft:entity.creeper.hurt": { - "protocol_id": 237 - }, - "minecraft:entity.creeper.primed": { - "protocol_id": 238 - }, - "minecraft:block.crop.break": { - "protocol_id": 239 - }, - "minecraft:item.crop.plant": { - "protocol_id": 240 - }, - "minecraft:item.crossbow.hit": { - "protocol_id": 241 - }, - "minecraft:item.crossbow.loading_end": { - "protocol_id": 242 - }, - "minecraft:item.crossbow.loading_middle": { - "protocol_id": 243 - }, - "minecraft:item.crossbow.loading_start": { - "protocol_id": 244 - }, - "minecraft:item.crossbow.quick_charge_1": { - "protocol_id": 245 - }, - "minecraft:item.crossbow.quick_charge_2": { - "protocol_id": 246 - }, - "minecraft:item.crossbow.quick_charge_3": { - "protocol_id": 247 - }, - "minecraft:item.crossbow.shoot": { - "protocol_id": 248 - }, - "minecraft:block.deepslate_bricks.break": { - "protocol_id": 249 - }, - "minecraft:block.deepslate_bricks.fall": { - "protocol_id": 250 - }, - "minecraft:block.deepslate_bricks.hit": { - "protocol_id": 251 - }, - "minecraft:block.deepslate_bricks.place": { - "protocol_id": 252 - }, - "minecraft:block.deepslate_bricks.step": { - "protocol_id": 253 - }, - "minecraft:block.deepslate.break": { - "protocol_id": 254 - }, - "minecraft:block.deepslate.fall": { - "protocol_id": 255 - }, - "minecraft:block.deepslate.hit": { - "protocol_id": 256 - }, - "minecraft:block.deepslate.place": { - "protocol_id": 257 - }, - "minecraft:block.deepslate.step": { - "protocol_id": 258 - }, - "minecraft:block.deepslate_tiles.break": { - "protocol_id": 259 - }, - "minecraft:block.deepslate_tiles.fall": { - "protocol_id": 260 - }, - "minecraft:block.deepslate_tiles.hit": { - "protocol_id": 261 - }, - "minecraft:block.deepslate_tiles.place": { - "protocol_id": 262 - }, - "minecraft:block.deepslate_tiles.step": { - "protocol_id": 263 - }, - "minecraft:block.dispenser.dispense": { - "protocol_id": 264 - }, - "minecraft:block.dispenser.fail": { - "protocol_id": 265 - }, - "minecraft:block.dispenser.launch": { - "protocol_id": 266 - }, - "minecraft:entity.dolphin.ambient": { - "protocol_id": 267 - }, - "minecraft:entity.dolphin.ambient_water": { - "protocol_id": 268 - }, - "minecraft:entity.dolphin.attack": { - "protocol_id": 269 - }, - "minecraft:entity.dolphin.death": { - "protocol_id": 270 - }, - "minecraft:entity.dolphin.eat": { - "protocol_id": 271 - }, - "minecraft:entity.dolphin.hurt": { - "protocol_id": 272 - }, - "minecraft:entity.dolphin.jump": { - "protocol_id": 273 - }, - "minecraft:entity.dolphin.play": { - "protocol_id": 274 - }, - "minecraft:entity.dolphin.splash": { - "protocol_id": 275 - }, - "minecraft:entity.dolphin.swim": { - "protocol_id": 276 - }, - "minecraft:entity.donkey.ambient": { - "protocol_id": 277 - }, - "minecraft:entity.donkey.angry": { - "protocol_id": 278 - }, - "minecraft:entity.donkey.chest": { - "protocol_id": 279 - }, - "minecraft:entity.donkey.death": { - "protocol_id": 280 - }, - "minecraft:entity.donkey.eat": { - "protocol_id": 281 - }, - "minecraft:entity.donkey.hurt": { - "protocol_id": 282 - }, - "minecraft:block.dripstone_block.break": { - "protocol_id": 283 - }, - "minecraft:block.dripstone_block.step": { - "protocol_id": 284 - }, - "minecraft:block.dripstone_block.place": { - "protocol_id": 285 - }, - "minecraft:block.dripstone_block.hit": { - "protocol_id": 286 - }, - "minecraft:block.dripstone_block.fall": { - "protocol_id": 287 - }, - "minecraft:block.pointed_dripstone.break": { - "protocol_id": 288 - }, - "minecraft:block.pointed_dripstone.step": { - "protocol_id": 289 - }, - "minecraft:block.pointed_dripstone.place": { - "protocol_id": 290 - }, - "minecraft:block.pointed_dripstone.hit": { - "protocol_id": 291 - }, - "minecraft:block.pointed_dripstone.fall": { - "protocol_id": 292 - }, - "minecraft:block.pointed_dripstone.land": { - "protocol_id": 293 - }, - "minecraft:block.pointed_dripstone.drip_lava": { - "protocol_id": 294 - }, - "minecraft:block.pointed_dripstone.drip_water": { - "protocol_id": 295 - }, - "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { - "protocol_id": 296 - }, - "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { - "protocol_id": 297 - }, - "minecraft:block.big_dripleaf.tilt_down": { - "protocol_id": 298 - }, - "minecraft:block.big_dripleaf.tilt_up": { - "protocol_id": 299 - }, - "minecraft:entity.drowned.ambient": { - "protocol_id": 300 - }, - "minecraft:entity.drowned.ambient_water": { - "protocol_id": 301 - }, - "minecraft:entity.drowned.death": { - "protocol_id": 302 - }, - "minecraft:entity.drowned.death_water": { - "protocol_id": 303 - }, - "minecraft:entity.drowned.hurt": { - "protocol_id": 304 - }, - "minecraft:entity.drowned.hurt_water": { - "protocol_id": 305 - }, - "minecraft:entity.drowned.shoot": { - "protocol_id": 306 - }, - "minecraft:entity.drowned.step": { - "protocol_id": 307 - }, - "minecraft:entity.drowned.swim": { - "protocol_id": 308 - }, - "minecraft:item.dye.use": { - "protocol_id": 309 - }, - "minecraft:entity.egg.throw": { - "protocol_id": 310 - }, - "minecraft:entity.elder_guardian.ambient": { - "protocol_id": 311 - }, - "minecraft:entity.elder_guardian.ambient_land": { - "protocol_id": 312 - }, - "minecraft:entity.elder_guardian.curse": { - "protocol_id": 313 - }, - "minecraft:entity.elder_guardian.death": { - "protocol_id": 314 - }, - "minecraft:entity.elder_guardian.death_land": { - "protocol_id": 315 - }, - "minecraft:entity.elder_guardian.flop": { - "protocol_id": 316 - }, - "minecraft:entity.elder_guardian.hurt": { - "protocol_id": 317 - }, - "minecraft:entity.elder_guardian.hurt_land": { - "protocol_id": 318 - }, - "minecraft:item.elytra.flying": { - "protocol_id": 319 - }, - "minecraft:block.enchantment_table.use": { - "protocol_id": 320 - }, - "minecraft:block.ender_chest.close": { - "protocol_id": 321 - }, - "minecraft:block.ender_chest.open": { - "protocol_id": 322 - }, - "minecraft:entity.ender_dragon.ambient": { - "protocol_id": 323 - }, - "minecraft:entity.ender_dragon.death": { - "protocol_id": 324 - }, - "minecraft:entity.dragon_fireball.explode": { - "protocol_id": 325 - }, - "minecraft:entity.ender_dragon.flap": { - "protocol_id": 326 - }, - "minecraft:entity.ender_dragon.growl": { - "protocol_id": 327 - }, - "minecraft:entity.ender_dragon.hurt": { - "protocol_id": 328 - }, - "minecraft:entity.ender_dragon.shoot": { - "protocol_id": 329 - }, - "minecraft:entity.ender_eye.death": { - "protocol_id": 330 - }, - "minecraft:entity.ender_eye.launch": { - "protocol_id": 331 - }, - "minecraft:entity.enderman.ambient": { - "protocol_id": 332 - }, - "minecraft:entity.enderman.death": { - "protocol_id": 333 - }, - "minecraft:entity.enderman.hurt": { - "protocol_id": 334 - }, - "minecraft:entity.enderman.scream": { - "protocol_id": 335 - }, - "minecraft:entity.enderman.stare": { - "protocol_id": 336 - }, - "minecraft:entity.enderman.teleport": { - "protocol_id": 337 - }, - "minecraft:entity.endermite.ambient": { - "protocol_id": 338 - }, - "minecraft:entity.endermite.death": { - "protocol_id": 339 - }, - "minecraft:entity.endermite.hurt": { - "protocol_id": 340 - }, - "minecraft:entity.endermite.step": { - "protocol_id": 341 - }, - "minecraft:entity.ender_pearl.throw": { - "protocol_id": 342 - }, - "minecraft:block.end_gateway.spawn": { - "protocol_id": 343 - }, - "minecraft:block.end_portal_frame.fill": { - "protocol_id": 344 - }, - "minecraft:block.end_portal.spawn": { - "protocol_id": 345 - }, - "minecraft:entity.evoker.ambient": { - "protocol_id": 346 - }, - "minecraft:entity.evoker.cast_spell": { - "protocol_id": 347 - }, - "minecraft:entity.evoker.celebrate": { - "protocol_id": 348 - }, - "minecraft:entity.evoker.death": { - "protocol_id": 349 - }, - "minecraft:entity.evoker_fangs.attack": { - "protocol_id": 350 - }, - "minecraft:entity.evoker.hurt": { - "protocol_id": 351 - }, - "minecraft:entity.evoker.prepare_attack": { - "protocol_id": 352 - }, - "minecraft:entity.evoker.prepare_summon": { - "protocol_id": 353 - }, - "minecraft:entity.evoker.prepare_wololo": { - "protocol_id": 354 - }, - "minecraft:entity.experience_bottle.throw": { - "protocol_id": 355 - }, - "minecraft:entity.experience_orb.pickup": { - "protocol_id": 356 - }, - "minecraft:block.fence_gate.close": { - "protocol_id": 357 - }, - "minecraft:block.fence_gate.open": { - "protocol_id": 358 - }, - "minecraft:item.firecharge.use": { - "protocol_id": 359 - }, - "minecraft:entity.firework_rocket.blast": { - "protocol_id": 360 - }, - "minecraft:entity.firework_rocket.blast_far": { - "protocol_id": 361 - }, - "minecraft:entity.firework_rocket.large_blast": { - "protocol_id": 362 - }, - "minecraft:entity.firework_rocket.large_blast_far": { - "protocol_id": 363 - }, - "minecraft:entity.firework_rocket.launch": { - "protocol_id": 364 - }, - "minecraft:entity.firework_rocket.shoot": { - "protocol_id": 365 - }, - "minecraft:entity.firework_rocket.twinkle": { - "protocol_id": 366 - }, - "minecraft:entity.firework_rocket.twinkle_far": { - "protocol_id": 367 - }, - "minecraft:block.fire.ambient": { - "protocol_id": 368 - }, - "minecraft:block.fire.extinguish": { - "protocol_id": 369 - }, - "minecraft:entity.fish.swim": { - "protocol_id": 370 - }, - "minecraft:entity.fishing_bobber.retrieve": { - "protocol_id": 371 - }, - "minecraft:entity.fishing_bobber.splash": { - "protocol_id": 372 - }, - "minecraft:entity.fishing_bobber.throw": { - "protocol_id": 373 - }, - "minecraft:item.flintandsteel.use": { - "protocol_id": 374 - }, - "minecraft:block.flowering_azalea.break": { - "protocol_id": 375 - }, - "minecraft:block.flowering_azalea.fall": { - "protocol_id": 376 - }, - "minecraft:block.flowering_azalea.hit": { - "protocol_id": 377 - }, - "minecraft:block.flowering_azalea.place": { - "protocol_id": 378 - }, - "minecraft:block.flowering_azalea.step": { - "protocol_id": 379 - }, - "minecraft:entity.fox.aggro": { - "protocol_id": 380 - }, - "minecraft:entity.fox.ambient": { - "protocol_id": 381 - }, - "minecraft:entity.fox.bite": { - "protocol_id": 382 - }, - "minecraft:entity.fox.death": { - "protocol_id": 383 - }, - "minecraft:entity.fox.eat": { - "protocol_id": 384 - }, - "minecraft:entity.fox.hurt": { - "protocol_id": 385 - }, - "minecraft:entity.fox.screech": { - "protocol_id": 386 - }, - "minecraft:entity.fox.sleep": { - "protocol_id": 387 - }, - "minecraft:entity.fox.sniff": { - "protocol_id": 388 - }, - "minecraft:entity.fox.spit": { - "protocol_id": 389 - }, - "minecraft:entity.fox.teleport": { - "protocol_id": 390 - }, - "minecraft:block.roots.break": { - "protocol_id": 391 - }, - "minecraft:block.roots.step": { - "protocol_id": 392 - }, - "minecraft:block.roots.place": { - "protocol_id": 393 - }, - "minecraft:block.roots.hit": { - "protocol_id": 394 - }, - "minecraft:block.roots.fall": { - "protocol_id": 395 - }, - "minecraft:block.furnace.fire_crackle": { - "protocol_id": 396 - }, - "minecraft:entity.generic.big_fall": { - "protocol_id": 397 - }, - "minecraft:entity.generic.burn": { - "protocol_id": 398 - }, - "minecraft:entity.generic.death": { - "protocol_id": 399 - }, - "minecraft:entity.generic.drink": { - "protocol_id": 400 - }, - "minecraft:entity.generic.eat": { - "protocol_id": 401 - }, - "minecraft:entity.generic.explode": { - "protocol_id": 402 - }, - "minecraft:entity.generic.extinguish_fire": { - "protocol_id": 403 - }, - "minecraft:entity.generic.hurt": { - "protocol_id": 404 - }, - "minecraft:entity.generic.small_fall": { - "protocol_id": 405 - }, - "minecraft:entity.generic.splash": { - "protocol_id": 406 - }, - "minecraft:entity.generic.swim": { - "protocol_id": 407 - }, - "minecraft:entity.ghast.ambient": { - "protocol_id": 408 - }, - "minecraft:entity.ghast.death": { - "protocol_id": 409 - }, - "minecraft:entity.ghast.hurt": { - "protocol_id": 410 - }, - "minecraft:entity.ghast.scream": { - "protocol_id": 411 - }, - "minecraft:entity.ghast.shoot": { - "protocol_id": 412 - }, - "minecraft:entity.ghast.warn": { - "protocol_id": 413 - }, - "minecraft:block.gilded_blackstone.break": { - "protocol_id": 414 - }, - "minecraft:block.gilded_blackstone.fall": { - "protocol_id": 415 - }, - "minecraft:block.gilded_blackstone.hit": { - "protocol_id": 416 - }, - "minecraft:block.gilded_blackstone.place": { - "protocol_id": 417 - }, - "minecraft:block.gilded_blackstone.step": { - "protocol_id": 418 - }, - "minecraft:block.glass.break": { - "protocol_id": 419 - }, - "minecraft:block.glass.fall": { - "protocol_id": 420 - }, - "minecraft:block.glass.hit": { - "protocol_id": 421 - }, - "minecraft:block.glass.place": { - "protocol_id": 422 - }, - "minecraft:block.glass.step": { - "protocol_id": 423 - }, - "minecraft:item.glow_ink_sac.use": { - "protocol_id": 424 - }, - "minecraft:entity.glow_item_frame.add_item": { - "protocol_id": 425 - }, - "minecraft:entity.glow_item_frame.break": { - "protocol_id": 426 - }, - "minecraft:entity.glow_item_frame.place": { - "protocol_id": 427 - }, - "minecraft:entity.glow_item_frame.remove_item": { - "protocol_id": 428 - }, - "minecraft:entity.glow_item_frame.rotate_item": { - "protocol_id": 429 - }, - "minecraft:entity.glow_squid.ambient": { - "protocol_id": 430 - }, - "minecraft:entity.glow_squid.death": { - "protocol_id": 431 - }, - "minecraft:entity.glow_squid.hurt": { - "protocol_id": 432 - }, - "minecraft:entity.glow_squid.squirt": { - "protocol_id": 433 - }, - "minecraft:entity.goat.ambient": { - "protocol_id": 434 - }, - "minecraft:entity.goat.death": { - "protocol_id": 435 - }, - "minecraft:entity.goat.eat": { - "protocol_id": 436 - }, - "minecraft:entity.goat.hurt": { - "protocol_id": 437 - }, - "minecraft:entity.goat.long_jump": { - "protocol_id": 438 - }, - "minecraft:entity.goat.milk": { - "protocol_id": 439 - }, - "minecraft:entity.goat.prepare_ram": { - "protocol_id": 440 - }, - "minecraft:entity.goat.ram_impact": { - "protocol_id": 441 - }, - "minecraft:entity.goat.screaming.ambient": { - "protocol_id": 442 - }, - "minecraft:entity.goat.screaming.death": { - "protocol_id": 443 - }, - "minecraft:entity.goat.screaming.eat": { - "protocol_id": 444 - }, - "minecraft:entity.goat.screaming.hurt": { - "protocol_id": 445 - }, - "minecraft:entity.goat.screaming.long_jump": { - "protocol_id": 446 - }, - "minecraft:entity.goat.screaming.milk": { - "protocol_id": 447 - }, - "minecraft:entity.goat.screaming.prepare_ram": { - "protocol_id": 448 - }, - "minecraft:entity.goat.screaming.ram_impact": { - "protocol_id": 449 - }, - "minecraft:entity.goat.step": { - "protocol_id": 450 - }, - "minecraft:block.grass.break": { - "protocol_id": 451 - }, - "minecraft:block.grass.fall": { - "protocol_id": 452 - }, - "minecraft:block.grass.hit": { - "protocol_id": 453 - }, - "minecraft:block.grass.place": { - "protocol_id": 454 - }, - "minecraft:block.grass.step": { - "protocol_id": 455 - }, - "minecraft:block.gravel.break": { - "protocol_id": 456 - }, - "minecraft:block.gravel.fall": { - "protocol_id": 457 - }, - "minecraft:block.gravel.hit": { - "protocol_id": 458 - }, - "minecraft:block.gravel.place": { - "protocol_id": 459 - }, - "minecraft:block.gravel.step": { - "protocol_id": 460 - }, - "minecraft:block.grindstone.use": { - "protocol_id": 461 - }, - "minecraft:block.growing_plant.crop": { - "protocol_id": 462 - }, - "minecraft:entity.guardian.ambient": { - "protocol_id": 463 - }, - "minecraft:entity.guardian.ambient_land": { - "protocol_id": 464 - }, - "minecraft:entity.guardian.attack": { - "protocol_id": 465 - }, - "minecraft:entity.guardian.death": { - "protocol_id": 466 - }, - "minecraft:entity.guardian.death_land": { - "protocol_id": 467 - }, - "minecraft:entity.guardian.flop": { - "protocol_id": 468 - }, - "minecraft:entity.guardian.hurt": { - "protocol_id": 469 - }, - "minecraft:entity.guardian.hurt_land": { - "protocol_id": 470 - }, - "minecraft:block.hanging_roots.break": { - "protocol_id": 471 - }, - "minecraft:block.hanging_roots.fall": { - "protocol_id": 472 - }, - "minecraft:block.hanging_roots.hit": { - "protocol_id": 473 - }, - "minecraft:block.hanging_roots.place": { - "protocol_id": 474 - }, - "minecraft:block.hanging_roots.step": { - "protocol_id": 475 - }, - "minecraft:item.hoe.till": { - "protocol_id": 476 - }, - "minecraft:entity.hoglin.ambient": { - "protocol_id": 477 - }, - "minecraft:entity.hoglin.angry": { - "protocol_id": 478 - }, - "minecraft:entity.hoglin.attack": { - "protocol_id": 479 - }, - "minecraft:entity.hoglin.converted_to_zombified": { - "protocol_id": 480 - }, - "minecraft:entity.hoglin.death": { - "protocol_id": 481 - }, - "minecraft:entity.hoglin.hurt": { - "protocol_id": 482 - }, - "minecraft:entity.hoglin.retreat": { - "protocol_id": 483 - }, - "minecraft:entity.hoglin.step": { - "protocol_id": 484 - }, - "minecraft:block.honey_block.break": { - "protocol_id": 485 - }, - "minecraft:block.honey_block.fall": { - "protocol_id": 486 - }, - "minecraft:block.honey_block.hit": { - "protocol_id": 487 - }, - "minecraft:block.honey_block.place": { - "protocol_id": 488 - }, - "minecraft:block.honey_block.slide": { - "protocol_id": 489 - }, - "minecraft:block.honey_block.step": { - "protocol_id": 490 - }, - "minecraft:item.honeycomb.wax_on": { - "protocol_id": 491 - }, - "minecraft:item.honey_bottle.drink": { - "protocol_id": 492 - }, - "minecraft:entity.horse.ambient": { - "protocol_id": 493 - }, - "minecraft:entity.horse.angry": { - "protocol_id": 494 - }, - "minecraft:entity.horse.armor": { - "protocol_id": 495 - }, - "minecraft:entity.horse.breathe": { - "protocol_id": 496 - }, - "minecraft:entity.horse.death": { - "protocol_id": 497 - }, - "minecraft:entity.horse.eat": { - "protocol_id": 498 - }, - "minecraft:entity.horse.gallop": { - "protocol_id": 499 - }, - "minecraft:entity.horse.hurt": { - "protocol_id": 500 - }, - "minecraft:entity.horse.jump": { - "protocol_id": 501 - }, - "minecraft:entity.horse.land": { - "protocol_id": 502 - }, - "minecraft:entity.horse.saddle": { - "protocol_id": 503 - }, - "minecraft:entity.horse.step": { - "protocol_id": 504 - }, - "minecraft:entity.horse.step_wood": { - "protocol_id": 505 - }, - "minecraft:entity.hostile.big_fall": { - "protocol_id": 506 - }, - "minecraft:entity.hostile.death": { - "protocol_id": 507 - }, - "minecraft:entity.hostile.hurt": { - "protocol_id": 508 - }, - "minecraft:entity.hostile.small_fall": { - "protocol_id": 509 - }, - "minecraft:entity.hostile.splash": { - "protocol_id": 510 - }, - "minecraft:entity.hostile.swim": { - "protocol_id": 511 - }, - "minecraft:entity.husk.ambient": { - "protocol_id": 512 - }, - "minecraft:entity.husk.converted_to_zombie": { - "protocol_id": 513 - }, - "minecraft:entity.husk.death": { - "protocol_id": 514 - }, - "minecraft:entity.husk.hurt": { - "protocol_id": 515 - }, - "minecraft:entity.husk.step": { - "protocol_id": 516 - }, - "minecraft:entity.illusioner.ambient": { - "protocol_id": 517 - }, - "minecraft:entity.illusioner.cast_spell": { - "protocol_id": 518 - }, - "minecraft:entity.illusioner.death": { - "protocol_id": 519 - }, - "minecraft:entity.illusioner.hurt": { - "protocol_id": 520 - }, - "minecraft:entity.illusioner.mirror_move": { - "protocol_id": 521 - }, - "minecraft:entity.illusioner.prepare_blindness": { - "protocol_id": 522 - }, - "minecraft:entity.illusioner.prepare_mirror": { - "protocol_id": 523 - }, - "minecraft:item.ink_sac.use": { - "protocol_id": 524 - }, - "minecraft:block.iron_door.close": { - "protocol_id": 525 - }, - "minecraft:block.iron_door.open": { - "protocol_id": 526 - }, - "minecraft:entity.iron_golem.attack": { - "protocol_id": 527 - }, - "minecraft:entity.iron_golem.damage": { - "protocol_id": 528 - }, - "minecraft:entity.iron_golem.death": { - "protocol_id": 529 - }, - "minecraft:entity.iron_golem.hurt": { - "protocol_id": 530 - }, - "minecraft:entity.iron_golem.repair": { - "protocol_id": 531 - }, - "minecraft:entity.iron_golem.step": { - "protocol_id": 532 - }, - "minecraft:block.iron_trapdoor.close": { - "protocol_id": 533 - }, - "minecraft:block.iron_trapdoor.open": { - "protocol_id": 534 - }, - "minecraft:entity.item_frame.add_item": { - "protocol_id": 535 - }, - "minecraft:entity.item_frame.break": { - "protocol_id": 536 - }, - "minecraft:entity.item_frame.place": { - "protocol_id": 537 - }, - "minecraft:entity.item_frame.remove_item": { - "protocol_id": 538 - }, - "minecraft:entity.item_frame.rotate_item": { - "protocol_id": 539 - }, - "minecraft:entity.item.break": { - "protocol_id": 540 - }, - "minecraft:entity.item.pickup": { - "protocol_id": 541 - }, - "minecraft:block.ladder.break": { - "protocol_id": 542 - }, - "minecraft:block.ladder.fall": { - "protocol_id": 543 - }, - "minecraft:block.ladder.hit": { - "protocol_id": 544 - }, - "minecraft:block.ladder.place": { - "protocol_id": 545 - }, - "minecraft:block.ladder.step": { - "protocol_id": 546 - }, - "minecraft:block.lantern.break": { - "protocol_id": 547 - }, - "minecraft:block.lantern.fall": { - "protocol_id": 548 - }, - "minecraft:block.lantern.hit": { - "protocol_id": 549 - }, - "minecraft:block.lantern.place": { - "protocol_id": 550 - }, - "minecraft:block.lantern.step": { - "protocol_id": 551 - }, - "minecraft:block.large_amethyst_bud.break": { - "protocol_id": 552 - }, - "minecraft:block.large_amethyst_bud.place": { - "protocol_id": 553 - }, - "minecraft:block.lava.ambient": { - "protocol_id": 554 - }, - "minecraft:block.lava.extinguish": { - "protocol_id": 555 - }, - "minecraft:block.lava.pop": { - "protocol_id": 556 - }, - "minecraft:entity.leash_knot.break": { - "protocol_id": 557 - }, - "minecraft:entity.leash_knot.place": { - "protocol_id": 558 - }, - "minecraft:block.lever.click": { - "protocol_id": 559 - }, - "minecraft:entity.lightning_bolt.impact": { - "protocol_id": 560 - }, - "minecraft:entity.lightning_bolt.thunder": { - "protocol_id": 561 - }, - "minecraft:entity.lingering_potion.throw": { - "protocol_id": 562 - }, - "minecraft:entity.llama.ambient": { - "protocol_id": 563 - }, - "minecraft:entity.llama.angry": { - "protocol_id": 564 - }, - "minecraft:entity.llama.chest": { - "protocol_id": 565 - }, - "minecraft:entity.llama.death": { - "protocol_id": 566 - }, - "minecraft:entity.llama.eat": { - "protocol_id": 567 - }, - "minecraft:entity.llama.hurt": { - "protocol_id": 568 - }, - "minecraft:entity.llama.spit": { - "protocol_id": 569 - }, - "minecraft:entity.llama.step": { - "protocol_id": 570 - }, - "minecraft:entity.llama.swag": { - "protocol_id": 571 - }, - "minecraft:entity.magma_cube.death_small": { - "protocol_id": 572 - }, - "minecraft:block.lodestone.break": { - "protocol_id": 573 - }, - "minecraft:block.lodestone.step": { - "protocol_id": 574 - }, - "minecraft:block.lodestone.place": { - "protocol_id": 575 - }, - "minecraft:block.lodestone.hit": { - "protocol_id": 576 - }, - "minecraft:block.lodestone.fall": { - "protocol_id": 577 - }, - "minecraft:item.lodestone_compass.lock": { - "protocol_id": 578 - }, - "minecraft:entity.magma_cube.death": { - "protocol_id": 579 - }, - "minecraft:entity.magma_cube.hurt": { - "protocol_id": 580 - }, - "minecraft:entity.magma_cube.hurt_small": { - "protocol_id": 581 - }, - "minecraft:entity.magma_cube.jump": { - "protocol_id": 582 - }, - "minecraft:entity.magma_cube.squish": { - "protocol_id": 583 - }, - "minecraft:entity.magma_cube.squish_small": { - "protocol_id": 584 - }, - "minecraft:block.medium_amethyst_bud.break": { - "protocol_id": 585 - }, - "minecraft:block.medium_amethyst_bud.place": { - "protocol_id": 586 - }, - "minecraft:block.metal.break": { - "protocol_id": 587 - }, - "minecraft:block.metal.fall": { - "protocol_id": 588 - }, - "minecraft:block.metal.hit": { - "protocol_id": 589 - }, - "minecraft:block.metal.place": { - "protocol_id": 590 - }, - "minecraft:block.metal_pressure_plate.click_off": { - "protocol_id": 591 - }, - "minecraft:block.metal_pressure_plate.click_on": { - "protocol_id": 592 - }, - "minecraft:block.metal.step": { - "protocol_id": 593 - }, - "minecraft:entity.minecart.inside.underwater": { - "protocol_id": 594 - }, - "minecraft:entity.minecart.inside": { - "protocol_id": 595 - }, - "minecraft:entity.minecart.riding": { - "protocol_id": 596 - }, - "minecraft:entity.mooshroom.convert": { - "protocol_id": 597 - }, - "minecraft:entity.mooshroom.eat": { - "protocol_id": 598 - }, - "minecraft:entity.mooshroom.milk": { - "protocol_id": 599 - }, - "minecraft:entity.mooshroom.suspicious_milk": { - "protocol_id": 600 - }, - "minecraft:entity.mooshroom.shear": { - "protocol_id": 601 - }, - "minecraft:block.moss_carpet.break": { - "protocol_id": 602 - }, - "minecraft:block.moss_carpet.fall": { - "protocol_id": 603 - }, - "minecraft:block.moss_carpet.hit": { - "protocol_id": 604 - }, - "minecraft:block.moss_carpet.place": { - "protocol_id": 605 - }, - "minecraft:block.moss_carpet.step": { - "protocol_id": 606 - }, - "minecraft:block.moss.break": { - "protocol_id": 607 - }, - "minecraft:block.moss.fall": { - "protocol_id": 608 - }, - "minecraft:block.moss.hit": { - "protocol_id": 609 - }, - "minecraft:block.moss.place": { - "protocol_id": 610 - }, - "minecraft:block.moss.step": { - "protocol_id": 611 - }, - "minecraft:entity.mule.ambient": { - "protocol_id": 612 - }, - "minecraft:entity.mule.angry": { - "protocol_id": 613 - }, - "minecraft:entity.mule.chest": { - "protocol_id": 614 - }, - "minecraft:entity.mule.death": { - "protocol_id": 615 - }, - "minecraft:entity.mule.eat": { - "protocol_id": 616 - }, - "minecraft:entity.mule.hurt": { - "protocol_id": 617 - }, - "minecraft:music.creative": { - "protocol_id": 618 - }, - "minecraft:music.credits": { - "protocol_id": 619 - }, - "minecraft:music_disc.11": { - "protocol_id": 620 - }, - "minecraft:music_disc.13": { - "protocol_id": 621 - }, - "minecraft:music_disc.blocks": { - "protocol_id": 622 - }, - "minecraft:music_disc.cat": { - "protocol_id": 623 - }, - "minecraft:music_disc.chirp": { - "protocol_id": 624 - }, - "minecraft:music_disc.far": { - "protocol_id": 625 - }, - "minecraft:music_disc.mall": { - "protocol_id": 626 - }, - "minecraft:music_disc.mellohi": { - "protocol_id": 627 - }, - "minecraft:music_disc.pigstep": { - "protocol_id": 628 - }, - "minecraft:music_disc.stal": { - "protocol_id": 629 - }, - "minecraft:music_disc.strad": { - "protocol_id": 630 - }, - "minecraft:music_disc.wait": { - "protocol_id": 631 - }, - "minecraft:music_disc.ward": { - "protocol_id": 632 - }, - "minecraft:music_disc.otherside": { - "protocol_id": 633 - }, - "minecraft:music.dragon": { - "protocol_id": 634 - }, - "minecraft:music.end": { - "protocol_id": 635 - }, - "minecraft:music.game": { - "protocol_id": 636 - }, - "minecraft:music.menu": { - "protocol_id": 637 - }, - "minecraft:music.nether.basalt_deltas": { - "protocol_id": 638 - }, - "minecraft:music.nether.crimson_forest": { - "protocol_id": 639 - }, - "minecraft:music.overworld.dripstone_caves": { - "protocol_id": 640 - }, - "minecraft:music.overworld.grove": { - "protocol_id": 641 - }, - "minecraft:music.overworld.jagged_peaks": { - "protocol_id": 642 - }, - "minecraft:music.overworld.lush_caves": { - "protocol_id": 643 - }, - "minecraft:music.overworld.meadow": { - "protocol_id": 644 - }, - "minecraft:music.nether.nether_wastes": { - "protocol_id": 645 - }, - "minecraft:music.overworld.frozen_peaks": { - "protocol_id": 646 - }, - "minecraft:music.overworld.snowy_slopes": { - "protocol_id": 647 - }, - "minecraft:music.nether.soul_sand_valley": { - "protocol_id": 648 - }, - "minecraft:music.overworld.stony_peaks": { - "protocol_id": 649 - }, - "minecraft:music.nether.warped_forest": { - "protocol_id": 650 - }, - "minecraft:music.under_water": { - "protocol_id": 651 - }, - "minecraft:block.nether_bricks.break": { - "protocol_id": 652 - }, - "minecraft:block.nether_bricks.step": { - "protocol_id": 653 - }, - "minecraft:block.nether_bricks.place": { - "protocol_id": 654 - }, - "minecraft:block.nether_bricks.hit": { - "protocol_id": 655 - }, - "minecraft:block.nether_bricks.fall": { - "protocol_id": 656 - }, - "minecraft:block.nether_wart.break": { - "protocol_id": 657 - }, - "minecraft:item.nether_wart.plant": { - "protocol_id": 658 - }, - "minecraft:block.stem.break": { - "protocol_id": 659 - }, - "minecraft:block.stem.step": { - "protocol_id": 660 - }, - "minecraft:block.stem.place": { - "protocol_id": 661 - }, - "minecraft:block.stem.hit": { - "protocol_id": 662 - }, - "minecraft:block.stem.fall": { - "protocol_id": 663 - }, - "minecraft:block.nylium.break": { - "protocol_id": 664 - }, - "minecraft:block.nylium.step": { - "protocol_id": 665 - }, - "minecraft:block.nylium.place": { - "protocol_id": 666 - }, - "minecraft:block.nylium.hit": { - "protocol_id": 667 - }, - "minecraft:block.nylium.fall": { - "protocol_id": 668 - }, - "minecraft:block.nether_sprouts.break": { - "protocol_id": 669 - }, - "minecraft:block.nether_sprouts.step": { - "protocol_id": 670 - }, - "minecraft:block.nether_sprouts.place": { - "protocol_id": 671 - }, - "minecraft:block.nether_sprouts.hit": { - "protocol_id": 672 - }, - "minecraft:block.nether_sprouts.fall": { - "protocol_id": 673 - }, - "minecraft:block.fungus.break": { - "protocol_id": 674 - }, - "minecraft:block.fungus.step": { - "protocol_id": 675 - }, - "minecraft:block.fungus.place": { - "protocol_id": 676 - }, - "minecraft:block.fungus.hit": { - "protocol_id": 677 - }, - "minecraft:block.fungus.fall": { - "protocol_id": 678 - }, - "minecraft:block.weeping_vines.break": { - "protocol_id": 679 - }, - "minecraft:block.weeping_vines.step": { - "protocol_id": 680 - }, - "minecraft:block.weeping_vines.place": { - "protocol_id": 681 - }, - "minecraft:block.weeping_vines.hit": { - "protocol_id": 682 - }, - "minecraft:block.weeping_vines.fall": { - "protocol_id": 683 - }, - "minecraft:block.wart_block.break": { - "protocol_id": 684 - }, - "minecraft:block.wart_block.step": { - "protocol_id": 685 - }, - "minecraft:block.wart_block.place": { - "protocol_id": 686 - }, - "minecraft:block.wart_block.hit": { - "protocol_id": 687 - }, - "minecraft:block.wart_block.fall": { - "protocol_id": 688 - }, - "minecraft:block.netherite_block.break": { - "protocol_id": 689 - }, - "minecraft:block.netherite_block.step": { - "protocol_id": 690 - }, - "minecraft:block.netherite_block.place": { - "protocol_id": 691 - }, - "minecraft:block.netherite_block.hit": { - "protocol_id": 692 - }, - "minecraft:block.netherite_block.fall": { - "protocol_id": 693 - }, - "minecraft:block.netherrack.break": { - "protocol_id": 694 - }, - "minecraft:block.netherrack.step": { - "protocol_id": 695 - }, - "minecraft:block.netherrack.place": { - "protocol_id": 696 - }, - "minecraft:block.netherrack.hit": { - "protocol_id": 697 - }, - "minecraft:block.netherrack.fall": { - "protocol_id": 698 - }, - "minecraft:block.note_block.basedrum": { - "protocol_id": 699 - }, - "minecraft:block.note_block.bass": { - "protocol_id": 700 - }, - "minecraft:block.note_block.bell": { - "protocol_id": 701 - }, - "minecraft:block.note_block.chime": { - "protocol_id": 702 - }, - "minecraft:block.note_block.flute": { - "protocol_id": 703 - }, - "minecraft:block.note_block.guitar": { - "protocol_id": 704 - }, - "minecraft:block.note_block.harp": { - "protocol_id": 705 - }, - "minecraft:block.note_block.hat": { - "protocol_id": 706 - }, - "minecraft:block.note_block.pling": { - "protocol_id": 707 - }, - "minecraft:block.note_block.snare": { - "protocol_id": 708 - }, - "minecraft:block.note_block.xylophone": { - "protocol_id": 709 - }, - "minecraft:block.note_block.iron_xylophone": { - "protocol_id": 710 - }, - "minecraft:block.note_block.cow_bell": { - "protocol_id": 711 - }, - "minecraft:block.note_block.didgeridoo": { - "protocol_id": 712 - }, - "minecraft:block.note_block.bit": { - "protocol_id": 713 - }, - "minecraft:block.note_block.banjo": { - "protocol_id": 714 - }, - "minecraft:entity.ocelot.hurt": { - "protocol_id": 715 - }, - "minecraft:entity.ocelot.ambient": { - "protocol_id": 716 - }, - "minecraft:entity.ocelot.death": { - "protocol_id": 717 - }, - "minecraft:entity.painting.break": { - "protocol_id": 718 - }, - "minecraft:entity.painting.place": { - "protocol_id": 719 - }, - "minecraft:entity.panda.pre_sneeze": { - "protocol_id": 720 - }, - "minecraft:entity.panda.sneeze": { - "protocol_id": 721 - }, - "minecraft:entity.panda.ambient": { - "protocol_id": 722 - }, - "minecraft:entity.panda.death": { - "protocol_id": 723 - }, - "minecraft:entity.panda.eat": { - "protocol_id": 724 - }, - "minecraft:entity.panda.step": { - "protocol_id": 725 - }, - "minecraft:entity.panda.cant_breed": { - "protocol_id": 726 - }, - "minecraft:entity.panda.aggressive_ambient": { - "protocol_id": 727 - }, - "minecraft:entity.panda.worried_ambient": { - "protocol_id": 728 - }, - "minecraft:entity.panda.hurt": { - "protocol_id": 729 - }, - "minecraft:entity.panda.bite": { - "protocol_id": 730 - }, - "minecraft:entity.parrot.ambient": { - "protocol_id": 731 - }, - "minecraft:entity.parrot.death": { - "protocol_id": 732 - }, - "minecraft:entity.parrot.eat": { - "protocol_id": 733 - }, - "minecraft:entity.parrot.fly": { - "protocol_id": 734 - }, - "minecraft:entity.parrot.hurt": { - "protocol_id": 735 - }, - "minecraft:entity.parrot.imitate.blaze": { - "protocol_id": 736 - }, - "minecraft:entity.parrot.imitate.creeper": { - "protocol_id": 737 - }, - "minecraft:entity.parrot.imitate.drowned": { - "protocol_id": 738 - }, - "minecraft:entity.parrot.imitate.elder_guardian": { - "protocol_id": 739 - }, - "minecraft:entity.parrot.imitate.ender_dragon": { - "protocol_id": 740 - }, - "minecraft:entity.parrot.imitate.endermite": { - "protocol_id": 741 - }, - "minecraft:entity.parrot.imitate.evoker": { - "protocol_id": 742 - }, - "minecraft:entity.parrot.imitate.ghast": { - "protocol_id": 743 - }, - "minecraft:entity.parrot.imitate.guardian": { - "protocol_id": 744 - }, - "minecraft:entity.parrot.imitate.hoglin": { - "protocol_id": 745 - }, - "minecraft:entity.parrot.imitate.husk": { - "protocol_id": 746 - }, - "minecraft:entity.parrot.imitate.illusioner": { - "protocol_id": 747 - }, - "minecraft:entity.parrot.imitate.magma_cube": { - "protocol_id": 748 - }, - "minecraft:entity.parrot.imitate.phantom": { - "protocol_id": 749 - }, - "minecraft:entity.parrot.imitate.piglin": { - "protocol_id": 750 - }, - "minecraft:entity.parrot.imitate.piglin_brute": { - "protocol_id": 751 - }, - "minecraft:entity.parrot.imitate.pillager": { - "protocol_id": 752 - }, - "minecraft:entity.parrot.imitate.ravager": { - "protocol_id": 753 - }, - "minecraft:entity.parrot.imitate.shulker": { - "protocol_id": 754 - }, - "minecraft:entity.parrot.imitate.silverfish": { - "protocol_id": 755 - }, - "minecraft:entity.parrot.imitate.skeleton": { - "protocol_id": 756 - }, - "minecraft:entity.parrot.imitate.slime": { - "protocol_id": 757 - }, - "minecraft:entity.parrot.imitate.spider": { - "protocol_id": 758 - }, - "minecraft:entity.parrot.imitate.stray": { - "protocol_id": 759 - }, - "minecraft:entity.parrot.imitate.vex": { - "protocol_id": 760 - }, - "minecraft:entity.parrot.imitate.vindicator": { - "protocol_id": 761 - }, - "minecraft:entity.parrot.imitate.witch": { - "protocol_id": 762 - }, - "minecraft:entity.parrot.imitate.wither": { - "protocol_id": 763 - }, - "minecraft:entity.parrot.imitate.wither_skeleton": { - "protocol_id": 764 - }, - "minecraft:entity.parrot.imitate.zoglin": { - "protocol_id": 765 - }, - "minecraft:entity.parrot.imitate.zombie": { - "protocol_id": 766 - }, - "minecraft:entity.parrot.imitate.zombie_villager": { - "protocol_id": 767 - }, - "minecraft:entity.parrot.step": { - "protocol_id": 768 - }, - "minecraft:entity.phantom.ambient": { - "protocol_id": 769 - }, - "minecraft:entity.phantom.bite": { - "protocol_id": 770 - }, - "minecraft:entity.phantom.death": { - "protocol_id": 771 - }, - "minecraft:entity.phantom.flap": { - "protocol_id": 772 - }, - "minecraft:entity.phantom.hurt": { - "protocol_id": 773 - }, - "minecraft:entity.phantom.swoop": { - "protocol_id": 774 - }, - "minecraft:entity.pig.ambient": { - "protocol_id": 775 - }, - "minecraft:entity.pig.death": { - "protocol_id": 776 - }, - "minecraft:entity.pig.hurt": { - "protocol_id": 777 - }, - "minecraft:entity.pig.saddle": { - "protocol_id": 778 - }, - "minecraft:entity.pig.step": { - "protocol_id": 779 - }, - "minecraft:entity.piglin.admiring_item": { - "protocol_id": 780 - }, - "minecraft:entity.piglin.ambient": { - "protocol_id": 781 - }, - "minecraft:entity.piglin.angry": { - "protocol_id": 782 - }, - "minecraft:entity.piglin.celebrate": { - "protocol_id": 783 - }, - "minecraft:entity.piglin.death": { - "protocol_id": 784 - }, - "minecraft:entity.piglin.jealous": { - "protocol_id": 785 - }, - "minecraft:entity.piglin.hurt": { - "protocol_id": 786 - }, - "minecraft:entity.piglin.retreat": { - "protocol_id": 787 - }, - "minecraft:entity.piglin.step": { - "protocol_id": 788 - }, - "minecraft:entity.piglin.converted_to_zombified": { - "protocol_id": 789 - }, - "minecraft:entity.piglin_brute.ambient": { - "protocol_id": 790 - }, - "minecraft:entity.piglin_brute.angry": { - "protocol_id": 791 - }, - "minecraft:entity.piglin_brute.death": { - "protocol_id": 792 - }, - "minecraft:entity.piglin_brute.hurt": { - "protocol_id": 793 - }, - "minecraft:entity.piglin_brute.step": { - "protocol_id": 794 - }, - "minecraft:entity.piglin_brute.converted_to_zombified": { - "protocol_id": 795 - }, - "minecraft:entity.pillager.ambient": { - "protocol_id": 796 - }, - "minecraft:entity.pillager.celebrate": { - "protocol_id": 797 - }, - "minecraft:entity.pillager.death": { - "protocol_id": 798 - }, - "minecraft:entity.pillager.hurt": { - "protocol_id": 799 - }, - "minecraft:block.piston.contract": { - "protocol_id": 800 - }, - "minecraft:block.piston.extend": { - "protocol_id": 801 - }, - "minecraft:entity.player.attack.crit": { - "protocol_id": 802 - }, - "minecraft:entity.player.attack.knockback": { - "protocol_id": 803 - }, - "minecraft:entity.player.attack.nodamage": { - "protocol_id": 804 - }, - "minecraft:entity.player.attack.strong": { - "protocol_id": 805 - }, - "minecraft:entity.player.attack.sweep": { - "protocol_id": 806 - }, - "minecraft:entity.player.attack.weak": { - "protocol_id": 807 - }, - "minecraft:entity.player.big_fall": { - "protocol_id": 808 - }, - "minecraft:entity.player.breath": { - "protocol_id": 809 - }, - "minecraft:entity.player.burp": { - "protocol_id": 810 - }, - "minecraft:entity.player.death": { - "protocol_id": 811 - }, - "minecraft:entity.player.hurt": { - "protocol_id": 812 - }, - "minecraft:entity.player.hurt_drown": { - "protocol_id": 813 - }, - "minecraft:entity.player.hurt_freeze": { - "protocol_id": 814 - }, - "minecraft:entity.player.hurt_on_fire": { - "protocol_id": 815 - }, - "minecraft:entity.player.hurt_sweet_berry_bush": { - "protocol_id": 816 - }, - "minecraft:entity.player.levelup": { - "protocol_id": 817 - }, - "minecraft:entity.player.small_fall": { - "protocol_id": 818 - }, - "minecraft:entity.player.splash": { - "protocol_id": 819 - }, - "minecraft:entity.player.splash.high_speed": { - "protocol_id": 820 - }, - "minecraft:entity.player.swim": { - "protocol_id": 821 - }, - "minecraft:entity.polar_bear.ambient": { - "protocol_id": 822 - }, - "minecraft:entity.polar_bear.ambient_baby": { - "protocol_id": 823 - }, - "minecraft:entity.polar_bear.death": { - "protocol_id": 824 - }, - "minecraft:entity.polar_bear.hurt": { - "protocol_id": 825 - }, - "minecraft:entity.polar_bear.step": { - "protocol_id": 826 - }, - "minecraft:entity.polar_bear.warning": { - "protocol_id": 827 - }, - "minecraft:block.polished_deepslate.break": { - "protocol_id": 828 - }, - "minecraft:block.polished_deepslate.fall": { - "protocol_id": 829 - }, - "minecraft:block.polished_deepslate.hit": { - "protocol_id": 830 - }, - "minecraft:block.polished_deepslate.place": { - "protocol_id": 831 - }, - "minecraft:block.polished_deepslate.step": { - "protocol_id": 832 - }, - "minecraft:block.portal.ambient": { - "protocol_id": 833 - }, - "minecraft:block.portal.travel": { - "protocol_id": 834 - }, - "minecraft:block.portal.trigger": { - "protocol_id": 835 - }, - "minecraft:block.powder_snow.break": { - "protocol_id": 836 - }, - "minecraft:block.powder_snow.fall": { - "protocol_id": 837 - }, - "minecraft:block.powder_snow.hit": { - "protocol_id": 838 - }, - "minecraft:block.powder_snow.place": { - "protocol_id": 839 - }, - "minecraft:block.powder_snow.step": { - "protocol_id": 840 - }, - "minecraft:entity.puffer_fish.ambient": { - "protocol_id": 841 - }, - "minecraft:entity.puffer_fish.blow_out": { - "protocol_id": 842 - }, - "minecraft:entity.puffer_fish.blow_up": { - "protocol_id": 843 - }, - "minecraft:entity.puffer_fish.death": { - "protocol_id": 844 - }, - "minecraft:entity.puffer_fish.flop": { - "protocol_id": 845 - }, - "minecraft:entity.puffer_fish.hurt": { - "protocol_id": 846 - }, - "minecraft:entity.puffer_fish.sting": { - "protocol_id": 847 - }, - "minecraft:block.pumpkin.carve": { - "protocol_id": 848 - }, - "minecraft:entity.rabbit.ambient": { - "protocol_id": 849 - }, - "minecraft:entity.rabbit.attack": { - "protocol_id": 850 - }, - "minecraft:entity.rabbit.death": { - "protocol_id": 851 - }, - "minecraft:entity.rabbit.hurt": { - "protocol_id": 852 - }, - "minecraft:entity.rabbit.jump": { - "protocol_id": 853 - }, - "minecraft:event.raid.horn": { - "protocol_id": 854 - }, - "minecraft:entity.ravager.ambient": { - "protocol_id": 855 - }, - "minecraft:entity.ravager.attack": { - "protocol_id": 856 - }, - "minecraft:entity.ravager.celebrate": { - "protocol_id": 857 - }, - "minecraft:entity.ravager.death": { - "protocol_id": 858 - }, - "minecraft:entity.ravager.hurt": { - "protocol_id": 859 - }, - "minecraft:entity.ravager.step": { - "protocol_id": 860 - }, - "minecraft:entity.ravager.stunned": { - "protocol_id": 861 - }, - "minecraft:entity.ravager.roar": { - "protocol_id": 862 - }, - "minecraft:block.nether_gold_ore.break": { - "protocol_id": 863 - }, - "minecraft:block.nether_gold_ore.fall": { - "protocol_id": 864 - }, - "minecraft:block.nether_gold_ore.hit": { - "protocol_id": 865 - }, - "minecraft:block.nether_gold_ore.place": { - "protocol_id": 866 - }, - "minecraft:block.nether_gold_ore.step": { - "protocol_id": 867 - }, - "minecraft:block.nether_ore.break": { - "protocol_id": 868 - }, - "minecraft:block.nether_ore.fall": { - "protocol_id": 869 - }, - "minecraft:block.nether_ore.hit": { - "protocol_id": 870 - }, - "minecraft:block.nether_ore.place": { - "protocol_id": 871 - }, - "minecraft:block.nether_ore.step": { - "protocol_id": 872 - }, - "minecraft:block.redstone_torch.burnout": { - "protocol_id": 873 - }, - "minecraft:block.respawn_anchor.ambient": { - "protocol_id": 874 - }, - "minecraft:block.respawn_anchor.charge": { - "protocol_id": 875 - }, - "minecraft:block.respawn_anchor.deplete": { - "protocol_id": 876 - }, - "minecraft:block.respawn_anchor.set_spawn": { - "protocol_id": 877 - }, - "minecraft:block.rooted_dirt.break": { - "protocol_id": 878 - }, - "minecraft:block.rooted_dirt.fall": { - "protocol_id": 879 - }, - "minecraft:block.rooted_dirt.hit": { - "protocol_id": 880 - }, - "minecraft:block.rooted_dirt.place": { - "protocol_id": 881 - }, - "minecraft:block.rooted_dirt.step": { - "protocol_id": 882 - }, - "minecraft:entity.salmon.ambient": { - "protocol_id": 883 - }, - "minecraft:entity.salmon.death": { - "protocol_id": 884 - }, - "minecraft:entity.salmon.flop": { - "protocol_id": 885 - }, - "minecraft:entity.salmon.hurt": { - "protocol_id": 886 - }, - "minecraft:block.sand.break": { - "protocol_id": 887 - }, - "minecraft:block.sand.fall": { - "protocol_id": 888 - }, - "minecraft:block.sand.hit": { - "protocol_id": 889 - }, - "minecraft:block.sand.place": { - "protocol_id": 890 - }, - "minecraft:block.sand.step": { - "protocol_id": 891 - }, - "minecraft:block.scaffolding.break": { - "protocol_id": 892 - }, - "minecraft:block.scaffolding.fall": { - "protocol_id": 893 - }, - "minecraft:block.scaffolding.hit": { - "protocol_id": 894 - }, - "minecraft:block.scaffolding.place": { - "protocol_id": 895 - }, - "minecraft:block.scaffolding.step": { - "protocol_id": 896 - }, - "minecraft:block.sculk_sensor.clicking": { - "protocol_id": 897 - }, - "minecraft:block.sculk_sensor.clicking_stop": { - "protocol_id": 898 - }, - "minecraft:block.sculk_sensor.break": { - "protocol_id": 899 - }, - "minecraft:block.sculk_sensor.fall": { - "protocol_id": 900 - }, - "minecraft:block.sculk_sensor.hit": { - "protocol_id": 901 - }, - "minecraft:block.sculk_sensor.place": { - "protocol_id": 902 - }, - "minecraft:block.sculk_sensor.step": { - "protocol_id": 903 - }, - "minecraft:entity.sheep.ambient": { - "protocol_id": 904 - }, - "minecraft:entity.sheep.death": { - "protocol_id": 905 - }, - "minecraft:entity.sheep.hurt": { - "protocol_id": 906 - }, - "minecraft:entity.sheep.shear": { - "protocol_id": 907 - }, - "minecraft:entity.sheep.step": { - "protocol_id": 908 - }, - "minecraft:item.shield.block": { - "protocol_id": 909 - }, - "minecraft:item.shield.break": { - "protocol_id": 910 - }, - "minecraft:block.shroomlight.break": { - "protocol_id": 911 - }, - "minecraft:block.shroomlight.step": { - "protocol_id": 912 - }, - "minecraft:block.shroomlight.place": { - "protocol_id": 913 - }, - "minecraft:block.shroomlight.hit": { - "protocol_id": 914 - }, - "minecraft:block.shroomlight.fall": { - "protocol_id": 915 - }, - "minecraft:item.shovel.flatten": { - "protocol_id": 916 - }, - "minecraft:entity.shulker.ambient": { - "protocol_id": 917 - }, - "minecraft:block.shulker_box.close": { - "protocol_id": 918 - }, - "minecraft:block.shulker_box.open": { - "protocol_id": 919 - }, - "minecraft:entity.shulker_bullet.hit": { - "protocol_id": 920 - }, - "minecraft:entity.shulker_bullet.hurt": { - "protocol_id": 921 - }, - "minecraft:entity.shulker.close": { - "protocol_id": 922 - }, - "minecraft:entity.shulker.death": { - "protocol_id": 923 - }, - "minecraft:entity.shulker.hurt": { - "protocol_id": 924 - }, - "minecraft:entity.shulker.hurt_closed": { - "protocol_id": 925 - }, - "minecraft:entity.shulker.open": { - "protocol_id": 926 - }, - "minecraft:entity.shulker.shoot": { - "protocol_id": 927 - }, - "minecraft:entity.shulker.teleport": { - "protocol_id": 928 - }, - "minecraft:entity.silverfish.ambient": { - "protocol_id": 929 - }, - "minecraft:entity.silverfish.death": { - "protocol_id": 930 - }, - "minecraft:entity.silverfish.hurt": { - "protocol_id": 931 - }, - "minecraft:entity.silverfish.step": { - "protocol_id": 932 - }, - "minecraft:entity.skeleton.ambient": { - "protocol_id": 933 - }, - "minecraft:entity.skeleton.converted_to_stray": { - "protocol_id": 934 - }, - "minecraft:entity.skeleton.death": { - "protocol_id": 935 - }, - "minecraft:entity.skeleton_horse.ambient": { - "protocol_id": 936 - }, - "minecraft:entity.skeleton_horse.death": { - "protocol_id": 937 - }, - "minecraft:entity.skeleton_horse.hurt": { - "protocol_id": 938 - }, - "minecraft:entity.skeleton_horse.swim": { - "protocol_id": 939 - }, - "minecraft:entity.skeleton_horse.ambient_water": { - "protocol_id": 940 - }, - "minecraft:entity.skeleton_horse.gallop_water": { - "protocol_id": 941 - }, - "minecraft:entity.skeleton_horse.jump_water": { - "protocol_id": 942 - }, - "minecraft:entity.skeleton_horse.step_water": { - "protocol_id": 943 - }, - "minecraft:entity.skeleton.hurt": { - "protocol_id": 944 - }, - "minecraft:entity.skeleton.shoot": { - "protocol_id": 945 - }, - "minecraft:entity.skeleton.step": { - "protocol_id": 946 - }, - "minecraft:entity.slime.attack": { - "protocol_id": 947 - }, - "minecraft:entity.slime.death": { - "protocol_id": 948 - }, - "minecraft:entity.slime.hurt": { - "protocol_id": 949 - }, - "minecraft:entity.slime.jump": { - "protocol_id": 950 - }, - "minecraft:entity.slime.squish": { - "protocol_id": 951 - }, - "minecraft:block.slime_block.break": { - "protocol_id": 952 - }, - "minecraft:block.slime_block.fall": { - "protocol_id": 953 - }, - "minecraft:block.slime_block.hit": { - "protocol_id": 954 - }, - "minecraft:block.slime_block.place": { - "protocol_id": 955 - }, - "minecraft:block.slime_block.step": { - "protocol_id": 956 - }, - "minecraft:block.small_amethyst_bud.break": { - "protocol_id": 957 - }, - "minecraft:block.small_amethyst_bud.place": { - "protocol_id": 958 - }, - "minecraft:block.small_dripleaf.break": { - "protocol_id": 959 - }, - "minecraft:block.small_dripleaf.fall": { - "protocol_id": 960 - }, - "minecraft:block.small_dripleaf.hit": { - "protocol_id": 961 - }, - "minecraft:block.small_dripleaf.place": { - "protocol_id": 962 - }, - "minecraft:block.small_dripleaf.step": { - "protocol_id": 963 - }, - "minecraft:block.soul_sand.break": { - "protocol_id": 964 - }, - "minecraft:block.soul_sand.step": { - "protocol_id": 965 - }, - "minecraft:block.soul_sand.place": { - "protocol_id": 966 - }, - "minecraft:block.soul_sand.hit": { - "protocol_id": 967 - }, - "minecraft:block.soul_sand.fall": { - "protocol_id": 968 - }, - "minecraft:block.soul_soil.break": { - "protocol_id": 969 - }, - "minecraft:block.soul_soil.step": { - "protocol_id": 970 - }, - "minecraft:block.soul_soil.place": { - "protocol_id": 971 - }, - "minecraft:block.soul_soil.hit": { - "protocol_id": 972 - }, - "minecraft:block.soul_soil.fall": { - "protocol_id": 973 - }, - "minecraft:particle.soul_escape": { - "protocol_id": 974 - }, - "minecraft:block.spore_blossom.break": { - "protocol_id": 975 - }, - "minecraft:block.spore_blossom.fall": { - "protocol_id": 976 - }, - "minecraft:block.spore_blossom.hit": { - "protocol_id": 977 - }, - "minecraft:block.spore_blossom.place": { - "protocol_id": 978 - }, - "minecraft:block.spore_blossom.step": { - "protocol_id": 979 - }, - "minecraft:entity.strider.ambient": { - "protocol_id": 980 - }, - "minecraft:entity.strider.happy": { - "protocol_id": 981 - }, - "minecraft:entity.strider.retreat": { - "protocol_id": 982 - }, - "minecraft:entity.strider.death": { - "protocol_id": 983 - }, - "minecraft:entity.strider.hurt": { - "protocol_id": 984 - }, - "minecraft:entity.strider.step": { - "protocol_id": 985 - }, - "minecraft:entity.strider.step_lava": { - "protocol_id": 986 - }, - "minecraft:entity.strider.eat": { - "protocol_id": 987 - }, - "minecraft:entity.strider.saddle": { - "protocol_id": 988 - }, - "minecraft:entity.slime.death_small": { - "protocol_id": 989 - }, - "minecraft:entity.slime.hurt_small": { - "protocol_id": 990 - }, - "minecraft:entity.slime.jump_small": { - "protocol_id": 991 - }, - "minecraft:entity.slime.squish_small": { - "protocol_id": 992 - }, - "minecraft:block.smithing_table.use": { - "protocol_id": 993 - }, - "minecraft:block.smoker.smoke": { - "protocol_id": 994 - }, - "minecraft:entity.snowball.throw": { - "protocol_id": 995 - }, - "minecraft:block.snow.break": { - "protocol_id": 996 - }, - "minecraft:block.snow.fall": { - "protocol_id": 997 - }, - "minecraft:entity.snow_golem.ambient": { - "protocol_id": 998 - }, - "minecraft:entity.snow_golem.death": { - "protocol_id": 999 - }, - "minecraft:entity.snow_golem.hurt": { - "protocol_id": 1000 - }, - "minecraft:entity.snow_golem.shoot": { - "protocol_id": 1001 - }, - "minecraft:entity.snow_golem.shear": { - "protocol_id": 1002 - }, - "minecraft:block.snow.hit": { - "protocol_id": 1003 - }, - "minecraft:block.snow.place": { - "protocol_id": 1004 - }, - "minecraft:block.snow.step": { - "protocol_id": 1005 - }, - "minecraft:entity.spider.ambient": { - "protocol_id": 1006 - }, - "minecraft:entity.spider.death": { - "protocol_id": 1007 - }, - "minecraft:entity.spider.hurt": { - "protocol_id": 1008 - }, - "minecraft:entity.spider.step": { - "protocol_id": 1009 - }, - "minecraft:entity.splash_potion.break": { - "protocol_id": 1010 - }, - "minecraft:entity.splash_potion.throw": { - "protocol_id": 1011 - }, - "minecraft:item.spyglass.use": { - "protocol_id": 1012 - }, - "minecraft:item.spyglass.stop_using": { - "protocol_id": 1013 - }, - "minecraft:entity.squid.ambient": { - "protocol_id": 1014 - }, - "minecraft:entity.squid.death": { - "protocol_id": 1015 - }, - "minecraft:entity.squid.hurt": { - "protocol_id": 1016 - }, - "minecraft:entity.squid.squirt": { - "protocol_id": 1017 - }, - "minecraft:block.stone.break": { - "protocol_id": 1018 - }, - "minecraft:block.stone_button.click_off": { - "protocol_id": 1019 - }, - "minecraft:block.stone_button.click_on": { - "protocol_id": 1020 - }, - "minecraft:block.stone.fall": { - "protocol_id": 1021 - }, - "minecraft:block.stone.hit": { - "protocol_id": 1022 - }, - "minecraft:block.stone.place": { - "protocol_id": 1023 - }, - "minecraft:block.stone_pressure_plate.click_off": { - "protocol_id": 1024 - }, - "minecraft:block.stone_pressure_plate.click_on": { - "protocol_id": 1025 - }, - "minecraft:block.stone.step": { - "protocol_id": 1026 - }, - "minecraft:entity.stray.ambient": { - "protocol_id": 1027 - }, - "minecraft:entity.stray.death": { - "protocol_id": 1028 - }, - "minecraft:entity.stray.hurt": { - "protocol_id": 1029 - }, - "minecraft:entity.stray.step": { - "protocol_id": 1030 - }, - "minecraft:block.sweet_berry_bush.break": { - "protocol_id": 1031 - }, - "minecraft:block.sweet_berry_bush.place": { - "protocol_id": 1032 - }, - "minecraft:block.sweet_berry_bush.pick_berries": { - "protocol_id": 1033 - }, - "minecraft:enchant.thorns.hit": { - "protocol_id": 1034 - }, - "minecraft:entity.tnt.primed": { - "protocol_id": 1035 - }, - "minecraft:item.totem.use": { - "protocol_id": 1036 - }, - "minecraft:item.trident.hit": { - "protocol_id": 1037 - }, - "minecraft:item.trident.hit_ground": { - "protocol_id": 1038 - }, - "minecraft:item.trident.return": { - "protocol_id": 1039 - }, - "minecraft:item.trident.riptide_1": { - "protocol_id": 1040 - }, - "minecraft:item.trident.riptide_2": { - "protocol_id": 1041 - }, - "minecraft:item.trident.riptide_3": { - "protocol_id": 1042 - }, - "minecraft:item.trident.throw": { - "protocol_id": 1043 - }, - "minecraft:item.trident.thunder": { - "protocol_id": 1044 - }, - "minecraft:block.tripwire.attach": { - "protocol_id": 1045 - }, - "minecraft:block.tripwire.click_off": { - "protocol_id": 1046 - }, - "minecraft:block.tripwire.click_on": { - "protocol_id": 1047 - }, - "minecraft:block.tripwire.detach": { - "protocol_id": 1048 - }, - "minecraft:entity.tropical_fish.ambient": { - "protocol_id": 1049 - }, - "minecraft:entity.tropical_fish.death": { - "protocol_id": 1050 - }, - "minecraft:entity.tropical_fish.flop": { - "protocol_id": 1051 - }, - "minecraft:entity.tropical_fish.hurt": { - "protocol_id": 1052 - }, - "minecraft:block.tuff.break": { - "protocol_id": 1053 - }, - "minecraft:block.tuff.step": { - "protocol_id": 1054 - }, - "minecraft:block.tuff.place": { - "protocol_id": 1055 - }, - "minecraft:block.tuff.hit": { - "protocol_id": 1056 - }, - "minecraft:block.tuff.fall": { - "protocol_id": 1057 - }, - "minecraft:entity.turtle.ambient_land": { - "protocol_id": 1058 - }, - "minecraft:entity.turtle.death": { - "protocol_id": 1059 - }, - "minecraft:entity.turtle.death_baby": { - "protocol_id": 1060 - }, - "minecraft:entity.turtle.egg_break": { - "protocol_id": 1061 - }, - "minecraft:entity.turtle.egg_crack": { - "protocol_id": 1062 - }, - "minecraft:entity.turtle.egg_hatch": { - "protocol_id": 1063 - }, - "minecraft:entity.turtle.hurt": { - "protocol_id": 1064 - }, - "minecraft:entity.turtle.hurt_baby": { - "protocol_id": 1065 - }, - "minecraft:entity.turtle.lay_egg": { - "protocol_id": 1066 - }, - "minecraft:entity.turtle.shamble": { - "protocol_id": 1067 - }, - "minecraft:entity.turtle.shamble_baby": { - "protocol_id": 1068 - }, - "minecraft:entity.turtle.swim": { - "protocol_id": 1069 - }, - "minecraft:ui.button.click": { - "protocol_id": 1070 - }, - "minecraft:ui.loom.select_pattern": { - "protocol_id": 1071 - }, - "minecraft:ui.loom.take_result": { - "protocol_id": 1072 - }, - "minecraft:ui.cartography_table.take_result": { - "protocol_id": 1073 - }, - "minecraft:ui.stonecutter.take_result": { - "protocol_id": 1074 - }, - "minecraft:ui.stonecutter.select_recipe": { - "protocol_id": 1075 - }, - "minecraft:ui.toast.challenge_complete": { - "protocol_id": 1076 - }, - "minecraft:ui.toast.in": { - "protocol_id": 1077 - }, - "minecraft:ui.toast.out": { - "protocol_id": 1078 - }, - "minecraft:entity.vex.ambient": { - "protocol_id": 1079 - }, - "minecraft:entity.vex.charge": { - "protocol_id": 1080 - }, - "minecraft:entity.vex.death": { - "protocol_id": 1081 - }, - "minecraft:entity.vex.hurt": { - "protocol_id": 1082 - }, - "minecraft:entity.villager.ambient": { - "protocol_id": 1083 - }, - "minecraft:entity.villager.celebrate": { - "protocol_id": 1084 - }, - "minecraft:entity.villager.death": { - "protocol_id": 1085 - }, - "minecraft:entity.villager.hurt": { - "protocol_id": 1086 - }, - "minecraft:entity.villager.no": { - "protocol_id": 1087 - }, - "minecraft:entity.villager.trade": { - "protocol_id": 1088 - }, - "minecraft:entity.villager.yes": { - "protocol_id": 1089 - }, - "minecraft:entity.villager.work_armorer": { - "protocol_id": 1090 - }, - "minecraft:entity.villager.work_butcher": { - "protocol_id": 1091 - }, - "minecraft:entity.villager.work_cartographer": { - "protocol_id": 1092 - }, - "minecraft:entity.villager.work_cleric": { - "protocol_id": 1093 - }, - "minecraft:entity.villager.work_farmer": { - "protocol_id": 1094 - }, - "minecraft:entity.villager.work_fisherman": { - "protocol_id": 1095 - }, - "minecraft:entity.villager.work_fletcher": { - "protocol_id": 1096 - }, - "minecraft:entity.villager.work_leatherworker": { - "protocol_id": 1097 - }, - "minecraft:entity.villager.work_librarian": { - "protocol_id": 1098 - }, - "minecraft:entity.villager.work_mason": { - "protocol_id": 1099 - }, - "minecraft:entity.villager.work_shepherd": { - "protocol_id": 1100 - }, - "minecraft:entity.villager.work_toolsmith": { - "protocol_id": 1101 - }, - "minecraft:entity.villager.work_weaponsmith": { - "protocol_id": 1102 - }, - "minecraft:entity.vindicator.ambient": { - "protocol_id": 1103 - }, - "minecraft:entity.vindicator.celebrate": { - "protocol_id": 1104 - }, - "minecraft:entity.vindicator.death": { - "protocol_id": 1105 - }, - "minecraft:entity.vindicator.hurt": { - "protocol_id": 1106 - }, - "minecraft:block.vine.break": { - "protocol_id": 1107 - }, - "minecraft:block.vine.fall": { - "protocol_id": 1108 - }, - "minecraft:block.vine.hit": { - "protocol_id": 1109 - }, - "minecraft:block.vine.place": { - "protocol_id": 1110 - }, - "minecraft:block.vine.step": { - "protocol_id": 1111 - }, - "minecraft:block.lily_pad.place": { - "protocol_id": 1112 - }, - "minecraft:entity.wandering_trader.ambient": { - "protocol_id": 1113 - }, - "minecraft:entity.wandering_trader.death": { - "protocol_id": 1114 - }, - "minecraft:entity.wandering_trader.disappeared": { - "protocol_id": 1115 - }, - "minecraft:entity.wandering_trader.drink_milk": { - "protocol_id": 1116 - }, - "minecraft:entity.wandering_trader.drink_potion": { - "protocol_id": 1117 - }, - "minecraft:entity.wandering_trader.hurt": { - "protocol_id": 1118 - }, - "minecraft:entity.wandering_trader.no": { - "protocol_id": 1119 - }, - "minecraft:entity.wandering_trader.reappeared": { - "protocol_id": 1120 - }, - "minecraft:entity.wandering_trader.trade": { - "protocol_id": 1121 - }, - "minecraft:entity.wandering_trader.yes": { - "protocol_id": 1122 - }, - "minecraft:block.water.ambient": { - "protocol_id": 1123 - }, - "minecraft:weather.rain": { - "protocol_id": 1124 - }, - "minecraft:weather.rain.above": { - "protocol_id": 1125 - }, - "minecraft:block.wet_grass.break": { - "protocol_id": 1126 - }, - "minecraft:block.wet_grass.fall": { - "protocol_id": 1127 - }, - "minecraft:block.wet_grass.hit": { - "protocol_id": 1128 - }, - "minecraft:block.wet_grass.place": { - "protocol_id": 1129 - }, - "minecraft:block.wet_grass.step": { - "protocol_id": 1130 - }, - "minecraft:entity.witch.ambient": { - "protocol_id": 1131 - }, - "minecraft:entity.witch.celebrate": { - "protocol_id": 1132 - }, - "minecraft:entity.witch.death": { - "protocol_id": 1133 - }, - "minecraft:entity.witch.drink": { - "protocol_id": 1134 - }, - "minecraft:entity.witch.hurt": { - "protocol_id": 1135 - }, - "minecraft:entity.witch.throw": { - "protocol_id": 1136 - }, - "minecraft:entity.wither.ambient": { - "protocol_id": 1137 - }, - "minecraft:entity.wither.break_block": { - "protocol_id": 1138 - }, - "minecraft:entity.wither.death": { - "protocol_id": 1139 - }, - "minecraft:entity.wither.hurt": { - "protocol_id": 1140 - }, - "minecraft:entity.wither.shoot": { - "protocol_id": 1141 - }, - "minecraft:entity.wither_skeleton.ambient": { - "protocol_id": 1142 - }, - "minecraft:entity.wither_skeleton.death": { - "protocol_id": 1143 - }, - "minecraft:entity.wither_skeleton.hurt": { - "protocol_id": 1144 - }, - "minecraft:entity.wither_skeleton.step": { - "protocol_id": 1145 - }, - "minecraft:entity.wither.spawn": { - "protocol_id": 1146 - }, - "minecraft:entity.wolf.ambient": { - "protocol_id": 1147 - }, - "minecraft:entity.wolf.death": { - "protocol_id": 1148 - }, - "minecraft:entity.wolf.growl": { - "protocol_id": 1149 - }, - "minecraft:entity.wolf.howl": { - "protocol_id": 1150 - }, - "minecraft:entity.wolf.hurt": { - "protocol_id": 1151 - }, - "minecraft:entity.wolf.pant": { - "protocol_id": 1152 - }, - "minecraft:entity.wolf.shake": { - "protocol_id": 1153 - }, - "minecraft:entity.wolf.step": { - "protocol_id": 1154 - }, - "minecraft:entity.wolf.whine": { - "protocol_id": 1155 - }, - "minecraft:block.wooden_door.close": { - "protocol_id": 1156 - }, - "minecraft:block.wooden_door.open": { - "protocol_id": 1157 - }, - "minecraft:block.wooden_trapdoor.close": { - "protocol_id": 1158 - }, - "minecraft:block.wooden_trapdoor.open": { - "protocol_id": 1159 - }, - "minecraft:block.wood.break": { - "protocol_id": 1160 - }, - "minecraft:block.wooden_button.click_off": { - "protocol_id": 1161 - }, - "minecraft:block.wooden_button.click_on": { - "protocol_id": 1162 - }, - "minecraft:block.wood.fall": { - "protocol_id": 1163 - }, - "minecraft:block.wood.hit": { - "protocol_id": 1164 - }, - "minecraft:block.wood.place": { - "protocol_id": 1165 - }, - "minecraft:block.wooden_pressure_plate.click_off": { - "protocol_id": 1166 - }, - "minecraft:block.wooden_pressure_plate.click_on": { - "protocol_id": 1167 - }, - "minecraft:block.wood.step": { - "protocol_id": 1168 - }, - "minecraft:block.wool.break": { - "protocol_id": 1169 - }, - "minecraft:block.wool.fall": { - "protocol_id": 1170 - }, - "minecraft:block.wool.hit": { - "protocol_id": 1171 - }, - "minecraft:block.wool.place": { - "protocol_id": 1172 - }, - "minecraft:block.wool.step": { - "protocol_id": 1173 - }, - "minecraft:entity.zoglin.ambient": { - "protocol_id": 1174 - }, - "minecraft:entity.zoglin.angry": { - "protocol_id": 1175 - }, - "minecraft:entity.zoglin.attack": { - "protocol_id": 1176 - }, - "minecraft:entity.zoglin.death": { - "protocol_id": 1177 - }, - "minecraft:entity.zoglin.hurt": { - "protocol_id": 1178 - }, - "minecraft:entity.zoglin.step": { - "protocol_id": 1179 - }, - "minecraft:entity.zombie.ambient": { - "protocol_id": 1180 - }, - "minecraft:entity.zombie.attack_wooden_door": { - "protocol_id": 1181 - }, - "minecraft:entity.zombie.attack_iron_door": { - "protocol_id": 1182 - }, - "minecraft:entity.zombie.break_wooden_door": { - "protocol_id": 1183 - }, - "minecraft:entity.zombie.converted_to_drowned": { - "protocol_id": 1184 - }, - "minecraft:entity.zombie.death": { - "protocol_id": 1185 - }, - "minecraft:entity.zombie.destroy_egg": { - "protocol_id": 1186 - }, - "minecraft:entity.zombie_horse.ambient": { - "protocol_id": 1187 - }, - "minecraft:entity.zombie_horse.death": { - "protocol_id": 1188 - }, - "minecraft:entity.zombie_horse.hurt": { - "protocol_id": 1189 - }, - "minecraft:entity.zombie.hurt": { - "protocol_id": 1190 - }, - "minecraft:entity.zombie.infect": { - "protocol_id": 1191 - }, - "minecraft:entity.zombified_piglin.ambient": { - "protocol_id": 1192 - }, - "minecraft:entity.zombified_piglin.angry": { - "protocol_id": 1193 - }, - "minecraft:entity.zombified_piglin.death": { - "protocol_id": 1194 - }, - "minecraft:entity.zombified_piglin.hurt": { - "protocol_id": 1195 - }, - "minecraft:entity.zombie.step": { - "protocol_id": 1196 - }, - "minecraft:entity.zombie_villager.ambient": { - "protocol_id": 1197 - }, - "minecraft:entity.zombie_villager.converted": { - "protocol_id": 1198 - }, - "minecraft:entity.zombie_villager.cure": { - "protocol_id": 1199 - }, - "minecraft:entity.zombie_villager.death": { - "protocol_id": 1200 - }, - "minecraft:entity.zombie_villager.hurt": { - "protocol_id": 1201 - }, - "minecraft:entity.zombie_villager.step": { - "protocol_id": 1202 - } - } - }, - "minecraft:fluid": { - "default": "minecraft:empty", - "protocol_id": 2, - "entries": { - "minecraft:empty": { - "protocol_id": 0 - }, - "minecraft:flowing_water": { - "protocol_id": 1 - }, - "minecraft:water": { - "protocol_id": 2 - }, - "minecraft:flowing_lava": { - "protocol_id": 3 - }, - "minecraft:lava": { - "protocol_id": 4 - } - } - }, - "minecraft:mob_effect": { - "protocol_id": 3, - "entries": { - "minecraft:speed": { - "protocol_id": 1 - }, - "minecraft:slowness": { - "protocol_id": 2 - }, - "minecraft:haste": { - "protocol_id": 3 - }, - "minecraft:mining_fatigue": { - "protocol_id": 4 - }, - "minecraft:strength": { - "protocol_id": 5 - }, - "minecraft:instant_health": { - "protocol_id": 6 - }, - "minecraft:instant_damage": { - "protocol_id": 7 - }, - "minecraft:jump_boost": { - "protocol_id": 8 - }, - "minecraft:nausea": { - "protocol_id": 9 - }, - "minecraft:regeneration": { - "protocol_id": 10 - }, - "minecraft:resistance": { - "protocol_id": 11 - }, - "minecraft:fire_resistance": { - "protocol_id": 12 - }, - "minecraft:water_breathing": { - "protocol_id": 13 - }, - "minecraft:invisibility": { - "protocol_id": 14 - }, - "minecraft:blindness": { - "protocol_id": 15 - }, - "minecraft:night_vision": { - "protocol_id": 16 - }, - "minecraft:hunger": { - "protocol_id": 17 - }, - "minecraft:weakness": { - "protocol_id": 18 - }, - "minecraft:poison": { - "protocol_id": 19 - }, - "minecraft:wither": { - "protocol_id": 20 - }, - "minecraft:health_boost": { - "protocol_id": 21 - }, - "minecraft:absorption": { - "protocol_id": 22 - }, - "minecraft:saturation": { - "protocol_id": 23 - }, - "minecraft:glowing": { + "minecraft:circle": { "protocol_id": 24 }, - "minecraft:levitation": { - "protocol_id": 25 + "minecraft:creeper": { + "protocol_id": 36 }, - "minecraft:luck": { - "protocol_id": 26 + "minecraft:cross": { + "protocol_id": 14 }, - "minecraft:unluck": { - "protocol_id": 27 - }, - "minecraft:slow_falling": { - "protocol_id": 28 - }, - "minecraft:conduit_power": { - "protocol_id": 29 - }, - "minecraft:dolphins_grace": { - "protocol_id": 30 - }, - "minecraft:bad_omen": { + "minecraft:curly_border": { "protocol_id": 31 }, - "minecraft:hero_of_the_village": { + "minecraft:diagonal_left": { + "protocol_id": 20 + }, + "minecraft:diagonal_right": { + "protocol_id": 23 + }, + "minecraft:diagonal_up_left": { + "protocol_id": 22 + }, + "minecraft:diagonal_up_right": { + "protocol_id": 21 + }, + "minecraft:flower": { + "protocol_id": 38 + }, + "minecraft:globe": { + "protocol_id": 35 + }, + "minecraft:gradient": { "protocol_id": 32 + }, + "minecraft:gradient_up": { + "protocol_id": 33 + }, + "minecraft:half_horizontal": { + "protocol_id": 27 + }, + "minecraft:half_horizontal_bottom": { + "protocol_id": 29 + }, + "minecraft:half_vertical": { + "protocol_id": 26 + }, + "minecraft:half_vertical_right": { + "protocol_id": 28 + }, + "minecraft:mojang": { + "protocol_id": 39 + }, + "minecraft:piglin": { + "protocol_id": 40 + }, + "minecraft:rhombus": { + "protocol_id": 25 + }, + "minecraft:skull": { + "protocol_id": 37 + }, + "minecraft:small_stripes": { + "protocol_id": 13 + }, + "minecraft:square_bottom_left": { + "protocol_id": 1 + }, + "minecraft:square_bottom_right": { + "protocol_id": 2 + }, + "minecraft:square_top_left": { + "protocol_id": 3 + }, + "minecraft:square_top_right": { + "protocol_id": 4 + }, + "minecraft:straight_cross": { + "protocol_id": 15 + }, + "minecraft:stripe_bottom": { + "protocol_id": 5 + }, + "minecraft:stripe_center": { + "protocol_id": 9 + }, + "minecraft:stripe_downleft": { + "protocol_id": 12 + }, + "minecraft:stripe_downright": { + "protocol_id": 11 + }, + "minecraft:stripe_left": { + "protocol_id": 7 + }, + "minecraft:stripe_middle": { + "protocol_id": 10 + }, + "minecraft:stripe_right": { + "protocol_id": 8 + }, + "minecraft:stripe_top": { + "protocol_id": 6 + }, + "minecraft:triangle_bottom": { + "protocol_id": 16 + }, + "minecraft:triangle_top": { + "protocol_id": 17 + }, + "minecraft:triangles_bottom": { + "protocol_id": 18 + }, + "minecraft:triangles_top": { + "protocol_id": 19 } - } + }, + "protocol_id": 61 }, "minecraft:block": { "default": "minecraft:air", - "protocol_id": 4, "entries": { - "minecraft:air": { - "protocol_id": 0 + "minecraft:acacia_button": { + "protocol_id": 342 }, - "minecraft:stone": { - "protocol_id": 1 + "minecraft:acacia_door": { + "protocol_id": 525 }, - "minecraft:granite": { - "protocol_id": 2 + "minecraft:acacia_fence": { + "protocol_id": 519 }, - "minecraft:polished_granite": { - "protocol_id": 3 + "minecraft:acacia_fence_gate": { + "protocol_id": 513 }, - "minecraft:diorite": { - "protocol_id": 4 + "minecraft:acacia_leaves": { + "protocol_id": 74 }, - "minecraft:polished_diorite": { - "protocol_id": 5 - }, - "minecraft:andesite": { - "protocol_id": 6 - }, - "minecraft:polished_andesite": { - "protocol_id": 7 - }, - "minecraft:grass_block": { - "protocol_id": 8 - }, - "minecraft:dirt": { - "protocol_id": 9 - }, - "minecraft:coarse_dirt": { - "protocol_id": 10 - }, - "minecraft:podzol": { - "protocol_id": 11 - }, - "minecraft:cobblestone": { - "protocol_id": 12 - }, - "minecraft:oak_planks": { - "protocol_id": 13 - }, - "minecraft:spruce_planks": { - "protocol_id": 14 - }, - "minecraft:birch_planks": { - "protocol_id": 15 - }, - "minecraft:jungle_planks": { - "protocol_id": 16 + "minecraft:acacia_log": { + "protocol_id": 44 }, "minecraft:acacia_planks": { "protocol_id": 17 }, + "minecraft:acacia_pressure_plate": { + "protocol_id": 196 + }, + "minecraft:acacia_sapling": { + "protocol_id": 24 + }, + "minecraft:acacia_sign": { + "protocol_id": 174 + }, + "minecraft:acacia_slab": { + "protocol_id": 489 + }, + "minecraft:acacia_stairs": { + "protocol_id": 406 + }, + "minecraft:acacia_trapdoor": { + "protocol_id": 246 + }, + "minecraft:acacia_wall_sign": { + "protocol_id": 185 + }, + "minecraft:acacia_wood": { + "protocol_id": 60 + }, + "minecraft:activator_rail": { + "protocol_id": 372 + }, + "minecraft:air": { + "protocol_id": 0 + }, + "minecraft:allium": { + "protocol_id": 137 + }, + "minecraft:amethyst_block": { + "protocol_id": 836 + }, + "minecraft:amethyst_cluster": { + "protocol_id": 838 + }, + "minecraft:ancient_debris": { + "protocol_id": 774 + }, + "minecraft:andesite": { + "protocol_id": 6 + }, + "minecraft:andesite_slab": { + "protocol_id": 688 + }, + "minecraft:andesite_stairs": { + "protocol_id": 675 + }, + "minecraft:andesite_wall": { + "protocol_id": 700 + }, + "minecraft:anvil": { + "protocol_id": 357 + }, + "minecraft:attached_melon_stem": { + "protocol_id": 269 + }, + "minecraft:attached_pumpkin_stem": { + "protocol_id": 268 + }, + "minecraft:azalea": { + "protocol_id": 891 + }, + "minecraft:azalea_leaves": { + "protocol_id": 77 + }, + "minecraft:azure_bluet": { + "protocol_id": 138 + }, + "minecraft:bamboo": { + "protocol_id": 660 + }, + "minecraft:bamboo_sapling": { + "protocol_id": 659 + }, + "minecraft:barrel": { + "protocol_id": 707 + }, + "minecraft:barrier": { + "protocol_id": 410 + }, + "minecraft:basalt": { + "protocol_id": 216 + }, + "minecraft:beacon": { + "protocol_id": 307 + }, + "minecraft:bedrock": { + "protocol_id": 27 + }, + "minecraft:bee_nest": { + "protocol_id": 769 + }, + "minecraft:beehive": { + "protocol_id": 770 + }, + "minecraft:beetroots": { + "protocol_id": 535 + }, + "minecraft:bell": { + "protocol_id": 716 + }, + "minecraft:big_dripleaf": { + "protocol_id": 895 + }, + "minecraft:big_dripleaf_stem": { + "protocol_id": 896 + }, + "minecraft:birch_button": { + "protocol_id": 340 + }, + "minecraft:birch_door": { + "protocol_id": 523 + }, + "minecraft:birch_fence": { + "protocol_id": 517 + }, + "minecraft:birch_fence_gate": { + "protocol_id": 511 + }, + "minecraft:birch_leaves": { + "protocol_id": 72 + }, + "minecraft:birch_log": { + "protocol_id": 42 + }, + "minecraft:birch_planks": { + "protocol_id": 15 + }, + "minecraft:birch_pressure_plate": { + "protocol_id": 194 + }, + "minecraft:birch_sapling": { + "protocol_id": 22 + }, + "minecraft:birch_sign": { + "protocol_id": 173 + }, + "minecraft:birch_slab": { + "protocol_id": 487 + }, + "minecraft:birch_stairs": { + "protocol_id": 304 + }, + "minecraft:birch_trapdoor": { + "protocol_id": 244 + }, + "minecraft:birch_wall_sign": { + "protocol_id": 184 + }, + "minecraft:birch_wood": { + "protocol_id": 58 + }, + "minecraft:black_banner": { + "protocol_id": 464 + }, + "minecraft:black_bed": { + "protocol_id": 105 + }, + "minecraft:black_candle": { + "protocol_id": 818 + }, + "minecraft:black_candle_cake": { + "protocol_id": 835 + }, + "minecraft:black_carpet": { + "protocol_id": 439 + }, + "minecraft:black_concrete": { + "protocol_id": 595 + }, + "minecraft:black_concrete_powder": { + "protocol_id": 611 + }, + "minecraft:black_glazed_terracotta": { + "protocol_id": 579 + }, + "minecraft:black_shulker_box": { + "protocol_id": 563 + }, + "minecraft:black_stained_glass": { + "protocol_id": 241 + }, + "minecraft:black_stained_glass_pane": { + "protocol_id": 405 + }, + "minecraft:black_terracotta": { + "protocol_id": 389 + }, + "minecraft:black_wall_banner": { + "protocol_id": 480 + }, + "minecraft:black_wool": { + "protocol_id": 132 + }, + "minecraft:blackstone": { + "protocol_id": 782 + }, + "minecraft:blackstone_slab": { + "protocol_id": 785 + }, + "minecraft:blackstone_stairs": { + "protocol_id": 783 + }, + "minecraft:blackstone_wall": { + "protocol_id": 784 + }, + "minecraft:blast_furnace": { + "protocol_id": 709 + }, + "minecraft:blue_banner": { + "protocol_id": 460 + }, + "minecraft:blue_bed": { + "protocol_id": 101 + }, + "minecraft:blue_candle": { + "protocol_id": 814 + }, + "minecraft:blue_candle_cake": { + "protocol_id": 831 + }, + "minecraft:blue_carpet": { + "protocol_id": 435 + }, + "minecraft:blue_concrete": { + "protocol_id": 591 + }, + "minecraft:blue_concrete_powder": { + "protocol_id": 607 + }, + "minecraft:blue_glazed_terracotta": { + "protocol_id": 575 + }, + "minecraft:blue_ice": { + "protocol_id": 657 + }, + "minecraft:blue_orchid": { + "protocol_id": 136 + }, + "minecraft:blue_shulker_box": { + "protocol_id": 559 + }, + "minecraft:blue_stained_glass": { + "protocol_id": 237 + }, + "minecraft:blue_stained_glass_pane": { + "protocol_id": 401 + }, + "minecraft:blue_terracotta": { + "protocol_id": 385 + }, + "minecraft:blue_wall_banner": { + "protocol_id": 476 + }, + "minecraft:blue_wool": { + "protocol_id": 128 + }, + "minecraft:bone_block": { + "protocol_id": 544 + }, + "minecraft:bookshelf": { + "protocol_id": 153 + }, + "minecraft:brain_coral": { + "protocol_id": 632 + }, + "minecraft:brain_coral_block": { + "protocol_id": 622 + }, + "minecraft:brain_coral_fan": { + "protocol_id": 642 + }, + "minecraft:brain_coral_wall_fan": { + "protocol_id": 652 + }, + "minecraft:brewing_stand": { + "protocol_id": 285 + }, + "minecraft:brick_slab": { + "protocol_id": 498 + }, + "minecraft:brick_stairs": { + "protocol_id": 275 + }, + "minecraft:brick_wall": { + "protocol_id": 692 + }, + "minecraft:bricks": { + "protocol_id": 151 + }, + "minecraft:brown_banner": { + "protocol_id": 461 + }, + "minecraft:brown_bed": { + "protocol_id": 102 + }, + "minecraft:brown_candle": { + "protocol_id": 815 + }, + "minecraft:brown_candle_cake": { + "protocol_id": 832 + }, + "minecraft:brown_carpet": { + "protocol_id": 436 + }, + "minecraft:brown_concrete": { + "protocol_id": 592 + }, + "minecraft:brown_concrete_powder": { + "protocol_id": 608 + }, + "minecraft:brown_glazed_terracotta": { + "protocol_id": 576 + }, + "minecraft:brown_mushroom": { + "protocol_id": 147 + }, + "minecraft:brown_mushroom_block": { + "protocol_id": 261 + }, + "minecraft:brown_shulker_box": { + "protocol_id": 560 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 238 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 402 + }, + "minecraft:brown_terracotta": { + "protocol_id": 386 + }, + "minecraft:brown_wall_banner": { + "protocol_id": 477 + }, + "minecraft:brown_wool": { + "protocol_id": 129 + }, + "minecraft:bubble_column": { + "protocol_id": 664 + }, + "minecraft:bubble_coral": { + "protocol_id": 633 + }, + "minecraft:bubble_coral_block": { + "protocol_id": 623 + }, + "minecraft:bubble_coral_fan": { + "protocol_id": 643 + }, + "minecraft:bubble_coral_wall_fan": { + "protocol_id": 653 + }, + "minecraft:budding_amethyst": { + "protocol_id": 837 + }, + "minecraft:cactus": { + "protocol_id": 207 + }, + "minecraft:cake": { + "protocol_id": 224 + }, + "minecraft:calcite": { + "protocol_id": 843 + }, + "minecraft:campfire": { + "protocol_id": 719 + }, + "minecraft:candle": { + "protocol_id": 802 + }, + "minecraft:candle_cake": { + "protocol_id": 819 + }, + "minecraft:carrots": { + "protocol_id": 336 + }, + "minecraft:cartography_table": { + "protocol_id": 710 + }, + "minecraft:carved_pumpkin": { + "protocol_id": 222 + }, + "minecraft:cauldron": { + "protocol_id": 286 + }, + "minecraft:cave_air": { + "protocol_id": 663 + }, + "minecraft:cave_vines": { + "protocol_id": 888 + }, + "minecraft:cave_vines_plant": { + "protocol_id": 889 + }, + "minecraft:chain": { + "protocol_id": 265 + }, + "minecraft:chain_command_block": { + "protocol_id": 539 + }, + "minecraft:chest": { + "protocol_id": 162 + }, + "minecraft:chipped_anvil": { + "protocol_id": 358 + }, + "minecraft:chiseled_deepslate": { + "protocol_id": 918 + }, + "minecraft:chiseled_nether_bricks": { + "protocol_id": 799 + }, + "minecraft:chiseled_polished_blackstone": { + "protocol_id": 789 + }, + "minecraft:chiseled_quartz_block": { + "protocol_id": 369 + }, + "minecraft:chiseled_red_sandstone": { + "protocol_id": 482 + }, + "minecraft:chiseled_sandstone": { + "protocol_id": 87 + }, + "minecraft:chiseled_stone_bricks": { + "protocol_id": 252 + }, + "minecraft:chorus_flower": { + "protocol_id": 530 + }, + "minecraft:chorus_plant": { + "protocol_id": 529 + }, + "minecraft:clay": { + "protocol_id": 208 + }, + "minecraft:coal_block": { + "protocol_id": 441 + }, + "minecraft:coal_ore": { + "protocol_id": 37 + }, + "minecraft:coarse_dirt": { + "protocol_id": 10 + }, + "minecraft:cobbled_deepslate": { + "protocol_id": 902 + }, + "minecraft:cobbled_deepslate_slab": { + "protocol_id": 904 + }, + "minecraft:cobbled_deepslate_stairs": { + "protocol_id": 903 + }, + "minecraft:cobbled_deepslate_wall": { + "protocol_id": 905 + }, + "minecraft:cobblestone": { + "protocol_id": 12 + }, + "minecraft:cobblestone_slab": { + "protocol_id": 497 + }, + "minecraft:cobblestone_stairs": { + "protocol_id": 181 + }, + "minecraft:cobblestone_wall": { + "protocol_id": 308 + }, + "minecraft:cobweb": { + "protocol_id": 109 + }, + "minecraft:cocoa": { + "protocol_id": 295 + }, + "minecraft:command_block": { + "protocol_id": 306 + }, + "minecraft:comparator": { + "protocol_id": 363 + }, + "minecraft:composter": { + "protocol_id": 767 + }, + "minecraft:conduit": { + "protocol_id": 658 + }, + "minecraft:copper_block": { + "protocol_id": 854 + }, + "minecraft:copper_ore": { + "protocol_id": 855 + }, + "minecraft:cornflower": { + "protocol_id": 144 + }, + "minecraft:cracked_deepslate_bricks": { + "protocol_id": 919 + }, + "minecraft:cracked_deepslate_tiles": { + "protocol_id": 920 + }, + "minecraft:cracked_nether_bricks": { + "protocol_id": 800 + }, + "minecraft:cracked_polished_blackstone_bricks": { + "protocol_id": 788 + }, + "minecraft:cracked_stone_bricks": { + "protocol_id": 251 + }, + "minecraft:crafting_table": { + "protocol_id": 167 + }, + "minecraft:creeper_head": { + "protocol_id": 353 + }, + "minecraft:creeper_wall_head": { + "protocol_id": 354 + }, + "minecraft:crimson_button": { + "protocol_id": 757 + }, + "minecraft:crimson_door": { + "protocol_id": 759 + }, + "minecraft:crimson_fence": { + "protocol_id": 749 + }, + "minecraft:crimson_fence_gate": { + "protocol_id": 753 + }, + "minecraft:crimson_fungus": { + "protocol_id": 736 + }, + "minecraft:crimson_hyphae": { + "protocol_id": 733 + }, + "minecraft:crimson_nylium": { + "protocol_id": 735 + }, + "minecraft:crimson_planks": { + "protocol_id": 743 + }, + "minecraft:crimson_pressure_plate": { + "protocol_id": 747 + }, + "minecraft:crimson_roots": { + "protocol_id": 742 + }, + "minecraft:crimson_sign": { + "protocol_id": 761 + }, + "minecraft:crimson_slab": { + "protocol_id": 745 + }, + "minecraft:crimson_stairs": { + "protocol_id": 755 + }, + "minecraft:crimson_stem": { + "protocol_id": 731 + }, + "minecraft:crimson_trapdoor": { + "protocol_id": 751 + }, + "minecraft:crimson_wall_sign": { + "protocol_id": 763 + }, + "minecraft:crying_obsidian": { + "protocol_id": 775 + }, + "minecraft:cut_copper": { + "protocol_id": 860 + }, + "minecraft:cut_copper_slab": { + "protocol_id": 868 + }, + "minecraft:cut_copper_stairs": { + "protocol_id": 864 + }, + "minecraft:cut_red_sandstone": { + "protocol_id": 483 + }, + "minecraft:cut_red_sandstone_slab": { + "protocol_id": 504 + }, + "minecraft:cut_sandstone": { + "protocol_id": 88 + }, + "minecraft:cut_sandstone_slab": { + "protocol_id": 495 + }, + "minecraft:cyan_banner": { + "protocol_id": 458 + }, + "minecraft:cyan_bed": { + "protocol_id": 99 + }, + "minecraft:cyan_candle": { + "protocol_id": 812 + }, + "minecraft:cyan_candle_cake": { + "protocol_id": 829 + }, + "minecraft:cyan_carpet": { + "protocol_id": 433 + }, + "minecraft:cyan_concrete": { + "protocol_id": 589 + }, + "minecraft:cyan_concrete_powder": { + "protocol_id": 605 + }, + "minecraft:cyan_glazed_terracotta": { + "protocol_id": 573 + }, + "minecraft:cyan_shulker_box": { + "protocol_id": 557 + }, + "minecraft:cyan_stained_glass": { + "protocol_id": 235 + }, + "minecraft:cyan_stained_glass_pane": { + "protocol_id": 399 + }, + "minecraft:cyan_terracotta": { + "protocol_id": 383 + }, + "minecraft:cyan_wall_banner": { + "protocol_id": 474 + }, + "minecraft:cyan_wool": { + "protocol_id": 126 + }, + "minecraft:damaged_anvil": { + "protocol_id": 359 + }, + "minecraft:dandelion": { + "protocol_id": 134 + }, + "minecraft:dark_oak_button": { + "protocol_id": 343 + }, + "minecraft:dark_oak_door": { + "protocol_id": 526 + }, + "minecraft:dark_oak_fence": { + "protocol_id": 520 + }, + "minecraft:dark_oak_fence_gate": { + "protocol_id": 514 + }, + "minecraft:dark_oak_leaves": { + "protocol_id": 75 + }, + "minecraft:dark_oak_log": { + "protocol_id": 45 + }, "minecraft:dark_oak_planks": { "protocol_id": 18 }, - "minecraft:oak_sapling": { - "protocol_id": 19 - }, - "minecraft:spruce_sapling": { - "protocol_id": 20 - }, - "minecraft:birch_sapling": { - "protocol_id": 21 - }, - "minecraft:jungle_sapling": { - "protocol_id": 22 - }, - "minecraft:acacia_sapling": { - "protocol_id": 23 - }, - "minecraft:dark_oak_sapling": { - "protocol_id": 24 - }, - "minecraft:bedrock": { - "protocol_id": 25 - }, - "minecraft:water": { - "protocol_id": 26 - }, - "minecraft:lava": { - "protocol_id": 27 - }, - "minecraft:sand": { - "protocol_id": 28 - }, - "minecraft:red_sand": { - "protocol_id": 29 - }, - "minecraft:gravel": { - "protocol_id": 30 - }, - "minecraft:gold_ore": { - "protocol_id": 31 - }, - "minecraft:deepslate_gold_ore": { - "protocol_id": 32 - }, - "minecraft:iron_ore": { - "protocol_id": 33 - }, - "minecraft:deepslate_iron_ore": { - "protocol_id": 34 - }, - "minecraft:coal_ore": { - "protocol_id": 35 - }, - "minecraft:deepslate_coal_ore": { - "protocol_id": 36 - }, - "minecraft:nether_gold_ore": { - "protocol_id": 37 - }, - "minecraft:oak_log": { - "protocol_id": 38 - }, - "minecraft:spruce_log": { - "protocol_id": 39 - }, - "minecraft:birch_log": { - "protocol_id": 40 - }, - "minecraft:jungle_log": { - "protocol_id": 41 - }, - "minecraft:acacia_log": { - "protocol_id": 42 - }, - "minecraft:dark_oak_log": { - "protocol_id": 43 - }, - "minecraft:stripped_spruce_log": { - "protocol_id": 44 - }, - "minecraft:stripped_birch_log": { - "protocol_id": 45 - }, - "minecraft:stripped_jungle_log": { - "protocol_id": 46 - }, - "minecraft:stripped_acacia_log": { - "protocol_id": 47 - }, - "minecraft:stripped_dark_oak_log": { - "protocol_id": 48 - }, - "minecraft:stripped_oak_log": { - "protocol_id": 49 - }, - "minecraft:oak_wood": { - "protocol_id": 50 - }, - "minecraft:spruce_wood": { - "protocol_id": 51 - }, - "minecraft:birch_wood": { - "protocol_id": 52 - }, - "minecraft:jungle_wood": { - "protocol_id": 53 - }, - "minecraft:acacia_wood": { - "protocol_id": 54 - }, - "minecraft:dark_oak_wood": { - "protocol_id": 55 - }, - "minecraft:stripped_oak_wood": { - "protocol_id": 56 - }, - "minecraft:stripped_spruce_wood": { - "protocol_id": 57 - }, - "minecraft:stripped_birch_wood": { - "protocol_id": 58 - }, - "minecraft:stripped_jungle_wood": { - "protocol_id": 59 - }, - "minecraft:stripped_acacia_wood": { - "protocol_id": 60 - }, - "minecraft:stripped_dark_oak_wood": { - "protocol_id": 61 - }, - "minecraft:oak_leaves": { - "protocol_id": 62 - }, - "minecraft:spruce_leaves": { - "protocol_id": 63 - }, - "minecraft:birch_leaves": { - "protocol_id": 64 - }, - "minecraft:jungle_leaves": { - "protocol_id": 65 - }, - "minecraft:acacia_leaves": { - "protocol_id": 66 - }, - "minecraft:dark_oak_leaves": { - "protocol_id": 67 - }, - "minecraft:azalea_leaves": { - "protocol_id": 68 - }, - "minecraft:flowering_azalea_leaves": { - "protocol_id": 69 - }, - "minecraft:sponge": { - "protocol_id": 70 - }, - "minecraft:wet_sponge": { - "protocol_id": 71 - }, - "minecraft:glass": { - "protocol_id": 72 - }, - "minecraft:lapis_ore": { - "protocol_id": 73 - }, - "minecraft:deepslate_lapis_ore": { - "protocol_id": 74 - }, - "minecraft:lapis_block": { - "protocol_id": 75 - }, - "minecraft:dispenser": { - "protocol_id": 76 - }, - "minecraft:sandstone": { - "protocol_id": 77 - }, - "minecraft:chiseled_sandstone": { - "protocol_id": 78 - }, - "minecraft:cut_sandstone": { - "protocol_id": 79 - }, - "minecraft:note_block": { - "protocol_id": 80 - }, - "minecraft:white_bed": { - "protocol_id": 81 - }, - "minecraft:orange_bed": { - "protocol_id": 82 - }, - "minecraft:magenta_bed": { - "protocol_id": 83 - }, - "minecraft:light_blue_bed": { - "protocol_id": 84 - }, - "minecraft:yellow_bed": { - "protocol_id": 85 - }, - "minecraft:lime_bed": { - "protocol_id": 86 - }, - "minecraft:pink_bed": { - "protocol_id": 87 - }, - "minecraft:gray_bed": { - "protocol_id": 88 - }, - "minecraft:light_gray_bed": { - "protocol_id": 89 - }, - "minecraft:cyan_bed": { - "protocol_id": 90 - }, - "minecraft:purple_bed": { - "protocol_id": 91 - }, - "minecraft:blue_bed": { - "protocol_id": 92 - }, - "minecraft:brown_bed": { - "protocol_id": 93 - }, - "minecraft:green_bed": { - "protocol_id": 94 - }, - "minecraft:red_bed": { - "protocol_id": 95 - }, - "minecraft:black_bed": { - "protocol_id": 96 - }, - "minecraft:powered_rail": { - "protocol_id": 97 - }, - "minecraft:detector_rail": { - "protocol_id": 98 - }, - "minecraft:sticky_piston": { - "protocol_id": 99 - }, - "minecraft:cobweb": { - "protocol_id": 100 - }, - "minecraft:grass": { - "protocol_id": 101 - }, - "minecraft:fern": { - "protocol_id": 102 - }, - "minecraft:dead_bush": { - "protocol_id": 103 - }, - "minecraft:seagrass": { - "protocol_id": 104 - }, - "minecraft:tall_seagrass": { - "protocol_id": 105 - }, - "minecraft:piston": { - "protocol_id": 106 - }, - "minecraft:piston_head": { - "protocol_id": 107 - }, - "minecraft:white_wool": { - "protocol_id": 108 - }, - "minecraft:orange_wool": { - "protocol_id": 109 - }, - "minecraft:magenta_wool": { - "protocol_id": 110 - }, - "minecraft:light_blue_wool": { - "protocol_id": 111 - }, - "minecraft:yellow_wool": { - "protocol_id": 112 - }, - "minecraft:lime_wool": { - "protocol_id": 113 - }, - "minecraft:pink_wool": { - "protocol_id": 114 - }, - "minecraft:gray_wool": { - "protocol_id": 115 - }, - "minecraft:light_gray_wool": { - "protocol_id": 116 - }, - "minecraft:cyan_wool": { - "protocol_id": 117 - }, - "minecraft:purple_wool": { - "protocol_id": 118 - }, - "minecraft:blue_wool": { - "protocol_id": 119 - }, - "minecraft:brown_wool": { - "protocol_id": 120 - }, - "minecraft:green_wool": { - "protocol_id": 121 - }, - "minecraft:red_wool": { - "protocol_id": 122 - }, - "minecraft:black_wool": { - "protocol_id": 123 - }, - "minecraft:moving_piston": { - "protocol_id": 124 - }, - "minecraft:dandelion": { - "protocol_id": 125 - }, - "minecraft:poppy": { - "protocol_id": 126 - }, - "minecraft:blue_orchid": { - "protocol_id": 127 - }, - "minecraft:allium": { - "protocol_id": 128 - }, - "minecraft:azure_bluet": { - "protocol_id": 129 - }, - "minecraft:red_tulip": { - "protocol_id": 130 - }, - "minecraft:orange_tulip": { - "protocol_id": 131 - }, - "minecraft:white_tulip": { - "protocol_id": 132 - }, - "minecraft:pink_tulip": { - "protocol_id": 133 - }, - "minecraft:oxeye_daisy": { - "protocol_id": 134 - }, - "minecraft:cornflower": { - "protocol_id": 135 - }, - "minecraft:wither_rose": { - "protocol_id": 136 - }, - "minecraft:lily_of_the_valley": { - "protocol_id": 137 - }, - "minecraft:brown_mushroom": { - "protocol_id": 138 - }, - "minecraft:red_mushroom": { - "protocol_id": 139 - }, - "minecraft:gold_block": { - "protocol_id": 140 - }, - "minecraft:iron_block": { - "protocol_id": 141 - }, - "minecraft:bricks": { - "protocol_id": 142 - }, - "minecraft:tnt": { - "protocol_id": 143 - }, - "minecraft:bookshelf": { - "protocol_id": 144 - }, - "minecraft:mossy_cobblestone": { - "protocol_id": 145 - }, - "minecraft:obsidian": { - "protocol_id": 146 - }, - "minecraft:torch": { - "protocol_id": 147 - }, - "minecraft:wall_torch": { - "protocol_id": 148 - }, - "minecraft:fire": { - "protocol_id": 149 - }, - "minecraft:soul_fire": { - "protocol_id": 150 - }, - "minecraft:spawner": { - "protocol_id": 151 - }, - "minecraft:oak_stairs": { - "protocol_id": 152 - }, - "minecraft:chest": { - "protocol_id": 153 - }, - "minecraft:redstone_wire": { - "protocol_id": 154 - }, - "minecraft:diamond_ore": { - "protocol_id": 155 - }, - "minecraft:deepslate_diamond_ore": { - "protocol_id": 156 - }, - "minecraft:diamond_block": { - "protocol_id": 157 - }, - "minecraft:crafting_table": { - "protocol_id": 158 - }, - "minecraft:wheat": { - "protocol_id": 159 - }, - "minecraft:farmland": { - "protocol_id": 160 - }, - "minecraft:furnace": { - "protocol_id": 161 - }, - "minecraft:oak_sign": { - "protocol_id": 162 - }, - "minecraft:spruce_sign": { - "protocol_id": 163 - }, - "minecraft:birch_sign": { - "protocol_id": 164 - }, - "minecraft:acacia_sign": { - "protocol_id": 165 - }, - "minecraft:jungle_sign": { - "protocol_id": 166 - }, - "minecraft:dark_oak_sign": { - "protocol_id": 167 - }, - "minecraft:oak_door": { - "protocol_id": 168 - }, - "minecraft:ladder": { - "protocol_id": 169 - }, - "minecraft:rail": { - "protocol_id": 170 - }, - "minecraft:cobblestone_stairs": { - "protocol_id": 171 - }, - "minecraft:oak_wall_sign": { - "protocol_id": 172 - }, - "minecraft:spruce_wall_sign": { - "protocol_id": 173 - }, - "minecraft:birch_wall_sign": { - "protocol_id": 174 - }, - "minecraft:acacia_wall_sign": { - "protocol_id": 175 - }, - "minecraft:jungle_wall_sign": { - "protocol_id": 176 - }, - "minecraft:dark_oak_wall_sign": { - "protocol_id": 177 - }, - "minecraft:lever": { - "protocol_id": 178 - }, - "minecraft:stone_pressure_plate": { - "protocol_id": 179 - }, - "minecraft:iron_door": { - "protocol_id": 180 - }, - "minecraft:oak_pressure_plate": { - "protocol_id": 181 - }, - "minecraft:spruce_pressure_plate": { - "protocol_id": 182 - }, - "minecraft:birch_pressure_plate": { - "protocol_id": 183 - }, - "minecraft:jungle_pressure_plate": { - "protocol_id": 184 - }, - "minecraft:acacia_pressure_plate": { - "protocol_id": 185 - }, "minecraft:dark_oak_pressure_plate": { - "protocol_id": 186 - }, - "minecraft:redstone_ore": { - "protocol_id": 187 - }, - "minecraft:deepslate_redstone_ore": { - "protocol_id": 188 - }, - "minecraft:redstone_torch": { - "protocol_id": 189 - }, - "minecraft:redstone_wall_torch": { - "protocol_id": 190 - }, - "minecraft:stone_button": { - "protocol_id": 191 - }, - "minecraft:snow": { - "protocol_id": 192 - }, - "minecraft:ice": { - "protocol_id": 193 - }, - "minecraft:snow_block": { - "protocol_id": 194 - }, - "minecraft:cactus": { - "protocol_id": 195 - }, - "minecraft:clay": { - "protocol_id": 196 - }, - "minecraft:sugar_cane": { "protocol_id": 197 }, - "minecraft:jukebox": { - "protocol_id": 198 + "minecraft:dark_oak_sapling": { + "protocol_id": 25 }, - "minecraft:oak_fence": { - "protocol_id": 199 + "minecraft:dark_oak_sign": { + "protocol_id": 176 }, - "minecraft:pumpkin": { - "protocol_id": 200 + "minecraft:dark_oak_slab": { + "protocol_id": 490 }, - "minecraft:netherrack": { - "protocol_id": 201 - }, - "minecraft:soul_sand": { - "protocol_id": 202 - }, - "minecraft:soul_soil": { - "protocol_id": 203 - }, - "minecraft:basalt": { - "protocol_id": 204 - }, - "minecraft:polished_basalt": { - "protocol_id": 205 - }, - "minecraft:soul_torch": { - "protocol_id": 206 - }, - "minecraft:soul_wall_torch": { - "protocol_id": 207 - }, - "minecraft:glowstone": { - "protocol_id": 208 - }, - "minecraft:nether_portal": { - "protocol_id": 209 - }, - "minecraft:carved_pumpkin": { - "protocol_id": 210 - }, - "minecraft:jack_o_lantern": { - "protocol_id": 211 - }, - "minecraft:cake": { - "protocol_id": 212 - }, - "minecraft:repeater": { - "protocol_id": 213 - }, - "minecraft:white_stained_glass": { - "protocol_id": 214 - }, - "minecraft:orange_stained_glass": { - "protocol_id": 215 - }, - "minecraft:magenta_stained_glass": { - "protocol_id": 216 - }, - "minecraft:light_blue_stained_glass": { - "protocol_id": 217 - }, - "minecraft:yellow_stained_glass": { - "protocol_id": 218 - }, - "minecraft:lime_stained_glass": { - "protocol_id": 219 - }, - "minecraft:pink_stained_glass": { - "protocol_id": 220 - }, - "minecraft:gray_stained_glass": { - "protocol_id": 221 - }, - "minecraft:light_gray_stained_glass": { - "protocol_id": 222 - }, - "minecraft:cyan_stained_glass": { - "protocol_id": 223 - }, - "minecraft:purple_stained_glass": { - "protocol_id": 224 - }, - "minecraft:blue_stained_glass": { - "protocol_id": 225 - }, - "minecraft:brown_stained_glass": { - "protocol_id": 226 - }, - "minecraft:green_stained_glass": { - "protocol_id": 227 - }, - "minecraft:red_stained_glass": { - "protocol_id": 228 - }, - "minecraft:black_stained_glass": { - "protocol_id": 229 - }, - "minecraft:oak_trapdoor": { - "protocol_id": 230 - }, - "minecraft:spruce_trapdoor": { - "protocol_id": 231 - }, - "minecraft:birch_trapdoor": { - "protocol_id": 232 - }, - "minecraft:jungle_trapdoor": { - "protocol_id": 233 - }, - "minecraft:acacia_trapdoor": { - "protocol_id": 234 + "minecraft:dark_oak_stairs": { + "protocol_id": 407 }, "minecraft:dark_oak_trapdoor": { - "protocol_id": 235 - }, - "minecraft:stone_bricks": { - "protocol_id": 236 - }, - "minecraft:mossy_stone_bricks": { - "protocol_id": 237 - }, - "minecraft:cracked_stone_bricks": { - "protocol_id": 238 - }, - "minecraft:chiseled_stone_bricks": { - "protocol_id": 239 - }, - "minecraft:infested_stone": { - "protocol_id": 240 - }, - "minecraft:infested_cobblestone": { - "protocol_id": 241 - }, - "minecraft:infested_stone_bricks": { - "protocol_id": 242 - }, - "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 243 - }, - "minecraft:infested_cracked_stone_bricks": { - "protocol_id": 244 - }, - "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 245 - }, - "minecraft:brown_mushroom_block": { - "protocol_id": 246 - }, - "minecraft:red_mushroom_block": { "protocol_id": 247 }, - "minecraft:mushroom_stem": { - "protocol_id": 248 + "minecraft:dark_oak_wall_sign": { + "protocol_id": 187 }, - "minecraft:iron_bars": { - "protocol_id": 249 + "minecraft:dark_oak_wood": { + "protocol_id": 61 }, - "minecraft:chain": { - "protocol_id": 250 + "minecraft:dark_prismarine": { + "protocol_id": 415 }, - "minecraft:glass_pane": { - "protocol_id": 251 + "minecraft:dark_prismarine_slab": { + "protocol_id": 421 }, - "minecraft:melon": { - "protocol_id": 252 + "minecraft:dark_prismarine_stairs": { + "protocol_id": 418 }, - "minecraft:attached_pumpkin_stem": { - "protocol_id": 253 + "minecraft:daylight_detector": { + "protocol_id": 364 }, - "minecraft:attached_melon_stem": { - "protocol_id": 254 + "minecraft:dead_brain_coral": { + "protocol_id": 627 }, - "minecraft:pumpkin_stem": { - "protocol_id": 255 + "minecraft:dead_brain_coral_block": { + "protocol_id": 617 }, - "minecraft:melon_stem": { - "protocol_id": 256 + "minecraft:dead_brain_coral_fan": { + "protocol_id": 637 }, - "minecraft:vine": { - "protocol_id": 257 + "minecraft:dead_brain_coral_wall_fan": { + "protocol_id": 647 }, - "minecraft:glow_lichen": { - "protocol_id": 258 + "minecraft:dead_bubble_coral": { + "protocol_id": 628 }, - "minecraft:oak_fence_gate": { - "protocol_id": 259 + "minecraft:dead_bubble_coral_block": { + "protocol_id": 618 }, - "minecraft:brick_stairs": { - "protocol_id": 260 + "minecraft:dead_bubble_coral_fan": { + "protocol_id": 638 }, - "minecraft:stone_brick_stairs": { - "protocol_id": 261 + "minecraft:dead_bubble_coral_wall_fan": { + "protocol_id": 648 }, - "minecraft:mycelium": { - "protocol_id": 262 + "minecraft:dead_bush": { + "protocol_id": 112 }, - "minecraft:lily_pad": { - "protocol_id": 263 + "minecraft:dead_fire_coral": { + "protocol_id": 629 }, - "minecraft:nether_bricks": { - "protocol_id": 264 + "minecraft:dead_fire_coral_block": { + "protocol_id": 619 }, - "minecraft:nether_brick_fence": { - "protocol_id": 265 + "minecraft:dead_fire_coral_fan": { + "protocol_id": 639 }, - "minecraft:nether_brick_stairs": { - "protocol_id": 266 + "minecraft:dead_fire_coral_wall_fan": { + "protocol_id": 649 }, - "minecraft:nether_wart": { - "protocol_id": 267 + "minecraft:dead_horn_coral": { + "protocol_id": 630 }, - "minecraft:enchanting_table": { - "protocol_id": 268 + "minecraft:dead_horn_coral_block": { + "protocol_id": 620 }, - "minecraft:brewing_stand": { - "protocol_id": 269 + "minecraft:dead_horn_coral_fan": { + "protocol_id": 640 }, - "minecraft:cauldron": { - "protocol_id": 270 + "minecraft:dead_horn_coral_wall_fan": { + "protocol_id": 650 }, - "minecraft:water_cauldron": { - "protocol_id": 271 + "minecraft:dead_tube_coral": { + "protocol_id": 626 }, - "minecraft:lava_cauldron": { - "protocol_id": 272 + "minecraft:dead_tube_coral_block": { + "protocol_id": 616 }, - "minecraft:powder_snow_cauldron": { - "protocol_id": 273 + "minecraft:dead_tube_coral_fan": { + "protocol_id": 636 }, - "minecraft:end_portal": { - "protocol_id": 274 + "minecraft:dead_tube_coral_wall_fan": { + "protocol_id": 646 }, - "minecraft:end_portal_frame": { - "protocol_id": 275 + "minecraft:deepslate": { + "protocol_id": 901 }, - "minecraft:end_stone": { - "protocol_id": 276 + "minecraft:deepslate_brick_slab": { + "protocol_id": 916 }, - "minecraft:dragon_egg": { - "protocol_id": 277 + "minecraft:deepslate_brick_stairs": { + "protocol_id": 915 }, - "minecraft:redstone_lamp": { - "protocol_id": 278 + "minecraft:deepslate_brick_wall": { + "protocol_id": 917 }, - "minecraft:cocoa": { - "protocol_id": 279 + "minecraft:deepslate_bricks": { + "protocol_id": 914 }, - "minecraft:sandstone_stairs": { - "protocol_id": 280 + "minecraft:deepslate_coal_ore": { + "protocol_id": 38 }, - "minecraft:emerald_ore": { - "protocol_id": 281 + "minecraft:deepslate_copper_ore": { + "protocol_id": 856 + }, + "minecraft:deepslate_diamond_ore": { + "protocol_id": 165 }, "minecraft:deepslate_emerald_ore": { - "protocol_id": 282 - }, - "minecraft:ender_chest": { - "protocol_id": 283 - }, - "minecraft:tripwire_hook": { - "protocol_id": 284 - }, - "minecraft:tripwire": { - "protocol_id": 285 - }, - "minecraft:emerald_block": { - "protocol_id": 286 - }, - "minecraft:spruce_stairs": { - "protocol_id": 287 - }, - "minecraft:birch_stairs": { - "protocol_id": 288 - }, - "minecraft:jungle_stairs": { - "protocol_id": 289 - }, - "minecraft:command_block": { - "protocol_id": 290 - }, - "minecraft:beacon": { - "protocol_id": 291 - }, - "minecraft:cobblestone_wall": { - "protocol_id": 292 - }, - "minecraft:mossy_cobblestone_wall": { - "protocol_id": 293 - }, - "minecraft:flower_pot": { - "protocol_id": 294 - }, - "minecraft:potted_oak_sapling": { - "protocol_id": 295 - }, - "minecraft:potted_spruce_sapling": { - "protocol_id": 296 - }, - "minecraft:potted_birch_sapling": { - "protocol_id": 297 - }, - "minecraft:potted_jungle_sapling": { "protocol_id": 298 }, - "minecraft:potted_acacia_sapling": { - "protocol_id": 299 + "minecraft:deepslate_gold_ore": { + "protocol_id": 34 }, - "minecraft:potted_dark_oak_sapling": { - "protocol_id": 300 + "minecraft:deepslate_iron_ore": { + "protocol_id": 36 }, - "minecraft:potted_fern": { - "protocol_id": 301 + "minecraft:deepslate_lapis_ore": { + "protocol_id": 83 }, - "minecraft:potted_dandelion": { + "minecraft:deepslate_redstone_ore": { + "protocol_id": 200 + }, + "minecraft:deepslate_tile_slab": { + "protocol_id": 912 + }, + "minecraft:deepslate_tile_stairs": { + "protocol_id": 911 + }, + "minecraft:deepslate_tile_wall": { + "protocol_id": 913 + }, + "minecraft:deepslate_tiles": { + "protocol_id": 910 + }, + "minecraft:detector_rail": { + "protocol_id": 107 + }, + "minecraft:diamond_block": { + "protocol_id": 166 + }, + "minecraft:diamond_ore": { + "protocol_id": 164 + }, + "minecraft:diorite": { + "protocol_id": 4 + }, + "minecraft:diorite_slab": { + "protocol_id": 691 + }, + "minecraft:diorite_stairs": { + "protocol_id": 678 + }, + "minecraft:diorite_wall": { + "protocol_id": 704 + }, + "minecraft:dirt": { + "protocol_id": 9 + }, + "minecraft:dirt_path": { + "protocol_id": 536 + }, + "minecraft:dispenser": { + "protocol_id": 85 + }, + "minecraft:dragon_egg": { + "protocol_id": 293 + }, + "minecraft:dragon_head": { + "protocol_id": 355 + }, + "minecraft:dragon_wall_head": { + "protocol_id": 356 + }, + "minecraft:dried_kelp_block": { + "protocol_id": 614 + }, + "minecraft:dripstone_block": { + "protocol_id": 887 + }, + "minecraft:dropper": { + "protocol_id": 373 + }, + "minecraft:emerald_block": { "protocol_id": 302 }, - "minecraft:potted_poppy": { - "protocol_id": 303 + "minecraft:emerald_ore": { + "protocol_id": 297 }, - "minecraft:potted_blue_orchid": { - "protocol_id": 304 + "minecraft:enchanting_table": { + "protocol_id": 284 }, - "minecraft:potted_allium": { - "protocol_id": 305 + "minecraft:end_gateway": { + "protocol_id": 537 }, - "minecraft:potted_azure_bluet": { - "protocol_id": 306 + "minecraft:end_portal": { + "protocol_id": 290 }, - "minecraft:potted_red_tulip": { - "protocol_id": 307 + "minecraft:end_portal_frame": { + "protocol_id": 291 }, - "minecraft:potted_orange_tulip": { - "protocol_id": 308 + "minecraft:end_rod": { + "protocol_id": 528 }, - "minecraft:potted_white_tulip": { - "protocol_id": 309 + "minecraft:end_stone": { + "protocol_id": 292 }, - "minecraft:potted_pink_tulip": { + "minecraft:end_stone_brick_slab": { + "protocol_id": 684 + }, + "minecraft:end_stone_brick_stairs": { + "protocol_id": 670 + }, + "minecraft:end_stone_brick_wall": { + "protocol_id": 703 + }, + "minecraft:end_stone_bricks": { + "protocol_id": 534 + }, + "minecraft:ender_chest": { + "protocol_id": 299 + }, + "minecraft:exposed_copper": { + "protocol_id": 853 + }, + "minecraft:exposed_cut_copper": { + "protocol_id": 859 + }, + "minecraft:exposed_cut_copper_slab": { + "protocol_id": 867 + }, + "minecraft:exposed_cut_copper_stairs": { + "protocol_id": 863 + }, + "minecraft:farmland": { + "protocol_id": 169 + }, + "minecraft:fern": { + "protocol_id": 111 + }, + "minecraft:fire": { + "protocol_id": 158 + }, + "minecraft:fire_coral": { + "protocol_id": 634 + }, + "minecraft:fire_coral_block": { + "protocol_id": 624 + }, + "minecraft:fire_coral_fan": { + "protocol_id": 644 + }, + "minecraft:fire_coral_wall_fan": { + "protocol_id": 654 + }, + "minecraft:fletching_table": { + "protocol_id": 711 + }, + "minecraft:flower_pot": { "protocol_id": 310 }, - "minecraft:potted_oxeye_daisy": { - "protocol_id": 311 + "minecraft:flowering_azalea": { + "protocol_id": 892 }, - "minecraft:potted_cornflower": { - "protocol_id": 312 + "minecraft:flowering_azalea_leaves": { + "protocol_id": 78 }, - "minecraft:potted_lily_of_the_valley": { - "protocol_id": 313 + "minecraft:frogspawn": { + "protocol_id": 931 }, - "minecraft:potted_wither_rose": { - "protocol_id": 314 + "minecraft:frosted_ice": { + "protocol_id": 540 }, - "minecraft:potted_red_mushroom": { + "minecraft:furnace": { + "protocol_id": 170 + }, + "minecraft:gilded_blackstone": { + "protocol_id": 793 + }, + "minecraft:glass": { + "protocol_id": 81 + }, + "minecraft:glass_pane": { + "protocol_id": 266 + }, + "minecraft:glow_lichen": { + "protocol_id": 273 + }, + "minecraft:glowstone": { + "protocol_id": 220 + }, + "minecraft:gold_block": { + "protocol_id": 149 + }, + "minecraft:gold_ore": { + "protocol_id": 33 + }, + "minecraft:granite": { + "protocol_id": 2 + }, + "minecraft:granite_slab": { + "protocol_id": 687 + }, + "minecraft:granite_stairs": { + "protocol_id": 674 + }, + "minecraft:granite_wall": { + "protocol_id": 696 + }, + "minecraft:grass": { + "protocol_id": 110 + }, + "minecraft:grass_block": { + "protocol_id": 8 + }, + "minecraft:gravel": { + "protocol_id": 32 + }, + "minecraft:gray_banner": { + "protocol_id": 456 + }, + "minecraft:gray_bed": { + "protocol_id": 97 + }, + "minecraft:gray_candle": { + "protocol_id": 810 + }, + "minecraft:gray_candle_cake": { + "protocol_id": 827 + }, + "minecraft:gray_carpet": { + "protocol_id": 431 + }, + "minecraft:gray_concrete": { + "protocol_id": 587 + }, + "minecraft:gray_concrete_powder": { + "protocol_id": 603 + }, + "minecraft:gray_glazed_terracotta": { + "protocol_id": 571 + }, + "minecraft:gray_shulker_box": { + "protocol_id": 555 + }, + "minecraft:gray_stained_glass": { + "protocol_id": 233 + }, + "minecraft:gray_stained_glass_pane": { + "protocol_id": 397 + }, + "minecraft:gray_terracotta": { + "protocol_id": 381 + }, + "minecraft:gray_wall_banner": { + "protocol_id": 472 + }, + "minecraft:gray_wool": { + "protocol_id": 124 + }, + "minecraft:green_banner": { + "protocol_id": 462 + }, + "minecraft:green_bed": { + "protocol_id": 103 + }, + "minecraft:green_candle": { + "protocol_id": 816 + }, + "minecraft:green_candle_cake": { + "protocol_id": 833 + }, + "minecraft:green_carpet": { + "protocol_id": 437 + }, + "minecraft:green_concrete": { + "protocol_id": 593 + }, + "minecraft:green_concrete_powder": { + "protocol_id": 609 + }, + "minecraft:green_glazed_terracotta": { + "protocol_id": 577 + }, + "minecraft:green_shulker_box": { + "protocol_id": 561 + }, + "minecraft:green_stained_glass": { + "protocol_id": 239 + }, + "minecraft:green_stained_glass_pane": { + "protocol_id": 403 + }, + "minecraft:green_terracotta": { + "protocol_id": 387 + }, + "minecraft:green_wall_banner": { + "protocol_id": 478 + }, + "minecraft:green_wool": { + "protocol_id": 130 + }, + "minecraft:grindstone": { + "protocol_id": 712 + }, + "minecraft:hanging_roots": { + "protocol_id": 898 + }, + "minecraft:hay_block": { + "protocol_id": 423 + }, + "minecraft:heavy_weighted_pressure_plate": { + "protocol_id": 362 + }, + "minecraft:honey_block": { + "protocol_id": 771 + }, + "minecraft:honeycomb_block": { + "protocol_id": 772 + }, + "minecraft:hopper": { + "protocol_id": 367 + }, + "minecraft:horn_coral": { + "protocol_id": 635 + }, + "minecraft:horn_coral_block": { + "protocol_id": 625 + }, + "minecraft:horn_coral_fan": { + "protocol_id": 645 + }, + "minecraft:horn_coral_wall_fan": { + "protocol_id": 655 + }, + "minecraft:ice": { + "protocol_id": 205 + }, + "minecraft:infested_chiseled_stone_bricks": { + "protocol_id": 260 + }, + "minecraft:infested_cobblestone": { + "protocol_id": 256 + }, + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 259 + }, + "minecraft:infested_deepslate": { + "protocol_id": 921 + }, + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 258 + }, + "minecraft:infested_stone": { + "protocol_id": 255 + }, + "minecraft:infested_stone_bricks": { + "protocol_id": 257 + }, + "minecraft:iron_bars": { + "protocol_id": 264 + }, + "minecraft:iron_block": { + "protocol_id": 150 + }, + "minecraft:iron_door": { + "protocol_id": 191 + }, + "minecraft:iron_ore": { + "protocol_id": 35 + }, + "minecraft:iron_trapdoor": { + "protocol_id": 412 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 223 + }, + "minecraft:jigsaw": { + "protocol_id": 766 + }, + "minecraft:jukebox": { + "protocol_id": 210 + }, + "minecraft:jungle_button": { + "protocol_id": 341 + }, + "minecraft:jungle_door": { + "protocol_id": 524 + }, + "minecraft:jungle_fence": { + "protocol_id": 518 + }, + "minecraft:jungle_fence_gate": { + "protocol_id": 512 + }, + "minecraft:jungle_leaves": { + "protocol_id": 73 + }, + "minecraft:jungle_log": { + "protocol_id": 43 + }, + "minecraft:jungle_planks": { + "protocol_id": 16 + }, + "minecraft:jungle_pressure_plate": { + "protocol_id": 195 + }, + "minecraft:jungle_sapling": { + "protocol_id": 23 + }, + "minecraft:jungle_sign": { + "protocol_id": 175 + }, + "minecraft:jungle_slab": { + "protocol_id": 488 + }, + "minecraft:jungle_stairs": { + "protocol_id": 305 + }, + "minecraft:jungle_trapdoor": { + "protocol_id": 245 + }, + "minecraft:jungle_wall_sign": { + "protocol_id": 186 + }, + "minecraft:jungle_wood": { + "protocol_id": 59 + }, + "minecraft:kelp": { + "protocol_id": 612 + }, + "minecraft:kelp_plant": { + "protocol_id": 613 + }, + "minecraft:ladder": { + "protocol_id": 179 + }, + "minecraft:lantern": { + "protocol_id": 717 + }, + "minecraft:lapis_block": { + "protocol_id": 84 + }, + "minecraft:lapis_ore": { + "protocol_id": 82 + }, + "minecraft:large_amethyst_bud": { + "protocol_id": 839 + }, + "minecraft:large_fern": { + "protocol_id": 448 + }, + "minecraft:lava": { + "protocol_id": 29 + }, + "minecraft:lava_cauldron": { + "protocol_id": 288 + }, + "minecraft:lectern": { + "protocol_id": 713 + }, + "minecraft:lever": { + "protocol_id": 189 + }, + "minecraft:light": { + "protocol_id": 411 + }, + "minecraft:light_blue_banner": { + "protocol_id": 452 + }, + "minecraft:light_blue_bed": { + "protocol_id": 93 + }, + "minecraft:light_blue_candle": { + "protocol_id": 806 + }, + "minecraft:light_blue_candle_cake": { + "protocol_id": 823 + }, + "minecraft:light_blue_carpet": { + "protocol_id": 427 + }, + "minecraft:light_blue_concrete": { + "protocol_id": 583 + }, + "minecraft:light_blue_concrete_powder": { + "protocol_id": 599 + }, + "minecraft:light_blue_glazed_terracotta": { + "protocol_id": 567 + }, + "minecraft:light_blue_shulker_box": { + "protocol_id": 551 + }, + "minecraft:light_blue_stained_glass": { + "protocol_id": 229 + }, + "minecraft:light_blue_stained_glass_pane": { + "protocol_id": 393 + }, + "minecraft:light_blue_terracotta": { + "protocol_id": 377 + }, + "minecraft:light_blue_wall_banner": { + "protocol_id": 468 + }, + "minecraft:light_blue_wool": { + "protocol_id": 120 + }, + "minecraft:light_gray_banner": { + "protocol_id": 457 + }, + "minecraft:light_gray_bed": { + "protocol_id": 98 + }, + "minecraft:light_gray_candle": { + "protocol_id": 811 + }, + "minecraft:light_gray_candle_cake": { + "protocol_id": 828 + }, + "minecraft:light_gray_carpet": { + "protocol_id": 432 + }, + "minecraft:light_gray_concrete": { + "protocol_id": 588 + }, + "minecraft:light_gray_concrete_powder": { + "protocol_id": 604 + }, + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 572 + }, + "minecraft:light_gray_shulker_box": { + "protocol_id": 556 + }, + "minecraft:light_gray_stained_glass": { + "protocol_id": 234 + }, + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 398 + }, + "minecraft:light_gray_terracotta": { + "protocol_id": 382 + }, + "minecraft:light_gray_wall_banner": { + "protocol_id": 473 + }, + "minecraft:light_gray_wool": { + "protocol_id": 125 + }, + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 361 + }, + "minecraft:lightning_rod": { + "protocol_id": 885 + }, + "minecraft:lilac": { + "protocol_id": 444 + }, + "minecraft:lily_of_the_valley": { + "protocol_id": 146 + }, + "minecraft:lily_pad": { + "protocol_id": 279 + }, + "minecraft:lime_banner": { + "protocol_id": 454 + }, + "minecraft:lime_bed": { + "protocol_id": 95 + }, + "minecraft:lime_candle": { + "protocol_id": 808 + }, + "minecraft:lime_candle_cake": { + "protocol_id": 825 + }, + "minecraft:lime_carpet": { + "protocol_id": 429 + }, + "minecraft:lime_concrete": { + "protocol_id": 585 + }, + "minecraft:lime_concrete_powder": { + "protocol_id": 601 + }, + "minecraft:lime_glazed_terracotta": { + "protocol_id": 569 + }, + "minecraft:lime_shulker_box": { + "protocol_id": 553 + }, + "minecraft:lime_stained_glass": { + "protocol_id": 231 + }, + "minecraft:lime_stained_glass_pane": { + "protocol_id": 395 + }, + "minecraft:lime_terracotta": { + "protocol_id": 379 + }, + "minecraft:lime_wall_banner": { + "protocol_id": 470 + }, + "minecraft:lime_wool": { + "protocol_id": 122 + }, + "minecraft:lodestone": { + "protocol_id": 781 + }, + "minecraft:loom": { + "protocol_id": 706 + }, + "minecraft:magenta_banner": { + "protocol_id": 451 + }, + "minecraft:magenta_bed": { + "protocol_id": 92 + }, + "minecraft:magenta_candle": { + "protocol_id": 805 + }, + "minecraft:magenta_candle_cake": { + "protocol_id": 822 + }, + "minecraft:magenta_carpet": { + "protocol_id": 426 + }, + "minecraft:magenta_concrete": { + "protocol_id": 582 + }, + "minecraft:magenta_concrete_powder": { + "protocol_id": 598 + }, + "minecraft:magenta_glazed_terracotta": { + "protocol_id": 566 + }, + "minecraft:magenta_shulker_box": { + "protocol_id": 550 + }, + "minecraft:magenta_stained_glass": { + "protocol_id": 228 + }, + "minecraft:magenta_stained_glass_pane": { + "protocol_id": 392 + }, + "minecraft:magenta_terracotta": { + "protocol_id": 376 + }, + "minecraft:magenta_wall_banner": { + "protocol_id": 467 + }, + "minecraft:magenta_wool": { + "protocol_id": 119 + }, + "minecraft:magma_block": { + "protocol_id": 541 + }, + "minecraft:mangrove_button": { + "protocol_id": 344 + }, + "minecraft:mangrove_door": { + "protocol_id": 527 + }, + "minecraft:mangrove_fence": { + "protocol_id": 521 + }, + "minecraft:mangrove_fence_gate": { + "protocol_id": 515 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 76 + }, + "minecraft:mangrove_log": { + "protocol_id": 46 + }, + "minecraft:mangrove_planks": { + "protocol_id": 19 + }, + "minecraft:mangrove_pressure_plate": { + "protocol_id": 198 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 26 + }, + "minecraft:mangrove_roots": { + "protocol_id": 47 + }, + "minecraft:mangrove_sign": { + "protocol_id": 177 + }, + "minecraft:mangrove_slab": { + "protocol_id": 491 + }, + "minecraft:mangrove_stairs": { + "protocol_id": 408 + }, + "minecraft:mangrove_trapdoor": { + "protocol_id": 248 + }, + "minecraft:mangrove_wall_sign": { + "protocol_id": 188 + }, + "minecraft:mangrove_wood": { + "protocol_id": 62 + }, + "minecraft:medium_amethyst_bud": { + "protocol_id": 840 + }, + "minecraft:melon": { + "protocol_id": 267 + }, + "minecraft:melon_stem": { + "protocol_id": 271 + }, + "minecraft:moss_block": { + "protocol_id": 894 + }, + "minecraft:moss_carpet": { + "protocol_id": 893 + }, + "minecraft:mossy_cobblestone": { + "protocol_id": 154 + }, + "minecraft:mossy_cobblestone_slab": { + "protocol_id": 683 + }, + "minecraft:mossy_cobblestone_stairs": { + "protocol_id": 669 + }, + "minecraft:mossy_cobblestone_wall": { + "protocol_id": 309 + }, + "minecraft:mossy_stone_brick_slab": { + "protocol_id": 681 + }, + "minecraft:mossy_stone_brick_stairs": { + "protocol_id": 667 + }, + "minecraft:mossy_stone_brick_wall": { + "protocol_id": 695 + }, + "minecraft:mossy_stone_bricks": { + "protocol_id": 250 + }, + "minecraft:moving_piston": { + "protocol_id": 133 + }, + "minecraft:mud": { + "protocol_id": 900 + }, + "minecraft:mud_brick_slab": { + "protocol_id": 500 + }, + "minecraft:mud_brick_stairs": { + "protocol_id": 277 + }, + "minecraft:mud_brick_wall": { + "protocol_id": 698 + }, + "minecraft:mud_bricks": { + "protocol_id": 254 + }, + "minecraft:muddy_mangrove_roots": { + "protocol_id": 48 + }, + "minecraft:mushroom_stem": { + "protocol_id": 263 + }, + "minecraft:mycelium": { + "protocol_id": 278 + }, + "minecraft:nether_brick_fence": { + "protocol_id": 281 + }, + "minecraft:nether_brick_slab": { + "protocol_id": 501 + }, + "minecraft:nether_brick_stairs": { + "protocol_id": 282 + }, + "minecraft:nether_brick_wall": { + "protocol_id": 699 + }, + "minecraft:nether_bricks": { + "protocol_id": 280 + }, + "minecraft:nether_gold_ore": { + "protocol_id": 39 + }, + "minecraft:nether_portal": { + "protocol_id": 221 + }, + "minecraft:nether_quartz_ore": { + "protocol_id": 366 + }, + "minecraft:nether_sprouts": { + "protocol_id": 730 + }, + "minecraft:nether_wart": { + "protocol_id": 283 + }, + "minecraft:nether_wart_block": { + "protocol_id": 542 + }, + "minecraft:netherite_block": { + "protocol_id": 773 + }, + "minecraft:netherrack": { + "protocol_id": 213 + }, + "minecraft:note_block": { + "protocol_id": 89 + }, + "minecraft:oak_button": { + "protocol_id": 338 + }, + "minecraft:oak_door": { + "protocol_id": 178 + }, + "minecraft:oak_fence": { + "protocol_id": 211 + }, + "minecraft:oak_fence_gate": { + "protocol_id": 274 + }, + "minecraft:oak_leaves": { + "protocol_id": 70 + }, + "minecraft:oak_log": { + "protocol_id": 40 + }, + "minecraft:oak_planks": { + "protocol_id": 13 + }, + "minecraft:oak_pressure_plate": { + "protocol_id": 192 + }, + "minecraft:oak_sapling": { + "protocol_id": 20 + }, + "minecraft:oak_sign": { + "protocol_id": 171 + }, + "minecraft:oak_slab": { + "protocol_id": 485 + }, + "minecraft:oak_stairs": { + "protocol_id": 161 + }, + "minecraft:oak_trapdoor": { + "protocol_id": 242 + }, + "minecraft:oak_wall_sign": { + "protocol_id": 182 + }, + "minecraft:oak_wood": { + "protocol_id": 56 + }, + "minecraft:observer": { + "protocol_id": 546 + }, + "minecraft:obsidian": { + "protocol_id": 155 + }, + "minecraft:ochre_froglight": { + "protocol_id": 928 + }, + "minecraft:orange_banner": { + "protocol_id": 450 + }, + "minecraft:orange_bed": { + "protocol_id": 91 + }, + "minecraft:orange_candle": { + "protocol_id": 804 + }, + "minecraft:orange_candle_cake": { + "protocol_id": 821 + }, + "minecraft:orange_carpet": { + "protocol_id": 425 + }, + "minecraft:orange_concrete": { + "protocol_id": 581 + }, + "minecraft:orange_concrete_powder": { + "protocol_id": 597 + }, + "minecraft:orange_glazed_terracotta": { + "protocol_id": 565 + }, + "minecraft:orange_shulker_box": { + "protocol_id": 549 + }, + "minecraft:orange_stained_glass": { + "protocol_id": 227 + }, + "minecraft:orange_stained_glass_pane": { + "protocol_id": 391 + }, + "minecraft:orange_terracotta": { + "protocol_id": 375 + }, + "minecraft:orange_tulip": { + "protocol_id": 140 + }, + "minecraft:orange_wall_banner": { + "protocol_id": 466 + }, + "minecraft:orange_wool": { + "protocol_id": 118 + }, + "minecraft:oxeye_daisy": { + "protocol_id": 143 + }, + "minecraft:oxidized_copper": { + "protocol_id": 851 + }, + "minecraft:oxidized_cut_copper": { + "protocol_id": 857 + }, + "minecraft:oxidized_cut_copper_slab": { + "protocol_id": 865 + }, + "minecraft:oxidized_cut_copper_stairs": { + "protocol_id": 861 + }, + "minecraft:packed_ice": { + "protocol_id": 442 + }, + "minecraft:packed_mud": { + "protocol_id": 253 + }, + "minecraft:pearlescent_froglight": { + "protocol_id": 930 + }, + "minecraft:peony": { + "protocol_id": 446 + }, + "minecraft:petrified_oak_slab": { + "protocol_id": 496 + }, + "minecraft:pink_banner": { + "protocol_id": 455 + }, + "minecraft:pink_bed": { + "protocol_id": 96 + }, + "minecraft:pink_candle": { + "protocol_id": 809 + }, + "minecraft:pink_candle_cake": { + "protocol_id": 826 + }, + "minecraft:pink_carpet": { + "protocol_id": 430 + }, + "minecraft:pink_concrete": { + "protocol_id": 586 + }, + "minecraft:pink_concrete_powder": { + "protocol_id": 602 + }, + "minecraft:pink_glazed_terracotta": { + "protocol_id": 570 + }, + "minecraft:pink_shulker_box": { + "protocol_id": 554 + }, + "minecraft:pink_stained_glass": { + "protocol_id": 232 + }, + "minecraft:pink_stained_glass_pane": { + "protocol_id": 396 + }, + "minecraft:pink_terracotta": { + "protocol_id": 380 + }, + "minecraft:pink_tulip": { + "protocol_id": 142 + }, + "minecraft:pink_wall_banner": { + "protocol_id": 471 + }, + "minecraft:pink_wool": { + "protocol_id": 123 + }, + "minecraft:piston": { + "protocol_id": 115 + }, + "minecraft:piston_head": { + "protocol_id": 116 + }, + "minecraft:player_head": { + "protocol_id": 351 + }, + "minecraft:player_wall_head": { + "protocol_id": 352 + }, + "minecraft:podzol": { + "protocol_id": 11 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 886 + }, + "minecraft:polished_andesite": { + "protocol_id": 7 + }, + "minecraft:polished_andesite_slab": { + "protocol_id": 690 + }, + "minecraft:polished_andesite_stairs": { + "protocol_id": 677 + }, + "minecraft:polished_basalt": { + "protocol_id": 217 + }, + "minecraft:polished_blackstone": { + "protocol_id": 786 + }, + "minecraft:polished_blackstone_brick_slab": { + "protocol_id": 790 + }, + "minecraft:polished_blackstone_brick_stairs": { + "protocol_id": 791 + }, + "minecraft:polished_blackstone_brick_wall": { + "protocol_id": 792 + }, + "minecraft:polished_blackstone_bricks": { + "protocol_id": 787 + }, + "minecraft:polished_blackstone_button": { + "protocol_id": 797 + }, + "minecraft:polished_blackstone_pressure_plate": { + "protocol_id": 796 + }, + "minecraft:polished_blackstone_slab": { + "protocol_id": 795 + }, + "minecraft:polished_blackstone_stairs": { + "protocol_id": 794 + }, + "minecraft:polished_blackstone_wall": { + "protocol_id": 798 + }, + "minecraft:polished_deepslate": { + "protocol_id": 906 + }, + "minecraft:polished_deepslate_slab": { + "protocol_id": 908 + }, + "minecraft:polished_deepslate_stairs": { + "protocol_id": 907 + }, + "minecraft:polished_deepslate_wall": { + "protocol_id": 909 + }, + "minecraft:polished_diorite": { + "protocol_id": 5 + }, + "minecraft:polished_diorite_slab": { + "protocol_id": 682 + }, + "minecraft:polished_diorite_stairs": { + "protocol_id": 668 + }, + "minecraft:polished_granite": { + "protocol_id": 3 + }, + "minecraft:polished_granite_slab": { + "protocol_id": 679 + }, + "minecraft:polished_granite_stairs": { + "protocol_id": 665 + }, + "minecraft:poppy": { + "protocol_id": 135 + }, + "minecraft:potatoes": { + "protocol_id": 337 + }, + "minecraft:potted_acacia_sapling": { "protocol_id": 315 }, + "minecraft:potted_allium": { + "protocol_id": 322 + }, + "minecraft:potted_azalea_bush": { + "protocol_id": 926 + }, + "minecraft:potted_azure_bluet": { + "protocol_id": 323 + }, + "minecraft:potted_bamboo": { + "protocol_id": 661 + }, + "minecraft:potted_birch_sapling": { + "protocol_id": 313 + }, + "minecraft:potted_blue_orchid": { + "protocol_id": 321 + }, "minecraft:potted_brown_mushroom": { + "protocol_id": 333 + }, + "minecraft:potted_cactus": { + "protocol_id": 335 + }, + "minecraft:potted_cornflower": { + "protocol_id": 329 + }, + "minecraft:potted_crimson_fungus": { + "protocol_id": 777 + }, + "minecraft:potted_crimson_roots": { + "protocol_id": 779 + }, + "minecraft:potted_dandelion": { + "protocol_id": 319 + }, + "minecraft:potted_dark_oak_sapling": { "protocol_id": 316 }, "minecraft:potted_dead_bush": { - "protocol_id": 317 - }, - "minecraft:potted_cactus": { - "protocol_id": 318 - }, - "minecraft:carrots": { - "protocol_id": 319 - }, - "minecraft:potatoes": { - "protocol_id": 320 - }, - "minecraft:oak_button": { - "protocol_id": 321 - }, - "minecraft:spruce_button": { - "protocol_id": 322 - }, - "minecraft:birch_button": { - "protocol_id": 323 - }, - "minecraft:jungle_button": { - "protocol_id": 324 - }, - "minecraft:acacia_button": { - "protocol_id": 325 - }, - "minecraft:dark_oak_button": { - "protocol_id": 326 - }, - "minecraft:skeleton_skull": { - "protocol_id": 327 - }, - "minecraft:skeleton_wall_skull": { - "protocol_id": 328 - }, - "minecraft:wither_skeleton_skull": { - "protocol_id": 329 - }, - "minecraft:wither_skeleton_wall_skull": { - "protocol_id": 330 - }, - "minecraft:zombie_head": { - "protocol_id": 331 - }, - "minecraft:zombie_wall_head": { - "protocol_id": 332 - }, - "minecraft:player_head": { - "protocol_id": 333 - }, - "minecraft:player_wall_head": { "protocol_id": 334 }, - "minecraft:creeper_head": { - "protocol_id": 335 + "minecraft:potted_fern": { + "protocol_id": 318 }, - "minecraft:creeper_wall_head": { - "protocol_id": 336 + "minecraft:potted_flowering_azalea_bush": { + "protocol_id": 927 }, - "minecraft:dragon_head": { - "protocol_id": 337 + "minecraft:potted_jungle_sapling": { + "protocol_id": 314 }, - "minecraft:dragon_wall_head": { - "protocol_id": 338 + "minecraft:potted_lily_of_the_valley": { + "protocol_id": 330 }, - "minecraft:anvil": { - "protocol_id": 339 + "minecraft:potted_mangrove_propagule": { + "protocol_id": 317 }, - "minecraft:chipped_anvil": { - "protocol_id": 340 + "minecraft:potted_oak_sapling": { + "protocol_id": 311 }, - "minecraft:damaged_anvil": { - "protocol_id": 341 + "minecraft:potted_orange_tulip": { + "protocol_id": 325 }, - "minecraft:trapped_chest": { - "protocol_id": 342 + "minecraft:potted_oxeye_daisy": { + "protocol_id": 328 }, - "minecraft:light_weighted_pressure_plate": { - "protocol_id": 343 + "minecraft:potted_pink_tulip": { + "protocol_id": 327 }, - "minecraft:heavy_weighted_pressure_plate": { - "protocol_id": 344 + "minecraft:potted_poppy": { + "protocol_id": 320 }, - "minecraft:comparator": { - "protocol_id": 345 + "minecraft:potted_red_mushroom": { + "protocol_id": 332 }, - "minecraft:daylight_detector": { - "protocol_id": 346 + "minecraft:potted_red_tulip": { + "protocol_id": 324 }, - "minecraft:redstone_block": { - "protocol_id": 347 + "minecraft:potted_spruce_sapling": { + "protocol_id": 312 }, - "minecraft:nether_quartz_ore": { - "protocol_id": 348 + "minecraft:potted_warped_fungus": { + "protocol_id": 778 }, - "minecraft:hopper": { - "protocol_id": 349 + "minecraft:potted_warped_roots": { + "protocol_id": 780 }, - "minecraft:quartz_block": { - "protocol_id": 350 + "minecraft:potted_white_tulip": { + "protocol_id": 326 }, - "minecraft:chiseled_quartz_block": { - "protocol_id": 351 + "minecraft:potted_wither_rose": { + "protocol_id": 331 }, - "minecraft:quartz_pillar": { - "protocol_id": 352 + "minecraft:powder_snow": { + "protocol_id": 845 }, - "minecraft:quartz_stairs": { - "protocol_id": 353 + "minecraft:powder_snow_cauldron": { + "protocol_id": 289 }, - "minecraft:activator_rail": { - "protocol_id": 354 - }, - "minecraft:dropper": { - "protocol_id": 355 - }, - "minecraft:white_terracotta": { - "protocol_id": 356 - }, - "minecraft:orange_terracotta": { - "protocol_id": 357 - }, - "minecraft:magenta_terracotta": { - "protocol_id": 358 - }, - "minecraft:light_blue_terracotta": { - "protocol_id": 359 - }, - "minecraft:yellow_terracotta": { - "protocol_id": 360 - }, - "minecraft:lime_terracotta": { - "protocol_id": 361 - }, - "minecraft:pink_terracotta": { - "protocol_id": 362 - }, - "minecraft:gray_terracotta": { - "protocol_id": 363 - }, - "minecraft:light_gray_terracotta": { - "protocol_id": 364 - }, - "minecraft:cyan_terracotta": { - "protocol_id": 365 - }, - "minecraft:purple_terracotta": { - "protocol_id": 366 - }, - "minecraft:blue_terracotta": { - "protocol_id": 367 - }, - "minecraft:brown_terracotta": { - "protocol_id": 368 - }, - "minecraft:green_terracotta": { - "protocol_id": 369 - }, - "minecraft:red_terracotta": { - "protocol_id": 370 - }, - "minecraft:black_terracotta": { - "protocol_id": 371 - }, - "minecraft:white_stained_glass_pane": { - "protocol_id": 372 - }, - "minecraft:orange_stained_glass_pane": { - "protocol_id": 373 - }, - "minecraft:magenta_stained_glass_pane": { - "protocol_id": 374 - }, - "minecraft:light_blue_stained_glass_pane": { - "protocol_id": 375 - }, - "minecraft:yellow_stained_glass_pane": { - "protocol_id": 376 - }, - "minecraft:lime_stained_glass_pane": { - "protocol_id": 377 - }, - "minecraft:pink_stained_glass_pane": { - "protocol_id": 378 - }, - "minecraft:gray_stained_glass_pane": { - "protocol_id": 379 - }, - "minecraft:light_gray_stained_glass_pane": { - "protocol_id": 380 - }, - "minecraft:cyan_stained_glass_pane": { - "protocol_id": 381 - }, - "minecraft:purple_stained_glass_pane": { - "protocol_id": 382 - }, - "minecraft:blue_stained_glass_pane": { - "protocol_id": 383 - }, - "minecraft:brown_stained_glass_pane": { - "protocol_id": 384 - }, - "minecraft:green_stained_glass_pane": { - "protocol_id": 385 - }, - "minecraft:red_stained_glass_pane": { - "protocol_id": 386 - }, - "minecraft:black_stained_glass_pane": { - "protocol_id": 387 - }, - "minecraft:acacia_stairs": { - "protocol_id": 388 - }, - "minecraft:dark_oak_stairs": { - "protocol_id": 389 - }, - "minecraft:slime_block": { - "protocol_id": 390 - }, - "minecraft:barrier": { - "protocol_id": 391 - }, - "minecraft:light": { - "protocol_id": 392 - }, - "minecraft:iron_trapdoor": { - "protocol_id": 393 + "minecraft:powered_rail": { + "protocol_id": 106 }, "minecraft:prismarine": { - "protocol_id": 394 - }, - "minecraft:prismarine_bricks": { - "protocol_id": 395 - }, - "minecraft:dark_prismarine": { - "protocol_id": 396 - }, - "minecraft:prismarine_stairs": { - "protocol_id": 397 - }, - "minecraft:prismarine_brick_stairs": { - "protocol_id": 398 - }, - "minecraft:dark_prismarine_stairs": { - "protocol_id": 399 - }, - "minecraft:prismarine_slab": { - "protocol_id": 400 - }, - "minecraft:prismarine_brick_slab": { - "protocol_id": 401 - }, - "minecraft:dark_prismarine_slab": { - "protocol_id": 402 - }, - "minecraft:sea_lantern": { - "protocol_id": 403 - }, - "minecraft:hay_block": { - "protocol_id": 404 - }, - "minecraft:white_carpet": { - "protocol_id": 405 - }, - "minecraft:orange_carpet": { - "protocol_id": 406 - }, - "minecraft:magenta_carpet": { - "protocol_id": 407 - }, - "minecraft:light_blue_carpet": { - "protocol_id": 408 - }, - "minecraft:yellow_carpet": { - "protocol_id": 409 - }, - "minecraft:lime_carpet": { - "protocol_id": 410 - }, - "minecraft:pink_carpet": { - "protocol_id": 411 - }, - "minecraft:gray_carpet": { - "protocol_id": 412 - }, - "minecraft:light_gray_carpet": { "protocol_id": 413 }, - "minecraft:cyan_carpet": { - "protocol_id": 414 - }, - "minecraft:purple_carpet": { - "protocol_id": 415 - }, - "minecraft:blue_carpet": { - "protocol_id": 416 - }, - "minecraft:brown_carpet": { - "protocol_id": 417 - }, - "minecraft:green_carpet": { - "protocol_id": 418 - }, - "minecraft:red_carpet": { - "protocol_id": 419 - }, - "minecraft:black_carpet": { + "minecraft:prismarine_brick_slab": { "protocol_id": 420 }, - "minecraft:terracotta": { - "protocol_id": 421 + "minecraft:prismarine_brick_stairs": { + "protocol_id": 417 }, - "minecraft:coal_block": { - "protocol_id": 422 + "minecraft:prismarine_bricks": { + "protocol_id": 414 }, - "minecraft:packed_ice": { - "protocol_id": 423 + "minecraft:prismarine_slab": { + "protocol_id": 419 }, - "minecraft:sunflower": { - "protocol_id": 424 + "minecraft:prismarine_stairs": { + "protocol_id": 416 }, - "minecraft:lilac": { - "protocol_id": 425 + "minecraft:prismarine_wall": { + "protocol_id": 693 }, - "minecraft:rose_bush": { - "protocol_id": 426 + "minecraft:pumpkin": { + "protocol_id": 212 }, - "minecraft:peony": { - "protocol_id": 427 - }, - "minecraft:tall_grass": { - "protocol_id": 428 - }, - "minecraft:large_fern": { - "protocol_id": 429 - }, - "minecraft:white_banner": { - "protocol_id": 430 - }, - "minecraft:orange_banner": { - "protocol_id": 431 - }, - "minecraft:magenta_banner": { - "protocol_id": 432 - }, - "minecraft:light_blue_banner": { - "protocol_id": 433 - }, - "minecraft:yellow_banner": { - "protocol_id": 434 - }, - "minecraft:lime_banner": { - "protocol_id": 435 - }, - "minecraft:pink_banner": { - "protocol_id": 436 - }, - "minecraft:gray_banner": { - "protocol_id": 437 - }, - "minecraft:light_gray_banner": { - "protocol_id": 438 - }, - "minecraft:cyan_banner": { - "protocol_id": 439 + "minecraft:pumpkin_stem": { + "protocol_id": 270 }, "minecraft:purple_banner": { - "protocol_id": 440 - }, - "minecraft:blue_banner": { - "protocol_id": 441 - }, - "minecraft:brown_banner": { - "protocol_id": 442 - }, - "minecraft:green_banner": { - "protocol_id": 443 - }, - "minecraft:red_banner": { - "protocol_id": 444 - }, - "minecraft:black_banner": { - "protocol_id": 445 - }, - "minecraft:white_wall_banner": { - "protocol_id": 446 - }, - "minecraft:orange_wall_banner": { - "protocol_id": 447 - }, - "minecraft:magenta_wall_banner": { - "protocol_id": 448 - }, - "minecraft:light_blue_wall_banner": { - "protocol_id": 449 - }, - "minecraft:yellow_wall_banner": { - "protocol_id": 450 - }, - "minecraft:lime_wall_banner": { - "protocol_id": 451 - }, - "minecraft:pink_wall_banner": { - "protocol_id": 452 - }, - "minecraft:gray_wall_banner": { - "protocol_id": 453 - }, - "minecraft:light_gray_wall_banner": { - "protocol_id": 454 - }, - "minecraft:cyan_wall_banner": { - "protocol_id": 455 - }, - "minecraft:purple_wall_banner": { - "protocol_id": 456 - }, - "minecraft:blue_wall_banner": { - "protocol_id": 457 - }, - "minecraft:brown_wall_banner": { - "protocol_id": 458 - }, - "minecraft:green_wall_banner": { "protocol_id": 459 }, - "minecraft:red_wall_banner": { - "protocol_id": 460 + "minecraft:purple_bed": { + "protocol_id": 100 }, - "minecraft:black_wall_banner": { - "protocol_id": 461 + "minecraft:purple_candle": { + "protocol_id": 813 }, - "minecraft:red_sandstone": { - "protocol_id": 462 + "minecraft:purple_candle_cake": { + "protocol_id": 830 }, - "minecraft:chiseled_red_sandstone": { - "protocol_id": 463 + "minecraft:purple_carpet": { + "protocol_id": 434 }, - "minecraft:cut_red_sandstone": { - "protocol_id": 464 + "minecraft:purple_concrete": { + "protocol_id": 590 }, - "minecraft:red_sandstone_stairs": { - "protocol_id": 465 + "minecraft:purple_concrete_powder": { + "protocol_id": 606 }, - "minecraft:oak_slab": { - "protocol_id": 466 + "minecraft:purple_glazed_terracotta": { + "protocol_id": 574 }, - "minecraft:spruce_slab": { - "protocol_id": 467 + "minecraft:purple_shulker_box": { + "protocol_id": 558 }, - "minecraft:birch_slab": { - "protocol_id": 468 + "minecraft:purple_stained_glass": { + "protocol_id": 236 }, - "minecraft:jungle_slab": { - "protocol_id": 469 + "minecraft:purple_stained_glass_pane": { + "protocol_id": 400 }, - "minecraft:acacia_slab": { - "protocol_id": 470 + "minecraft:purple_terracotta": { + "protocol_id": 384 }, - "minecraft:dark_oak_slab": { - "protocol_id": 471 - }, - "minecraft:stone_slab": { - "protocol_id": 472 - }, - "minecraft:smooth_stone_slab": { - "protocol_id": 473 - }, - "minecraft:sandstone_slab": { - "protocol_id": 474 - }, - "minecraft:cut_sandstone_slab": { + "minecraft:purple_wall_banner": { "protocol_id": 475 }, - "minecraft:petrified_oak_slab": { - "protocol_id": 476 + "minecraft:purple_wool": { + "protocol_id": 127 }, - "minecraft:cobblestone_slab": { - "protocol_id": 477 + "minecraft:purpur_block": { + "protocol_id": 531 }, - "minecraft:brick_slab": { - "protocol_id": 478 + "minecraft:purpur_pillar": { + "protocol_id": 532 }, - "minecraft:stone_brick_slab": { - "protocol_id": 479 + "minecraft:purpur_slab": { + "protocol_id": 505 }, - "minecraft:nether_brick_slab": { - "protocol_id": 480 + "minecraft:purpur_stairs": { + "protocol_id": 533 + }, + "minecraft:quartz_block": { + "protocol_id": 368 + }, + "minecraft:quartz_bricks": { + "protocol_id": 801 + }, + "minecraft:quartz_pillar": { + "protocol_id": 370 }, "minecraft:quartz_slab": { + "protocol_id": 502 + }, + "minecraft:quartz_stairs": { + "protocol_id": 371 + }, + "minecraft:rail": { + "protocol_id": 180 + }, + "minecraft:raw_copper_block": { + "protocol_id": 924 + }, + "minecraft:raw_gold_block": { + "protocol_id": 925 + }, + "minecraft:raw_iron_block": { + "protocol_id": 923 + }, + "minecraft:red_banner": { + "protocol_id": 463 + }, + "minecraft:red_bed": { + "protocol_id": 104 + }, + "minecraft:red_candle": { + "protocol_id": 817 + }, + "minecraft:red_candle_cake": { + "protocol_id": 834 + }, + "minecraft:red_carpet": { + "protocol_id": 438 + }, + "minecraft:red_concrete": { + "protocol_id": 594 + }, + "minecraft:red_concrete_powder": { + "protocol_id": 610 + }, + "minecraft:red_glazed_terracotta": { + "protocol_id": 578 + }, + "minecraft:red_mushroom": { + "protocol_id": 148 + }, + "minecraft:red_mushroom_block": { + "protocol_id": 262 + }, + "minecraft:red_nether_brick_slab": { + "protocol_id": 689 + }, + "minecraft:red_nether_brick_stairs": { + "protocol_id": 676 + }, + "minecraft:red_nether_brick_wall": { + "protocol_id": 701 + }, + "minecraft:red_nether_bricks": { + "protocol_id": 543 + }, + "minecraft:red_sand": { + "protocol_id": 31 + }, + "minecraft:red_sandstone": { "protocol_id": 481 }, "minecraft:red_sandstone_slab": { - "protocol_id": 482 - }, - "minecraft:cut_red_sandstone_slab": { - "protocol_id": 483 - }, - "minecraft:purpur_slab": { - "protocol_id": 484 - }, - "minecraft:smooth_stone": { - "protocol_id": 485 - }, - "minecraft:smooth_sandstone": { - "protocol_id": 486 - }, - "minecraft:smooth_quartz": { - "protocol_id": 487 - }, - "minecraft:smooth_red_sandstone": { - "protocol_id": 488 - }, - "minecraft:spruce_fence_gate": { - "protocol_id": 489 - }, - "minecraft:birch_fence_gate": { - "protocol_id": 490 - }, - "minecraft:jungle_fence_gate": { - "protocol_id": 491 - }, - "minecraft:acacia_fence_gate": { - "protocol_id": 492 - }, - "minecraft:dark_oak_fence_gate": { - "protocol_id": 493 - }, - "minecraft:spruce_fence": { - "protocol_id": 494 - }, - "minecraft:birch_fence": { - "protocol_id": 495 - }, - "minecraft:jungle_fence": { - "protocol_id": 496 - }, - "minecraft:acacia_fence": { - "protocol_id": 497 - }, - "minecraft:dark_oak_fence": { - "protocol_id": 498 - }, - "minecraft:spruce_door": { - "protocol_id": 499 - }, - "minecraft:birch_door": { - "protocol_id": 500 - }, - "minecraft:jungle_door": { - "protocol_id": 501 - }, - "minecraft:acacia_door": { - "protocol_id": 502 - }, - "minecraft:dark_oak_door": { "protocol_id": 503 }, - "minecraft:end_rod": { - "protocol_id": 504 - }, - "minecraft:chorus_plant": { - "protocol_id": 505 - }, - "minecraft:chorus_flower": { - "protocol_id": 506 - }, - "minecraft:purpur_block": { - "protocol_id": 507 - }, - "minecraft:purpur_pillar": { - "protocol_id": 508 - }, - "minecraft:purpur_stairs": { - "protocol_id": 509 - }, - "minecraft:end_stone_bricks": { - "protocol_id": 510 - }, - "minecraft:beetroots": { - "protocol_id": 511 - }, - "minecraft:dirt_path": { - "protocol_id": 512 - }, - "minecraft:end_gateway": { - "protocol_id": 513 - }, - "minecraft:repeating_command_block": { - "protocol_id": 514 - }, - "minecraft:chain_command_block": { - "protocol_id": 515 - }, - "minecraft:frosted_ice": { - "protocol_id": 516 - }, - "minecraft:magma_block": { - "protocol_id": 517 - }, - "minecraft:nether_wart_block": { - "protocol_id": 518 - }, - "minecraft:red_nether_bricks": { - "protocol_id": 519 - }, - "minecraft:bone_block": { - "protocol_id": 520 - }, - "minecraft:structure_void": { - "protocol_id": 521 - }, - "minecraft:observer": { - "protocol_id": 522 - }, - "minecraft:shulker_box": { - "protocol_id": 523 - }, - "minecraft:white_shulker_box": { - "protocol_id": 524 - }, - "minecraft:orange_shulker_box": { - "protocol_id": 525 - }, - "minecraft:magenta_shulker_box": { - "protocol_id": 526 - }, - "minecraft:light_blue_shulker_box": { - "protocol_id": 527 - }, - "minecraft:yellow_shulker_box": { - "protocol_id": 528 - }, - "minecraft:lime_shulker_box": { - "protocol_id": 529 - }, - "minecraft:pink_shulker_box": { - "protocol_id": 530 - }, - "minecraft:gray_shulker_box": { - "protocol_id": 531 - }, - "minecraft:light_gray_shulker_box": { - "protocol_id": 532 - }, - "minecraft:cyan_shulker_box": { - "protocol_id": 533 - }, - "minecraft:purple_shulker_box": { - "protocol_id": 534 - }, - "minecraft:blue_shulker_box": { - "protocol_id": 535 - }, - "minecraft:brown_shulker_box": { - "protocol_id": 536 - }, - "minecraft:green_shulker_box": { - "protocol_id": 537 - }, - "minecraft:red_shulker_box": { - "protocol_id": 538 - }, - "minecraft:black_shulker_box": { - "protocol_id": 539 - }, - "minecraft:white_glazed_terracotta": { - "protocol_id": 540 - }, - "minecraft:orange_glazed_terracotta": { - "protocol_id": 541 - }, - "minecraft:magenta_glazed_terracotta": { - "protocol_id": 542 - }, - "minecraft:light_blue_glazed_terracotta": { - "protocol_id": 543 - }, - "minecraft:yellow_glazed_terracotta": { - "protocol_id": 544 - }, - "minecraft:lime_glazed_terracotta": { - "protocol_id": 545 - }, - "minecraft:pink_glazed_terracotta": { - "protocol_id": 546 - }, - "minecraft:gray_glazed_terracotta": { - "protocol_id": 547 - }, - "minecraft:light_gray_glazed_terracotta": { - "protocol_id": 548 - }, - "minecraft:cyan_glazed_terracotta": { - "protocol_id": 549 - }, - "minecraft:purple_glazed_terracotta": { - "protocol_id": 550 - }, - "minecraft:blue_glazed_terracotta": { - "protocol_id": 551 - }, - "minecraft:brown_glazed_terracotta": { - "protocol_id": 552 - }, - "minecraft:green_glazed_terracotta": { - "protocol_id": 553 - }, - "minecraft:red_glazed_terracotta": { - "protocol_id": 554 - }, - "minecraft:black_glazed_terracotta": { - "protocol_id": 555 - }, - "minecraft:white_concrete": { - "protocol_id": 556 - }, - "minecraft:orange_concrete": { - "protocol_id": 557 - }, - "minecraft:magenta_concrete": { - "protocol_id": 558 - }, - "minecraft:light_blue_concrete": { - "protocol_id": 559 - }, - "minecraft:yellow_concrete": { - "protocol_id": 560 - }, - "minecraft:lime_concrete": { - "protocol_id": 561 - }, - "minecraft:pink_concrete": { - "protocol_id": 562 - }, - "minecraft:gray_concrete": { - "protocol_id": 563 - }, - "minecraft:light_gray_concrete": { - "protocol_id": 564 - }, - "minecraft:cyan_concrete": { - "protocol_id": 565 - }, - "minecraft:purple_concrete": { - "protocol_id": 566 - }, - "minecraft:blue_concrete": { - "protocol_id": 567 - }, - "minecraft:brown_concrete": { - "protocol_id": 568 - }, - "minecraft:green_concrete": { - "protocol_id": 569 - }, - "minecraft:red_concrete": { - "protocol_id": 570 - }, - "minecraft:black_concrete": { - "protocol_id": 571 - }, - "minecraft:white_concrete_powder": { - "protocol_id": 572 - }, - "minecraft:orange_concrete_powder": { - "protocol_id": 573 - }, - "minecraft:magenta_concrete_powder": { - "protocol_id": 574 - }, - "minecraft:light_blue_concrete_powder": { - "protocol_id": 575 - }, - "minecraft:yellow_concrete_powder": { - "protocol_id": 576 - }, - "minecraft:lime_concrete_powder": { - "protocol_id": 577 - }, - "minecraft:pink_concrete_powder": { - "protocol_id": 578 - }, - "minecraft:gray_concrete_powder": { - "protocol_id": 579 - }, - "minecraft:light_gray_concrete_powder": { - "protocol_id": 580 - }, - "minecraft:cyan_concrete_powder": { - "protocol_id": 581 - }, - "minecraft:purple_concrete_powder": { - "protocol_id": 582 - }, - "minecraft:blue_concrete_powder": { - "protocol_id": 583 - }, - "minecraft:brown_concrete_powder": { - "protocol_id": 584 - }, - "minecraft:green_concrete_powder": { - "protocol_id": 585 - }, - "minecraft:red_concrete_powder": { - "protocol_id": 586 - }, - "minecraft:black_concrete_powder": { - "protocol_id": 587 - }, - "minecraft:kelp": { - "protocol_id": 588 - }, - "minecraft:kelp_plant": { - "protocol_id": 589 - }, - "minecraft:dried_kelp_block": { - "protocol_id": 590 - }, - "minecraft:turtle_egg": { - "protocol_id": 591 - }, - "minecraft:dead_tube_coral_block": { - "protocol_id": 592 - }, - "minecraft:dead_brain_coral_block": { - "protocol_id": 593 - }, - "minecraft:dead_bubble_coral_block": { - "protocol_id": 594 - }, - "minecraft:dead_fire_coral_block": { - "protocol_id": 595 - }, - "minecraft:dead_horn_coral_block": { - "protocol_id": 596 - }, - "minecraft:tube_coral_block": { - "protocol_id": 597 - }, - "minecraft:brain_coral_block": { - "protocol_id": 598 - }, - "minecraft:bubble_coral_block": { - "protocol_id": 599 - }, - "minecraft:fire_coral_block": { - "protocol_id": 600 - }, - "minecraft:horn_coral_block": { - "protocol_id": 601 - }, - "minecraft:dead_tube_coral": { - "protocol_id": 602 - }, - "minecraft:dead_brain_coral": { - "protocol_id": 603 - }, - "minecraft:dead_bubble_coral": { - "protocol_id": 604 - }, - "minecraft:dead_fire_coral": { - "protocol_id": 605 - }, - "minecraft:dead_horn_coral": { - "protocol_id": 606 - }, - "minecraft:tube_coral": { - "protocol_id": 607 - }, - "minecraft:brain_coral": { - "protocol_id": 608 - }, - "minecraft:bubble_coral": { - "protocol_id": 609 - }, - "minecraft:fire_coral": { - "protocol_id": 610 - }, - "minecraft:horn_coral": { - "protocol_id": 611 - }, - "minecraft:dead_tube_coral_fan": { - "protocol_id": 612 - }, - "minecraft:dead_brain_coral_fan": { - "protocol_id": 613 - }, - "minecraft:dead_bubble_coral_fan": { - "protocol_id": 614 - }, - "minecraft:dead_fire_coral_fan": { - "protocol_id": 615 - }, - "minecraft:dead_horn_coral_fan": { - "protocol_id": 616 - }, - "minecraft:tube_coral_fan": { - "protocol_id": 617 - }, - "minecraft:brain_coral_fan": { - "protocol_id": 618 - }, - "minecraft:bubble_coral_fan": { - "protocol_id": 619 - }, - "minecraft:fire_coral_fan": { - "protocol_id": 620 - }, - "minecraft:horn_coral_fan": { - "protocol_id": 621 - }, - "minecraft:dead_tube_coral_wall_fan": { - "protocol_id": 622 - }, - "minecraft:dead_brain_coral_wall_fan": { - "protocol_id": 623 - }, - "minecraft:dead_bubble_coral_wall_fan": { - "protocol_id": 624 - }, - "minecraft:dead_fire_coral_wall_fan": { - "protocol_id": 625 - }, - "minecraft:dead_horn_coral_wall_fan": { - "protocol_id": 626 - }, - "minecraft:tube_coral_wall_fan": { - "protocol_id": 627 - }, - "minecraft:brain_coral_wall_fan": { - "protocol_id": 628 - }, - "minecraft:bubble_coral_wall_fan": { - "protocol_id": 629 - }, - "minecraft:fire_coral_wall_fan": { - "protocol_id": 630 - }, - "minecraft:horn_coral_wall_fan": { - "protocol_id": 631 - }, - "minecraft:sea_pickle": { - "protocol_id": 632 - }, - "minecraft:blue_ice": { - "protocol_id": 633 - }, - "minecraft:conduit": { - "protocol_id": 634 - }, - "minecraft:bamboo_sapling": { - "protocol_id": 635 - }, - "minecraft:bamboo": { - "protocol_id": 636 - }, - "minecraft:potted_bamboo": { - "protocol_id": 637 - }, - "minecraft:void_air": { - "protocol_id": 638 - }, - "minecraft:cave_air": { - "protocol_id": 639 - }, - "minecraft:bubble_column": { - "protocol_id": 640 - }, - "minecraft:polished_granite_stairs": { - "protocol_id": 641 - }, - "minecraft:smooth_red_sandstone_stairs": { - "protocol_id": 642 - }, - "minecraft:mossy_stone_brick_stairs": { - "protocol_id": 643 - }, - "minecraft:polished_diorite_stairs": { - "protocol_id": 644 - }, - "minecraft:mossy_cobblestone_stairs": { - "protocol_id": 645 - }, - "minecraft:end_stone_brick_stairs": { - "protocol_id": 646 - }, - "minecraft:stone_stairs": { - "protocol_id": 647 - }, - "minecraft:smooth_sandstone_stairs": { - "protocol_id": 648 - }, - "minecraft:smooth_quartz_stairs": { - "protocol_id": 649 - }, - "minecraft:granite_stairs": { - "protocol_id": 650 - }, - "minecraft:andesite_stairs": { - "protocol_id": 651 - }, - "minecraft:red_nether_brick_stairs": { - "protocol_id": 652 - }, - "minecraft:polished_andesite_stairs": { - "protocol_id": 653 - }, - "minecraft:diorite_stairs": { - "protocol_id": 654 - }, - "minecraft:polished_granite_slab": { - "protocol_id": 655 - }, - "minecraft:smooth_red_sandstone_slab": { - "protocol_id": 656 - }, - "minecraft:mossy_stone_brick_slab": { - "protocol_id": 657 - }, - "minecraft:polished_diorite_slab": { - "protocol_id": 658 - }, - "minecraft:mossy_cobblestone_slab": { - "protocol_id": 659 - }, - "minecraft:end_stone_brick_slab": { - "protocol_id": 660 - }, - "minecraft:smooth_sandstone_slab": { - "protocol_id": 661 - }, - "minecraft:smooth_quartz_slab": { - "protocol_id": 662 - }, - "minecraft:granite_slab": { - "protocol_id": 663 - }, - "minecraft:andesite_slab": { - "protocol_id": 664 - }, - "minecraft:red_nether_brick_slab": { - "protocol_id": 665 - }, - "minecraft:polished_andesite_slab": { - "protocol_id": 666 - }, - "minecraft:diorite_slab": { - "protocol_id": 667 - }, - "minecraft:brick_wall": { - "protocol_id": 668 - }, - "minecraft:prismarine_wall": { - "protocol_id": 669 + "minecraft:red_sandstone_stairs": { + "protocol_id": 484 }, "minecraft:red_sandstone_wall": { - "protocol_id": 670 - }, - "minecraft:mossy_stone_brick_wall": { - "protocol_id": 671 - }, - "minecraft:granite_wall": { - "protocol_id": 672 - }, - "minecraft:stone_brick_wall": { - "protocol_id": 673 - }, - "minecraft:nether_brick_wall": { - "protocol_id": 674 - }, - "minecraft:andesite_wall": { - "protocol_id": 675 - }, - "minecraft:red_nether_brick_wall": { - "protocol_id": 676 - }, - "minecraft:sandstone_wall": { - "protocol_id": 677 - }, - "minecraft:end_stone_brick_wall": { - "protocol_id": 678 - }, - "minecraft:diorite_wall": { - "protocol_id": 679 - }, - "minecraft:scaffolding": { - "protocol_id": 680 - }, - "minecraft:loom": { - "protocol_id": 681 - }, - "minecraft:barrel": { - "protocol_id": 682 - }, - "minecraft:smoker": { - "protocol_id": 683 - }, - "minecraft:blast_furnace": { - "protocol_id": 684 - }, - "minecraft:cartography_table": { - "protocol_id": 685 - }, - "minecraft:fletching_table": { - "protocol_id": 686 - }, - "minecraft:grindstone": { - "protocol_id": 687 - }, - "minecraft:lectern": { - "protocol_id": 688 - }, - "minecraft:smithing_table": { - "protocol_id": 689 - }, - "minecraft:stonecutter": { - "protocol_id": 690 - }, - "minecraft:bell": { - "protocol_id": 691 - }, - "minecraft:lantern": { - "protocol_id": 692 - }, - "minecraft:soul_lantern": { - "protocol_id": 693 - }, - "minecraft:campfire": { "protocol_id": 694 }, - "minecraft:soul_campfire": { - "protocol_id": 695 + "minecraft:red_shulker_box": { + "protocol_id": 562 }, - "minecraft:sweet_berry_bush": { - "protocol_id": 696 + "minecraft:red_stained_glass": { + "protocol_id": 240 }, - "minecraft:warped_stem": { - "protocol_id": 697 + "minecraft:red_stained_glass_pane": { + "protocol_id": 404 }, - "minecraft:stripped_warped_stem": { - "protocol_id": 698 + "minecraft:red_terracotta": { + "protocol_id": 388 }, - "minecraft:warped_hyphae": { - "protocol_id": 699 + "minecraft:red_tulip": { + "protocol_id": 139 }, - "minecraft:stripped_warped_hyphae": { - "protocol_id": 700 + "minecraft:red_wall_banner": { + "protocol_id": 479 }, - "minecraft:warped_nylium": { - "protocol_id": 701 + "minecraft:red_wool": { + "protocol_id": 131 }, - "minecraft:warped_fungus": { - "protocol_id": 702 + "minecraft:redstone_block": { + "protocol_id": 365 }, - "minecraft:warped_wart_block": { - "protocol_id": 703 + "minecraft:redstone_lamp": { + "protocol_id": 294 }, - "minecraft:warped_roots": { - "protocol_id": 704 + "minecraft:redstone_ore": { + "protocol_id": 199 }, - "minecraft:nether_sprouts": { - "protocol_id": 705 + "minecraft:redstone_torch": { + "protocol_id": 201 }, - "minecraft:crimson_stem": { - "protocol_id": 706 + "minecraft:redstone_wall_torch": { + "protocol_id": 202 }, - "minecraft:stripped_crimson_stem": { - "protocol_id": 707 + "minecraft:redstone_wire": { + "protocol_id": 163 }, - "minecraft:crimson_hyphae": { - "protocol_id": 708 + "minecraft:reinforced_deepslate": { + "protocol_id": 932 }, - "minecraft:stripped_crimson_hyphae": { - "protocol_id": 709 + "minecraft:repeater": { + "protocol_id": 225 }, - "minecraft:crimson_nylium": { - "protocol_id": 710 - }, - "minecraft:crimson_fungus": { - "protocol_id": 711 - }, - "minecraft:shroomlight": { - "protocol_id": 712 - }, - "minecraft:weeping_vines": { - "protocol_id": 713 - }, - "minecraft:weeping_vines_plant": { - "protocol_id": 714 - }, - "minecraft:twisting_vines": { - "protocol_id": 715 - }, - "minecraft:twisting_vines_plant": { - "protocol_id": 716 - }, - "minecraft:crimson_roots": { - "protocol_id": 717 - }, - "minecraft:crimson_planks": { - "protocol_id": 718 - }, - "minecraft:warped_planks": { - "protocol_id": 719 - }, - "minecraft:crimson_slab": { - "protocol_id": 720 - }, - "minecraft:warped_slab": { - "protocol_id": 721 - }, - "minecraft:crimson_pressure_plate": { - "protocol_id": 722 - }, - "minecraft:warped_pressure_plate": { - "protocol_id": 723 - }, - "minecraft:crimson_fence": { - "protocol_id": 724 - }, - "minecraft:warped_fence": { - "protocol_id": 725 - }, - "minecraft:crimson_trapdoor": { - "protocol_id": 726 - }, - "minecraft:warped_trapdoor": { - "protocol_id": 727 - }, - "minecraft:crimson_fence_gate": { - "protocol_id": 728 - }, - "minecraft:warped_fence_gate": { - "protocol_id": 729 - }, - "minecraft:crimson_stairs": { - "protocol_id": 730 - }, - "minecraft:warped_stairs": { - "protocol_id": 731 - }, - "minecraft:crimson_button": { - "protocol_id": 732 - }, - "minecraft:warped_button": { - "protocol_id": 733 - }, - "minecraft:crimson_door": { - "protocol_id": 734 - }, - "minecraft:warped_door": { - "protocol_id": 735 - }, - "minecraft:crimson_sign": { - "protocol_id": 736 - }, - "minecraft:warped_sign": { - "protocol_id": 737 - }, - "minecraft:crimson_wall_sign": { - "protocol_id": 738 - }, - "minecraft:warped_wall_sign": { - "protocol_id": 739 - }, - "minecraft:structure_block": { - "protocol_id": 740 - }, - "minecraft:jigsaw": { - "protocol_id": 741 - }, - "minecraft:composter": { - "protocol_id": 742 - }, - "minecraft:target": { - "protocol_id": 743 - }, - "minecraft:bee_nest": { - "protocol_id": 744 - }, - "minecraft:beehive": { - "protocol_id": 745 - }, - "minecraft:honey_block": { - "protocol_id": 746 - }, - "minecraft:honeycomb_block": { - "protocol_id": 747 - }, - "minecraft:netherite_block": { - "protocol_id": 748 - }, - "minecraft:ancient_debris": { - "protocol_id": 749 - }, - "minecraft:crying_obsidian": { - "protocol_id": 750 + "minecraft:repeating_command_block": { + "protocol_id": 538 }, "minecraft:respawn_anchor": { - "protocol_id": 751 - }, - "minecraft:potted_crimson_fungus": { - "protocol_id": 752 - }, - "minecraft:potted_warped_fungus": { - "protocol_id": 753 - }, - "minecraft:potted_crimson_roots": { - "protocol_id": 754 - }, - "minecraft:potted_warped_roots": { - "protocol_id": 755 - }, - "minecraft:lodestone": { - "protocol_id": 756 - }, - "minecraft:blackstone": { - "protocol_id": 757 - }, - "minecraft:blackstone_stairs": { - "protocol_id": 758 - }, - "minecraft:blackstone_wall": { - "protocol_id": 759 - }, - "minecraft:blackstone_slab": { - "protocol_id": 760 - }, - "minecraft:polished_blackstone": { - "protocol_id": 761 - }, - "minecraft:polished_blackstone_bricks": { - "protocol_id": 762 - }, - "minecraft:cracked_polished_blackstone_bricks": { - "protocol_id": 763 - }, - "minecraft:chiseled_polished_blackstone": { - "protocol_id": 764 - }, - "minecraft:polished_blackstone_brick_slab": { - "protocol_id": 765 - }, - "minecraft:polished_blackstone_brick_stairs": { - "protocol_id": 766 - }, - "minecraft:polished_blackstone_brick_wall": { - "protocol_id": 767 - }, - "minecraft:gilded_blackstone": { - "protocol_id": 768 - }, - "minecraft:polished_blackstone_stairs": { - "protocol_id": 769 - }, - "minecraft:polished_blackstone_slab": { - "protocol_id": 770 - }, - "minecraft:polished_blackstone_pressure_plate": { - "protocol_id": 771 - }, - "minecraft:polished_blackstone_button": { - "protocol_id": 772 - }, - "minecraft:polished_blackstone_wall": { - "protocol_id": 773 - }, - "minecraft:chiseled_nether_bricks": { - "protocol_id": 774 - }, - "minecraft:cracked_nether_bricks": { - "protocol_id": 775 - }, - "minecraft:quartz_bricks": { "protocol_id": 776 }, - "minecraft:candle": { - "protocol_id": 777 - }, - "minecraft:white_candle": { - "protocol_id": 778 - }, - "minecraft:orange_candle": { - "protocol_id": 779 - }, - "minecraft:magenta_candle": { - "protocol_id": 780 - }, - "minecraft:light_blue_candle": { - "protocol_id": 781 - }, - "minecraft:yellow_candle": { - "protocol_id": 782 - }, - "minecraft:lime_candle": { - "protocol_id": 783 - }, - "minecraft:pink_candle": { - "protocol_id": 784 - }, - "minecraft:gray_candle": { - "protocol_id": 785 - }, - "minecraft:light_gray_candle": { - "protocol_id": 786 - }, - "minecraft:cyan_candle": { - "protocol_id": 787 - }, - "minecraft:purple_candle": { - "protocol_id": 788 - }, - "minecraft:blue_candle": { - "protocol_id": 789 - }, - "minecraft:brown_candle": { - "protocol_id": 790 - }, - "minecraft:green_candle": { - "protocol_id": 791 - }, - "minecraft:red_candle": { - "protocol_id": 792 - }, - "minecraft:black_candle": { - "protocol_id": 793 - }, - "minecraft:candle_cake": { - "protocol_id": 794 - }, - "minecraft:white_candle_cake": { - "protocol_id": 795 - }, - "minecraft:orange_candle_cake": { - "protocol_id": 796 - }, - "minecraft:magenta_candle_cake": { - "protocol_id": 797 - }, - "minecraft:light_blue_candle_cake": { - "protocol_id": 798 - }, - "minecraft:yellow_candle_cake": { - "protocol_id": 799 - }, - "minecraft:lime_candle_cake": { - "protocol_id": 800 - }, - "minecraft:pink_candle_cake": { - "protocol_id": 801 - }, - "minecraft:gray_candle_cake": { - "protocol_id": 802 - }, - "minecraft:light_gray_candle_cake": { - "protocol_id": 803 - }, - "minecraft:cyan_candle_cake": { - "protocol_id": 804 - }, - "minecraft:purple_candle_cake": { - "protocol_id": 805 - }, - "minecraft:blue_candle_cake": { - "protocol_id": 806 - }, - "minecraft:brown_candle_cake": { - "protocol_id": 807 - }, - "minecraft:green_candle_cake": { - "protocol_id": 808 - }, - "minecraft:red_candle_cake": { - "protocol_id": 809 - }, - "minecraft:black_candle_cake": { - "protocol_id": 810 - }, - "minecraft:amethyst_block": { - "protocol_id": 811 - }, - "minecraft:budding_amethyst": { - "protocol_id": 812 - }, - "minecraft:amethyst_cluster": { - "protocol_id": 813 - }, - "minecraft:large_amethyst_bud": { - "protocol_id": 814 - }, - "minecraft:medium_amethyst_bud": { - "protocol_id": 815 - }, - "minecraft:small_amethyst_bud": { - "protocol_id": 816 - }, - "minecraft:tuff": { - "protocol_id": 817 - }, - "minecraft:calcite": { - "protocol_id": 818 - }, - "minecraft:tinted_glass": { - "protocol_id": 819 - }, - "minecraft:powder_snow": { - "protocol_id": 820 - }, - "minecraft:sculk_sensor": { - "protocol_id": 821 - }, - "minecraft:oxidized_copper": { - "protocol_id": 822 - }, - "minecraft:weathered_copper": { - "protocol_id": 823 - }, - "minecraft:exposed_copper": { - "protocol_id": 824 - }, - "minecraft:copper_block": { - "protocol_id": 825 - }, - "minecraft:copper_ore": { - "protocol_id": 826 - }, - "minecraft:deepslate_copper_ore": { - "protocol_id": 827 - }, - "minecraft:oxidized_cut_copper": { - "protocol_id": 828 - }, - "minecraft:weathered_cut_copper": { - "protocol_id": 829 - }, - "minecraft:exposed_cut_copper": { - "protocol_id": 830 - }, - "minecraft:cut_copper": { - "protocol_id": 831 - }, - "minecraft:oxidized_cut_copper_stairs": { - "protocol_id": 832 - }, - "minecraft:weathered_cut_copper_stairs": { - "protocol_id": 833 - }, - "minecraft:exposed_cut_copper_stairs": { - "protocol_id": 834 - }, - "minecraft:cut_copper_stairs": { - "protocol_id": 835 - }, - "minecraft:oxidized_cut_copper_slab": { - "protocol_id": 836 - }, - "minecraft:weathered_cut_copper_slab": { - "protocol_id": 837 - }, - "minecraft:exposed_cut_copper_slab": { - "protocol_id": 838 - }, - "minecraft:cut_copper_slab": { - "protocol_id": 839 - }, - "minecraft:waxed_copper_block": { - "protocol_id": 840 - }, - "minecraft:waxed_weathered_copper": { - "protocol_id": 841 - }, - "minecraft:waxed_exposed_copper": { - "protocol_id": 842 - }, - "minecraft:waxed_oxidized_copper": { - "protocol_id": 843 - }, - "minecraft:waxed_oxidized_cut_copper": { - "protocol_id": 844 - }, - "minecraft:waxed_weathered_cut_copper": { - "protocol_id": 845 - }, - "minecraft:waxed_exposed_cut_copper": { - "protocol_id": 846 - }, - "minecraft:waxed_cut_copper": { - "protocol_id": 847 - }, - "minecraft:waxed_oxidized_cut_copper_stairs": { - "protocol_id": 848 - }, - "minecraft:waxed_weathered_cut_copper_stairs": { - "protocol_id": 849 - }, - "minecraft:waxed_exposed_cut_copper_stairs": { - "protocol_id": 850 - }, - "minecraft:waxed_cut_copper_stairs": { - "protocol_id": 851 - }, - "minecraft:waxed_oxidized_cut_copper_slab": { - "protocol_id": 852 - }, - "minecraft:waxed_weathered_cut_copper_slab": { - "protocol_id": 853 - }, - "minecraft:waxed_exposed_cut_copper_slab": { - "protocol_id": 854 - }, - "minecraft:waxed_cut_copper_slab": { - "protocol_id": 855 - }, - "minecraft:lightning_rod": { - "protocol_id": 856 - }, - "minecraft:pointed_dripstone": { - "protocol_id": 857 - }, - "minecraft:dripstone_block": { - "protocol_id": 858 - }, - "minecraft:cave_vines": { - "protocol_id": 859 - }, - "minecraft:cave_vines_plant": { - "protocol_id": 860 - }, - "minecraft:spore_blossom": { - "protocol_id": 861 - }, - "minecraft:azalea": { - "protocol_id": 862 - }, - "minecraft:flowering_azalea": { - "protocol_id": 863 - }, - "minecraft:moss_carpet": { - "protocol_id": 864 - }, - "minecraft:moss_block": { - "protocol_id": 865 - }, - "minecraft:big_dripleaf": { - "protocol_id": 866 - }, - "minecraft:big_dripleaf_stem": { - "protocol_id": 867 - }, - "minecraft:small_dripleaf": { - "protocol_id": 868 - }, - "minecraft:hanging_roots": { - "protocol_id": 869 - }, "minecraft:rooted_dirt": { - "protocol_id": 870 + "protocol_id": 899 }, - "minecraft:deepslate": { - "protocol_id": 871 + "minecraft:rose_bush": { + "protocol_id": 445 }, - "minecraft:cobbled_deepslate": { - "protocol_id": 872 - }, - "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 873 - }, - "minecraft:cobbled_deepslate_slab": { - "protocol_id": 874 - }, - "minecraft:cobbled_deepslate_wall": { - "protocol_id": 875 - }, - "minecraft:polished_deepslate": { - "protocol_id": 876 - }, - "minecraft:polished_deepslate_stairs": { - "protocol_id": 877 - }, - "minecraft:polished_deepslate_slab": { - "protocol_id": 878 - }, - "minecraft:polished_deepslate_wall": { - "protocol_id": 879 - }, - "minecraft:deepslate_tiles": { - "protocol_id": 880 - }, - "minecraft:deepslate_tile_stairs": { - "protocol_id": 881 - }, - "minecraft:deepslate_tile_slab": { - "protocol_id": 882 - }, - "minecraft:deepslate_tile_wall": { - "protocol_id": 883 - }, - "minecraft:deepslate_bricks": { - "protocol_id": 884 - }, - "minecraft:deepslate_brick_stairs": { - "protocol_id": 885 - }, - "minecraft:deepslate_brick_slab": { - "protocol_id": 886 - }, - "minecraft:deepslate_brick_wall": { - "protocol_id": 887 - }, - "minecraft:chiseled_deepslate": { - "protocol_id": 888 - }, - "minecraft:cracked_deepslate_bricks": { - "protocol_id": 889 - }, - "minecraft:cracked_deepslate_tiles": { - "protocol_id": 890 - }, - "minecraft:infested_deepslate": { - "protocol_id": 891 - }, - "minecraft:smooth_basalt": { - "protocol_id": 892 - }, - "minecraft:raw_iron_block": { - "protocol_id": 893 - }, - "minecraft:raw_copper_block": { - "protocol_id": 894 - }, - "minecraft:raw_gold_block": { - "protocol_id": 895 - }, - "minecraft:potted_azalea_bush": { - "protocol_id": 896 - }, - "minecraft:potted_flowering_azalea_bush": { - "protocol_id": 897 - } - } - }, - "minecraft:enchantment": { - "protocol_id": 5, - "entries": { - "minecraft:protection": { - "protocol_id": 0 - }, - "minecraft:fire_protection": { - "protocol_id": 1 - }, - "minecraft:feather_falling": { - "protocol_id": 2 - }, - "minecraft:blast_protection": { - "protocol_id": 3 - }, - "minecraft:projectile_protection": { - "protocol_id": 4 - }, - "minecraft:respiration": { - "protocol_id": 5 - }, - "minecraft:aqua_affinity": { - "protocol_id": 6 - }, - "minecraft:thorns": { - "protocol_id": 7 - }, - "minecraft:depth_strider": { - "protocol_id": 8 - }, - "minecraft:frost_walker": { - "protocol_id": 9 - }, - "minecraft:binding_curse": { - "protocol_id": 10 - }, - "minecraft:soul_speed": { - "protocol_id": 11 - }, - "minecraft:sharpness": { - "protocol_id": 12 - }, - "minecraft:smite": { - "protocol_id": 13 - }, - "minecraft:bane_of_arthropods": { - "protocol_id": 14 - }, - "minecraft:knockback": { - "protocol_id": 15 - }, - "minecraft:fire_aspect": { - "protocol_id": 16 - }, - "minecraft:looting": { - "protocol_id": 17 - }, - "minecraft:sweeping": { - "protocol_id": 18 - }, - "minecraft:efficiency": { - "protocol_id": 19 - }, - "minecraft:silk_touch": { - "protocol_id": 20 - }, - "minecraft:unbreaking": { - "protocol_id": 21 - }, - "minecraft:fortune": { - "protocol_id": 22 - }, - "minecraft:power": { - "protocol_id": 23 - }, - "minecraft:punch": { - "protocol_id": 24 - }, - "minecraft:flame": { - "protocol_id": 25 - }, - "minecraft:infinity": { - "protocol_id": 26 - }, - "minecraft:luck_of_the_sea": { - "protocol_id": 27 - }, - "minecraft:lure": { - "protocol_id": 28 - }, - "minecraft:loyalty": { - "protocol_id": 29 - }, - "minecraft:impaling": { + "minecraft:sand": { "protocol_id": 30 }, - "minecraft:riptide": { - "protocol_id": 31 - }, - "minecraft:channeling": { - "protocol_id": 32 - }, - "minecraft:multishot": { - "protocol_id": 33 - }, - "minecraft:quick_charge": { - "protocol_id": 34 - }, - "minecraft:piercing": { - "protocol_id": 35 - }, - "minecraft:mending": { - "protocol_id": 36 - }, - "minecraft:vanishing_curse": { - "protocol_id": 37 - } - } - }, - "minecraft:entity_type": { - "default": "minecraft:pig", - "protocol_id": 6, - "entries": { - "minecraft:area_effect_cloud": { - "protocol_id": 0 - }, - "minecraft:armor_stand": { - "protocol_id": 1 - }, - "minecraft:arrow": { - "protocol_id": 2 - }, - "minecraft:axolotl": { - "protocol_id": 3 - }, - "minecraft:bat": { - "protocol_id": 4 - }, - "minecraft:bee": { - "protocol_id": 5 - }, - "minecraft:blaze": { - "protocol_id": 6 - }, - "minecraft:boat": { - "protocol_id": 7 - }, - "minecraft:cat": { - "protocol_id": 8 - }, - "minecraft:cave_spider": { - "protocol_id": 9 - }, - "minecraft:chicken": { - "protocol_id": 10 - }, - "minecraft:cod": { - "protocol_id": 11 - }, - "minecraft:cow": { - "protocol_id": 12 - }, - "minecraft:creeper": { - "protocol_id": 13 - }, - "minecraft:dolphin": { - "protocol_id": 14 - }, - "minecraft:donkey": { - "protocol_id": 15 - }, - "minecraft:dragon_fireball": { - "protocol_id": 16 - }, - "minecraft:drowned": { - "protocol_id": 17 - }, - "minecraft:elder_guardian": { - "protocol_id": 18 - }, - "minecraft:end_crystal": { - "protocol_id": 19 - }, - "minecraft:ender_dragon": { - "protocol_id": 20 - }, - "minecraft:enderman": { - "protocol_id": 21 - }, - "minecraft:endermite": { - "protocol_id": 22 - }, - "minecraft:evoker": { - "protocol_id": 23 - }, - "minecraft:evoker_fangs": { - "protocol_id": 24 - }, - "minecraft:experience_orb": { - "protocol_id": 25 - }, - "minecraft:eye_of_ender": { - "protocol_id": 26 - }, - "minecraft:falling_block": { - "protocol_id": 27 - }, - "minecraft:firework_rocket": { - "protocol_id": 28 - }, - "minecraft:fox": { - "protocol_id": 29 - }, - "minecraft:ghast": { - "protocol_id": 30 - }, - "minecraft:giant": { - "protocol_id": 31 - }, - "minecraft:glow_item_frame": { - "protocol_id": 32 - }, - "minecraft:glow_squid": { - "protocol_id": 33 - }, - "minecraft:goat": { - "protocol_id": 34 - }, - "minecraft:guardian": { - "protocol_id": 35 - }, - "minecraft:hoglin": { - "protocol_id": 36 - }, - "minecraft:horse": { - "protocol_id": 37 - }, - "minecraft:husk": { - "protocol_id": 38 - }, - "minecraft:illusioner": { - "protocol_id": 39 - }, - "minecraft:iron_golem": { - "protocol_id": 40 - }, - "minecraft:item": { - "protocol_id": 41 - }, - "minecraft:item_frame": { - "protocol_id": 42 - }, - "minecraft:fireball": { - "protocol_id": 43 - }, - "minecraft:leash_knot": { - "protocol_id": 44 - }, - "minecraft:lightning_bolt": { - "protocol_id": 45 - }, - "minecraft:llama": { - "protocol_id": 46 - }, - "minecraft:llama_spit": { - "protocol_id": 47 - }, - "minecraft:magma_cube": { - "protocol_id": 48 - }, - "minecraft:marker": { - "protocol_id": 49 - }, - "minecraft:minecart": { - "protocol_id": 50 - }, - "minecraft:chest_minecart": { - "protocol_id": 51 - }, - "minecraft:command_block_minecart": { - "protocol_id": 52 - }, - "minecraft:furnace_minecart": { - "protocol_id": 53 - }, - "minecraft:hopper_minecart": { - "protocol_id": 54 - }, - "minecraft:spawner_minecart": { - "protocol_id": 55 - }, - "minecraft:tnt_minecart": { - "protocol_id": 56 - }, - "minecraft:mule": { - "protocol_id": 57 - }, - "minecraft:mooshroom": { - "protocol_id": 58 - }, - "minecraft:ocelot": { - "protocol_id": 59 - }, - "minecraft:painting": { - "protocol_id": 60 - }, - "minecraft:panda": { - "protocol_id": 61 - }, - "minecraft:parrot": { - "protocol_id": 62 - }, - "minecraft:phantom": { - "protocol_id": 63 - }, - "minecraft:pig": { - "protocol_id": 64 - }, - "minecraft:piglin": { - "protocol_id": 65 - }, - "minecraft:piglin_brute": { - "protocol_id": 66 - }, - "minecraft:pillager": { - "protocol_id": 67 - }, - "minecraft:polar_bear": { - "protocol_id": 68 - }, - "minecraft:tnt": { - "protocol_id": 69 - }, - "minecraft:pufferfish": { - "protocol_id": 70 - }, - "minecraft:rabbit": { - "protocol_id": 71 - }, - "minecraft:ravager": { - "protocol_id": 72 - }, - "minecraft:salmon": { - "protocol_id": 73 - }, - "minecraft:sheep": { - "protocol_id": 74 - }, - "minecraft:shulker": { - "protocol_id": 75 - }, - "minecraft:shulker_bullet": { - "protocol_id": 76 - }, - "minecraft:silverfish": { - "protocol_id": 77 - }, - "minecraft:skeleton": { - "protocol_id": 78 - }, - "minecraft:skeleton_horse": { - "protocol_id": 79 - }, - "minecraft:slime": { - "protocol_id": 80 - }, - "minecraft:small_fireball": { - "protocol_id": 81 - }, - "minecraft:snow_golem": { - "protocol_id": 82 - }, - "minecraft:snowball": { - "protocol_id": 83 - }, - "minecraft:spectral_arrow": { - "protocol_id": 84 - }, - "minecraft:spider": { - "protocol_id": 85 - }, - "minecraft:squid": { + "minecraft:sandstone": { "protocol_id": 86 }, - "minecraft:stray": { - "protocol_id": 87 + "minecraft:sandstone_slab": { + "protocol_id": 494 }, - "minecraft:strider": { - "protocol_id": 88 + "minecraft:sandstone_stairs": { + "protocol_id": 296 }, - "minecraft:egg": { - "protocol_id": 89 + "minecraft:sandstone_wall": { + "protocol_id": 702 }, - "minecraft:ender_pearl": { - "protocol_id": 90 + "minecraft:scaffolding": { + "protocol_id": 705 }, - "minecraft:experience_bottle": { - "protocol_id": 91 + "minecraft:sculk": { + "protocol_id": 847 }, - "minecraft:potion": { - "protocol_id": 92 + "minecraft:sculk_catalyst": { + "protocol_id": 849 }, - "minecraft:trident": { - "protocol_id": 93 + "minecraft:sculk_sensor": { + "protocol_id": 846 }, - "minecraft:trader_llama": { - "protocol_id": 94 + "minecraft:sculk_shrieker": { + "protocol_id": 850 }, - "minecraft:tropical_fish": { - "protocol_id": 95 + "minecraft:sculk_vein": { + "protocol_id": 848 }, - "minecraft:turtle": { - "protocol_id": 96 + "minecraft:sea_lantern": { + "protocol_id": 422 }, - "minecraft:vex": { - "protocol_id": 97 + "minecraft:sea_pickle": { + "protocol_id": 656 }, - "minecraft:villager": { - "protocol_id": 98 + "minecraft:seagrass": { + "protocol_id": 113 }, - "minecraft:vindicator": { - "protocol_id": 99 + "minecraft:shroomlight": { + "protocol_id": 737 }, - "minecraft:wandering_trader": { - "protocol_id": 100 + "minecraft:shulker_box": { + "protocol_id": 547 }, - "minecraft:witch": { - "protocol_id": 101 + "minecraft:skeleton_skull": { + "protocol_id": 345 }, - "minecraft:wither": { - "protocol_id": 102 + "minecraft:skeleton_wall_skull": { + "protocol_id": 346 }, - "minecraft:wither_skeleton": { - "protocol_id": 103 + "minecraft:slime_block": { + "protocol_id": 409 }, - "minecraft:wither_skull": { - "protocol_id": 104 + "minecraft:small_amethyst_bud": { + "protocol_id": 841 }, - "minecraft:wolf": { - "protocol_id": 105 + "minecraft:small_dripleaf": { + "protocol_id": 897 }, - "minecraft:zoglin": { - "protocol_id": 106 + "minecraft:smithing_table": { + "protocol_id": 714 }, - "minecraft:zombie": { - "protocol_id": 107 + "minecraft:smoker": { + "protocol_id": 708 }, - "minecraft:zombie_horse": { + "minecraft:smooth_basalt": { + "protocol_id": 922 + }, + "minecraft:smooth_quartz": { + "protocol_id": 508 + }, + "minecraft:smooth_quartz_slab": { + "protocol_id": 686 + }, + "minecraft:smooth_quartz_stairs": { + "protocol_id": 673 + }, + "minecraft:smooth_red_sandstone": { + "protocol_id": 509 + }, + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 680 + }, + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 666 + }, + "minecraft:smooth_sandstone": { + "protocol_id": 507 + }, + "minecraft:smooth_sandstone_slab": { + "protocol_id": 685 + }, + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 672 + }, + "minecraft:smooth_stone": { + "protocol_id": 506 + }, + "minecraft:smooth_stone_slab": { + "protocol_id": 493 + }, + "minecraft:snow": { + "protocol_id": 204 + }, + "minecraft:snow_block": { + "protocol_id": 206 + }, + "minecraft:soul_campfire": { + "protocol_id": 720 + }, + "minecraft:soul_fire": { + "protocol_id": 159 + }, + "minecraft:soul_lantern": { + "protocol_id": 718 + }, + "minecraft:soul_sand": { + "protocol_id": 214 + }, + "minecraft:soul_soil": { + "protocol_id": 215 + }, + "minecraft:soul_torch": { + "protocol_id": 218 + }, + "minecraft:soul_wall_torch": { + "protocol_id": 219 + }, + "minecraft:spawner": { + "protocol_id": 160 + }, + "minecraft:sponge": { + "protocol_id": 79 + }, + "minecraft:spore_blossom": { + "protocol_id": 890 + }, + "minecraft:spruce_button": { + "protocol_id": 339 + }, + "minecraft:spruce_door": { + "protocol_id": 522 + }, + "minecraft:spruce_fence": { + "protocol_id": 516 + }, + "minecraft:spruce_fence_gate": { + "protocol_id": 510 + }, + "minecraft:spruce_leaves": { + "protocol_id": 71 + }, + "minecraft:spruce_log": { + "protocol_id": 41 + }, + "minecraft:spruce_planks": { + "protocol_id": 14 + }, + "minecraft:spruce_pressure_plate": { + "protocol_id": 193 + }, + "minecraft:spruce_sapling": { + "protocol_id": 21 + }, + "minecraft:spruce_sign": { + "protocol_id": 172 + }, + "minecraft:spruce_slab": { + "protocol_id": 486 + }, + "minecraft:spruce_stairs": { + "protocol_id": 303 + }, + "minecraft:spruce_trapdoor": { + "protocol_id": 243 + }, + "minecraft:spruce_wall_sign": { + "protocol_id": 183 + }, + "minecraft:spruce_wood": { + "protocol_id": 57 + }, + "minecraft:sticky_piston": { "protocol_id": 108 }, - "minecraft:zombie_villager": { - "protocol_id": 109 - }, - "minecraft:zombified_piglin": { - "protocol_id": 110 - }, - "minecraft:player": { - "protocol_id": 111 - }, - "minecraft:fishing_bobber": { - "protocol_id": 112 - } - } - }, - "minecraft:item": { - "default": "minecraft:air", - "protocol_id": 7, - "entries": { - "minecraft:air": { - "protocol_id": 0 - }, "minecraft:stone": { "protocol_id": 1 }, - "minecraft:granite": { - "protocol_id": 2 - }, - "minecraft:polished_granite": { - "protocol_id": 3 - }, - "minecraft:diorite": { - "protocol_id": 4 - }, - "minecraft:polished_diorite": { - "protocol_id": 5 - }, - "minecraft:andesite": { - "protocol_id": 6 - }, - "minecraft:polished_andesite": { - "protocol_id": 7 - }, - "minecraft:deepslate": { - "protocol_id": 8 - }, - "minecraft:cobbled_deepslate": { - "protocol_id": 9 - }, - "minecraft:polished_deepslate": { - "protocol_id": 10 - }, - "minecraft:calcite": { - "protocol_id": 11 - }, - "minecraft:tuff": { - "protocol_id": 12 - }, - "minecraft:dripstone_block": { - "protocol_id": 13 - }, - "minecraft:grass_block": { - "protocol_id": 14 - }, - "minecraft:dirt": { - "protocol_id": 15 - }, - "minecraft:coarse_dirt": { - "protocol_id": 16 - }, - "minecraft:podzol": { - "protocol_id": 17 - }, - "minecraft:rooted_dirt": { - "protocol_id": 18 - }, - "minecraft:crimson_nylium": { - "protocol_id": 19 - }, - "minecraft:warped_nylium": { - "protocol_id": 20 - }, - "minecraft:cobblestone": { - "protocol_id": 21 - }, - "minecraft:oak_planks": { - "protocol_id": 22 - }, - "minecraft:spruce_planks": { - "protocol_id": 23 - }, - "minecraft:birch_planks": { - "protocol_id": 24 - }, - "minecraft:jungle_planks": { - "protocol_id": 25 - }, - "minecraft:acacia_planks": { - "protocol_id": 26 - }, - "minecraft:dark_oak_planks": { - "protocol_id": 27 - }, - "minecraft:crimson_planks": { - "protocol_id": 28 - }, - "minecraft:warped_planks": { - "protocol_id": 29 - }, - "minecraft:oak_sapling": { - "protocol_id": 30 - }, - "minecraft:spruce_sapling": { - "protocol_id": 31 - }, - "minecraft:birch_sapling": { - "protocol_id": 32 - }, - "minecraft:jungle_sapling": { - "protocol_id": 33 - }, - "minecraft:acacia_sapling": { - "protocol_id": 34 - }, - "minecraft:dark_oak_sapling": { - "protocol_id": 35 - }, - "minecraft:bedrock": { - "protocol_id": 36 - }, - "minecraft:sand": { - "protocol_id": 37 - }, - "minecraft:red_sand": { - "protocol_id": 38 - }, - "minecraft:gravel": { - "protocol_id": 39 - }, - "minecraft:coal_ore": { - "protocol_id": 40 - }, - "minecraft:deepslate_coal_ore": { - "protocol_id": 41 - }, - "minecraft:iron_ore": { - "protocol_id": 42 - }, - "minecraft:deepslate_iron_ore": { - "protocol_id": 43 - }, - "minecraft:copper_ore": { - "protocol_id": 44 - }, - "minecraft:deepslate_copper_ore": { - "protocol_id": 45 - }, - "minecraft:gold_ore": { - "protocol_id": 46 - }, - "minecraft:deepslate_gold_ore": { - "protocol_id": 47 - }, - "minecraft:redstone_ore": { - "protocol_id": 48 - }, - "minecraft:deepslate_redstone_ore": { - "protocol_id": 49 - }, - "minecraft:emerald_ore": { - "protocol_id": 50 - }, - "minecraft:deepslate_emerald_ore": { - "protocol_id": 51 - }, - "minecraft:lapis_ore": { - "protocol_id": 52 - }, - "minecraft:deepslate_lapis_ore": { - "protocol_id": 53 - }, - "minecraft:diamond_ore": { - "protocol_id": 54 - }, - "minecraft:deepslate_diamond_ore": { - "protocol_id": 55 - }, - "minecraft:nether_gold_ore": { - "protocol_id": 56 - }, - "minecraft:nether_quartz_ore": { - "protocol_id": 57 - }, - "minecraft:ancient_debris": { - "protocol_id": 58 - }, - "minecraft:coal_block": { - "protocol_id": 59 - }, - "minecraft:raw_iron_block": { - "protocol_id": 60 - }, - "minecraft:raw_copper_block": { - "protocol_id": 61 - }, - "minecraft:raw_gold_block": { - "protocol_id": 62 - }, - "minecraft:amethyst_block": { - "protocol_id": 63 - }, - "minecraft:budding_amethyst": { - "protocol_id": 64 - }, - "minecraft:iron_block": { - "protocol_id": 65 - }, - "minecraft:copper_block": { - "protocol_id": 66 - }, - "minecraft:gold_block": { - "protocol_id": 67 - }, - "minecraft:diamond_block": { - "protocol_id": 68 - }, - "minecraft:netherite_block": { - "protocol_id": 69 - }, - "minecraft:exposed_copper": { - "protocol_id": 70 - }, - "minecraft:weathered_copper": { - "protocol_id": 71 - }, - "minecraft:oxidized_copper": { - "protocol_id": 72 - }, - "minecraft:cut_copper": { - "protocol_id": 73 - }, - "minecraft:exposed_cut_copper": { - "protocol_id": 74 - }, - "minecraft:weathered_cut_copper": { - "protocol_id": 75 - }, - "minecraft:oxidized_cut_copper": { - "protocol_id": 76 - }, - "minecraft:cut_copper_stairs": { - "protocol_id": 77 - }, - "minecraft:exposed_cut_copper_stairs": { - "protocol_id": 78 - }, - "minecraft:weathered_cut_copper_stairs": { - "protocol_id": 79 - }, - "minecraft:oxidized_cut_copper_stairs": { - "protocol_id": 80 - }, - "minecraft:cut_copper_slab": { - "protocol_id": 81 - }, - "minecraft:exposed_cut_copper_slab": { - "protocol_id": 82 - }, - "minecraft:weathered_cut_copper_slab": { - "protocol_id": 83 - }, - "minecraft:oxidized_cut_copper_slab": { - "protocol_id": 84 - }, - "minecraft:waxed_copper_block": { - "protocol_id": 85 - }, - "minecraft:waxed_exposed_copper": { - "protocol_id": 86 - }, - "minecraft:waxed_weathered_copper": { - "protocol_id": 87 - }, - "minecraft:waxed_oxidized_copper": { - "protocol_id": 88 - }, - "minecraft:waxed_cut_copper": { - "protocol_id": 89 - }, - "minecraft:waxed_exposed_cut_copper": { - "protocol_id": 90 - }, - "minecraft:waxed_weathered_cut_copper": { - "protocol_id": 91 - }, - "minecraft:waxed_oxidized_cut_copper": { - "protocol_id": 92 - }, - "minecraft:waxed_cut_copper_stairs": { - "protocol_id": 93 - }, - "minecraft:waxed_exposed_cut_copper_stairs": { - "protocol_id": 94 - }, - "minecraft:waxed_weathered_cut_copper_stairs": { - "protocol_id": 95 - }, - "minecraft:waxed_oxidized_cut_copper_stairs": { - "protocol_id": 96 - }, - "minecraft:waxed_cut_copper_slab": { - "protocol_id": 97 - }, - "minecraft:waxed_exposed_cut_copper_slab": { - "protocol_id": 98 - }, - "minecraft:waxed_weathered_cut_copper_slab": { - "protocol_id": 99 - }, - "minecraft:waxed_oxidized_cut_copper_slab": { - "protocol_id": 100 - }, - "minecraft:oak_log": { - "protocol_id": 101 - }, - "minecraft:spruce_log": { - "protocol_id": 102 - }, - "minecraft:birch_log": { - "protocol_id": 103 - }, - "minecraft:jungle_log": { - "protocol_id": 104 - }, - "minecraft:acacia_log": { - "protocol_id": 105 - }, - "minecraft:dark_oak_log": { - "protocol_id": 106 - }, - "minecraft:crimson_stem": { - "protocol_id": 107 - }, - "minecraft:warped_stem": { - "protocol_id": 108 - }, - "minecraft:stripped_oak_log": { - "protocol_id": 109 - }, - "minecraft:stripped_spruce_log": { - "protocol_id": 110 - }, - "minecraft:stripped_birch_log": { - "protocol_id": 111 - }, - "minecraft:stripped_jungle_log": { - "protocol_id": 112 - }, - "minecraft:stripped_acacia_log": { - "protocol_id": 113 - }, - "minecraft:stripped_dark_oak_log": { - "protocol_id": 114 - }, - "minecraft:stripped_crimson_stem": { - "protocol_id": 115 - }, - "minecraft:stripped_warped_stem": { - "protocol_id": 116 - }, - "minecraft:stripped_oak_wood": { - "protocol_id": 117 - }, - "minecraft:stripped_spruce_wood": { - "protocol_id": 118 - }, - "minecraft:stripped_birch_wood": { - "protocol_id": 119 - }, - "minecraft:stripped_jungle_wood": { - "protocol_id": 120 - }, - "minecraft:stripped_acacia_wood": { - "protocol_id": 121 - }, - "minecraft:stripped_dark_oak_wood": { - "protocol_id": 122 - }, - "minecraft:stripped_crimson_hyphae": { - "protocol_id": 123 - }, - "minecraft:stripped_warped_hyphae": { - "protocol_id": 124 - }, - "minecraft:oak_wood": { - "protocol_id": 125 - }, - "minecraft:spruce_wood": { - "protocol_id": 126 - }, - "minecraft:birch_wood": { - "protocol_id": 127 - }, - "minecraft:jungle_wood": { - "protocol_id": 128 - }, - "minecraft:acacia_wood": { - "protocol_id": 129 - }, - "minecraft:dark_oak_wood": { - "protocol_id": 130 - }, - "minecraft:crimson_hyphae": { - "protocol_id": 131 - }, - "minecraft:warped_hyphae": { - "protocol_id": 132 - }, - "minecraft:oak_leaves": { - "protocol_id": 133 - }, - "minecraft:spruce_leaves": { - "protocol_id": 134 - }, - "minecraft:birch_leaves": { - "protocol_id": 135 - }, - "minecraft:jungle_leaves": { - "protocol_id": 136 - }, - "minecraft:acacia_leaves": { - "protocol_id": 137 - }, - "minecraft:dark_oak_leaves": { - "protocol_id": 138 - }, - "minecraft:azalea_leaves": { - "protocol_id": 139 - }, - "minecraft:flowering_azalea_leaves": { - "protocol_id": 140 - }, - "minecraft:sponge": { - "protocol_id": 141 - }, - "minecraft:wet_sponge": { - "protocol_id": 142 - }, - "minecraft:glass": { - "protocol_id": 143 - }, - "minecraft:tinted_glass": { - "protocol_id": 144 - }, - "minecraft:lapis_block": { - "protocol_id": 145 - }, - "minecraft:sandstone": { - "protocol_id": 146 - }, - "minecraft:chiseled_sandstone": { - "protocol_id": 147 - }, - "minecraft:cut_sandstone": { - "protocol_id": 148 - }, - "minecraft:cobweb": { - "protocol_id": 149 - }, - "minecraft:grass": { - "protocol_id": 150 - }, - "minecraft:fern": { - "protocol_id": 151 - }, - "minecraft:azalea": { - "protocol_id": 152 - }, - "minecraft:flowering_azalea": { - "protocol_id": 153 - }, - "minecraft:dead_bush": { - "protocol_id": 154 - }, - "minecraft:seagrass": { - "protocol_id": 155 - }, - "minecraft:sea_pickle": { - "protocol_id": 156 - }, - "minecraft:white_wool": { - "protocol_id": 157 - }, - "minecraft:orange_wool": { - "protocol_id": 158 - }, - "minecraft:magenta_wool": { - "protocol_id": 159 - }, - "minecraft:light_blue_wool": { - "protocol_id": 160 - }, - "minecraft:yellow_wool": { - "protocol_id": 161 - }, - "minecraft:lime_wool": { - "protocol_id": 162 - }, - "minecraft:pink_wool": { - "protocol_id": 163 - }, - "minecraft:gray_wool": { - "protocol_id": 164 - }, - "minecraft:light_gray_wool": { - "protocol_id": 165 - }, - "minecraft:cyan_wool": { - "protocol_id": 166 - }, - "minecraft:purple_wool": { - "protocol_id": 167 - }, - "minecraft:blue_wool": { - "protocol_id": 168 - }, - "minecraft:brown_wool": { - "protocol_id": 169 - }, - "minecraft:green_wool": { - "protocol_id": 170 - }, - "minecraft:red_wool": { - "protocol_id": 171 - }, - "minecraft:black_wool": { - "protocol_id": 172 - }, - "minecraft:dandelion": { - "protocol_id": 173 - }, - "minecraft:poppy": { - "protocol_id": 174 - }, - "minecraft:blue_orchid": { - "protocol_id": 175 - }, - "minecraft:allium": { - "protocol_id": 176 - }, - "minecraft:azure_bluet": { - "protocol_id": 177 - }, - "minecraft:red_tulip": { - "protocol_id": 178 - }, - "minecraft:orange_tulip": { - "protocol_id": 179 - }, - "minecraft:white_tulip": { - "protocol_id": 180 - }, - "minecraft:pink_tulip": { - "protocol_id": 181 - }, - "minecraft:oxeye_daisy": { - "protocol_id": 182 - }, - "minecraft:cornflower": { - "protocol_id": 183 - }, - "minecraft:lily_of_the_valley": { - "protocol_id": 184 - }, - "minecraft:wither_rose": { - "protocol_id": 185 - }, - "minecraft:spore_blossom": { - "protocol_id": 186 - }, - "minecraft:brown_mushroom": { - "protocol_id": 187 - }, - "minecraft:red_mushroom": { - "protocol_id": 188 - }, - "minecraft:crimson_fungus": { - "protocol_id": 189 - }, - "minecraft:warped_fungus": { - "protocol_id": 190 - }, - "minecraft:crimson_roots": { - "protocol_id": 191 - }, - "minecraft:warped_roots": { - "protocol_id": 192 - }, - "minecraft:nether_sprouts": { - "protocol_id": 193 - }, - "minecraft:weeping_vines": { - "protocol_id": 194 - }, - "minecraft:twisting_vines": { - "protocol_id": 195 - }, - "minecraft:sugar_cane": { - "protocol_id": 196 - }, - "minecraft:kelp": { - "protocol_id": 197 - }, - "minecraft:moss_carpet": { - "protocol_id": 198 - }, - "minecraft:moss_block": { - "protocol_id": 199 - }, - "minecraft:hanging_roots": { - "protocol_id": 200 - }, - "minecraft:big_dripleaf": { - "protocol_id": 201 - }, - "minecraft:small_dripleaf": { - "protocol_id": 202 - }, - "minecraft:bamboo": { - "protocol_id": 203 - }, - "minecraft:oak_slab": { - "protocol_id": 204 - }, - "minecraft:spruce_slab": { - "protocol_id": 205 - }, - "minecraft:birch_slab": { - "protocol_id": 206 - }, - "minecraft:jungle_slab": { - "protocol_id": 207 - }, - "minecraft:acacia_slab": { - "protocol_id": 208 - }, - "minecraft:dark_oak_slab": { - "protocol_id": 209 - }, - "minecraft:crimson_slab": { - "protocol_id": 210 - }, - "minecraft:warped_slab": { - "protocol_id": 211 - }, - "minecraft:stone_slab": { - "protocol_id": 212 - }, - "minecraft:smooth_stone_slab": { - "protocol_id": 213 - }, - "minecraft:sandstone_slab": { - "protocol_id": 214 - }, - "minecraft:cut_sandstone_slab": { - "protocol_id": 215 - }, - "minecraft:petrified_oak_slab": { - "protocol_id": 216 - }, - "minecraft:cobblestone_slab": { - "protocol_id": 217 - }, - "minecraft:brick_slab": { - "protocol_id": 218 - }, "minecraft:stone_brick_slab": { - "protocol_id": 219 - }, - "minecraft:nether_brick_slab": { - "protocol_id": 220 - }, - "minecraft:quartz_slab": { - "protocol_id": 221 - }, - "minecraft:red_sandstone_slab": { - "protocol_id": 222 - }, - "minecraft:cut_red_sandstone_slab": { - "protocol_id": 223 - }, - "minecraft:purpur_slab": { - "protocol_id": 224 - }, - "minecraft:prismarine_slab": { - "protocol_id": 225 - }, - "minecraft:prismarine_brick_slab": { - "protocol_id": 226 - }, - "minecraft:dark_prismarine_slab": { - "protocol_id": 227 - }, - "minecraft:smooth_quartz": { - "protocol_id": 228 - }, - "minecraft:smooth_red_sandstone": { - "protocol_id": 229 - }, - "minecraft:smooth_sandstone": { - "protocol_id": 230 - }, - "minecraft:smooth_stone": { - "protocol_id": 231 - }, - "minecraft:bricks": { - "protocol_id": 232 - }, - "minecraft:bookshelf": { - "protocol_id": 233 - }, - "minecraft:mossy_cobblestone": { - "protocol_id": 234 - }, - "minecraft:obsidian": { - "protocol_id": 235 - }, - "minecraft:torch": { - "protocol_id": 236 - }, - "minecraft:end_rod": { - "protocol_id": 237 - }, - "minecraft:chorus_plant": { - "protocol_id": 238 - }, - "minecraft:chorus_flower": { - "protocol_id": 239 - }, - "minecraft:purpur_block": { - "protocol_id": 240 - }, - "minecraft:purpur_pillar": { - "protocol_id": 241 - }, - "minecraft:purpur_stairs": { - "protocol_id": 242 - }, - "minecraft:spawner": { - "protocol_id": 243 - }, - "minecraft:oak_stairs": { - "protocol_id": 244 - }, - "minecraft:chest": { - "protocol_id": 245 - }, - "minecraft:crafting_table": { - "protocol_id": 246 - }, - "minecraft:farmland": { - "protocol_id": 247 - }, - "minecraft:furnace": { - "protocol_id": 248 - }, - "minecraft:ladder": { - "protocol_id": 249 - }, - "minecraft:cobblestone_stairs": { - "protocol_id": 250 - }, - "minecraft:snow": { - "protocol_id": 251 - }, - "minecraft:ice": { - "protocol_id": 252 - }, - "minecraft:snow_block": { - "protocol_id": 253 - }, - "minecraft:cactus": { - "protocol_id": 254 - }, - "minecraft:clay": { - "protocol_id": 255 - }, - "minecraft:jukebox": { - "protocol_id": 256 - }, - "minecraft:oak_fence": { - "protocol_id": 257 - }, - "minecraft:spruce_fence": { - "protocol_id": 258 - }, - "minecraft:birch_fence": { - "protocol_id": 259 - }, - "minecraft:jungle_fence": { - "protocol_id": 260 - }, - "minecraft:acacia_fence": { - "protocol_id": 261 - }, - "minecraft:dark_oak_fence": { - "protocol_id": 262 - }, - "minecraft:crimson_fence": { - "protocol_id": 263 - }, - "minecraft:warped_fence": { - "protocol_id": 264 - }, - "minecraft:pumpkin": { - "protocol_id": 265 - }, - "minecraft:carved_pumpkin": { - "protocol_id": 266 - }, - "minecraft:jack_o_lantern": { - "protocol_id": 267 - }, - "minecraft:netherrack": { - "protocol_id": 268 - }, - "minecraft:soul_sand": { - "protocol_id": 269 - }, - "minecraft:soul_soil": { - "protocol_id": 270 - }, - "minecraft:basalt": { - "protocol_id": 271 - }, - "minecraft:polished_basalt": { - "protocol_id": 272 - }, - "minecraft:smooth_basalt": { - "protocol_id": 273 - }, - "minecraft:soul_torch": { - "protocol_id": 274 - }, - "minecraft:glowstone": { - "protocol_id": 275 - }, - "minecraft:infested_stone": { - "protocol_id": 276 - }, - "minecraft:infested_cobblestone": { - "protocol_id": 277 - }, - "minecraft:infested_stone_bricks": { - "protocol_id": 278 - }, - "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 279 - }, - "minecraft:infested_cracked_stone_bricks": { - "protocol_id": 280 - }, - "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 281 - }, - "minecraft:infested_deepslate": { - "protocol_id": 282 - }, - "minecraft:stone_bricks": { - "protocol_id": 283 - }, - "minecraft:mossy_stone_bricks": { - "protocol_id": 284 - }, - "minecraft:cracked_stone_bricks": { - "protocol_id": 285 - }, - "minecraft:chiseled_stone_bricks": { - "protocol_id": 286 - }, - "minecraft:deepslate_bricks": { - "protocol_id": 287 - }, - "minecraft:cracked_deepslate_bricks": { - "protocol_id": 288 - }, - "minecraft:deepslate_tiles": { - "protocol_id": 289 - }, - "minecraft:cracked_deepslate_tiles": { - "protocol_id": 290 - }, - "minecraft:chiseled_deepslate": { - "protocol_id": 291 - }, - "minecraft:brown_mushroom_block": { - "protocol_id": 292 - }, - "minecraft:red_mushroom_block": { - "protocol_id": 293 - }, - "minecraft:mushroom_stem": { - "protocol_id": 294 - }, - "minecraft:iron_bars": { - "protocol_id": 295 - }, - "minecraft:chain": { - "protocol_id": 296 - }, - "minecraft:glass_pane": { - "protocol_id": 297 - }, - "minecraft:melon": { - "protocol_id": 298 - }, - "minecraft:vine": { - "protocol_id": 299 - }, - "minecraft:glow_lichen": { - "protocol_id": 300 - }, - "minecraft:brick_stairs": { - "protocol_id": 301 - }, - "minecraft:stone_brick_stairs": { - "protocol_id": 302 - }, - "minecraft:mycelium": { - "protocol_id": 303 - }, - "minecraft:lily_pad": { - "protocol_id": 304 - }, - "minecraft:nether_bricks": { - "protocol_id": 305 - }, - "minecraft:cracked_nether_bricks": { - "protocol_id": 306 - }, - "minecraft:chiseled_nether_bricks": { - "protocol_id": 307 - }, - "minecraft:nether_brick_fence": { - "protocol_id": 308 - }, - "minecraft:nether_brick_stairs": { - "protocol_id": 309 - }, - "minecraft:enchanting_table": { - "protocol_id": 310 - }, - "minecraft:end_portal_frame": { - "protocol_id": 311 - }, - "minecraft:end_stone": { - "protocol_id": 312 - }, - "minecraft:end_stone_bricks": { - "protocol_id": 313 - }, - "minecraft:dragon_egg": { - "protocol_id": 314 - }, - "minecraft:sandstone_stairs": { - "protocol_id": 315 - }, - "minecraft:ender_chest": { - "protocol_id": 316 - }, - "minecraft:emerald_block": { - "protocol_id": 317 - }, - "minecraft:spruce_stairs": { - "protocol_id": 318 - }, - "minecraft:birch_stairs": { - "protocol_id": 319 - }, - "minecraft:jungle_stairs": { - "protocol_id": 320 - }, - "minecraft:crimson_stairs": { - "protocol_id": 321 - }, - "minecraft:warped_stairs": { - "protocol_id": 322 - }, - "minecraft:command_block": { - "protocol_id": 323 - }, - "minecraft:beacon": { - "protocol_id": 324 - }, - "minecraft:cobblestone_wall": { - "protocol_id": 325 - }, - "minecraft:mossy_cobblestone_wall": { - "protocol_id": 326 - }, - "minecraft:brick_wall": { - "protocol_id": 327 - }, - "minecraft:prismarine_wall": { - "protocol_id": 328 - }, - "minecraft:red_sandstone_wall": { - "protocol_id": 329 - }, - "minecraft:mossy_stone_brick_wall": { - "protocol_id": 330 - }, - "minecraft:granite_wall": { - "protocol_id": 331 - }, - "minecraft:stone_brick_wall": { - "protocol_id": 332 - }, - "minecraft:nether_brick_wall": { - "protocol_id": 333 - }, - "minecraft:andesite_wall": { - "protocol_id": 334 - }, - "minecraft:red_nether_brick_wall": { - "protocol_id": 335 - }, - "minecraft:sandstone_wall": { - "protocol_id": 336 - }, - "minecraft:end_stone_brick_wall": { - "protocol_id": 337 - }, - "minecraft:diorite_wall": { - "protocol_id": 338 - }, - "minecraft:blackstone_wall": { - "protocol_id": 339 - }, - "minecraft:polished_blackstone_wall": { - "protocol_id": 340 - }, - "minecraft:polished_blackstone_brick_wall": { - "protocol_id": 341 - }, - "minecraft:cobbled_deepslate_wall": { - "protocol_id": 342 - }, - "minecraft:polished_deepslate_wall": { - "protocol_id": 343 - }, - "minecraft:deepslate_brick_wall": { - "protocol_id": 344 - }, - "minecraft:deepslate_tile_wall": { - "protocol_id": 345 - }, - "minecraft:anvil": { - "protocol_id": 346 - }, - "minecraft:chipped_anvil": { - "protocol_id": 347 - }, - "minecraft:damaged_anvil": { - "protocol_id": 348 - }, - "minecraft:chiseled_quartz_block": { - "protocol_id": 349 - }, - "minecraft:quartz_block": { - "protocol_id": 350 - }, - "minecraft:quartz_bricks": { - "protocol_id": 351 - }, - "minecraft:quartz_pillar": { - "protocol_id": 352 - }, - "minecraft:quartz_stairs": { - "protocol_id": 353 - }, - "minecraft:white_terracotta": { - "protocol_id": 354 - }, - "minecraft:orange_terracotta": { - "protocol_id": 355 - }, - "minecraft:magenta_terracotta": { - "protocol_id": 356 - }, - "minecraft:light_blue_terracotta": { - "protocol_id": 357 - }, - "minecraft:yellow_terracotta": { - "protocol_id": 358 - }, - "minecraft:lime_terracotta": { - "protocol_id": 359 - }, - "minecraft:pink_terracotta": { - "protocol_id": 360 - }, - "minecraft:gray_terracotta": { - "protocol_id": 361 - }, - "minecraft:light_gray_terracotta": { - "protocol_id": 362 - }, - "minecraft:cyan_terracotta": { - "protocol_id": 363 - }, - "minecraft:purple_terracotta": { - "protocol_id": 364 - }, - "minecraft:blue_terracotta": { - "protocol_id": 365 - }, - "minecraft:brown_terracotta": { - "protocol_id": 366 - }, - "minecraft:green_terracotta": { - "protocol_id": 367 - }, - "minecraft:red_terracotta": { - "protocol_id": 368 - }, - "minecraft:black_terracotta": { - "protocol_id": 369 - }, - "minecraft:barrier": { - "protocol_id": 370 - }, - "minecraft:light": { - "protocol_id": 371 - }, - "minecraft:hay_block": { - "protocol_id": 372 - }, - "minecraft:white_carpet": { - "protocol_id": 373 - }, - "minecraft:orange_carpet": { - "protocol_id": 374 - }, - "minecraft:magenta_carpet": { - "protocol_id": 375 - }, - "minecraft:light_blue_carpet": { - "protocol_id": 376 - }, - "minecraft:yellow_carpet": { - "protocol_id": 377 - }, - "minecraft:lime_carpet": { - "protocol_id": 378 - }, - "minecraft:pink_carpet": { - "protocol_id": 379 - }, - "minecraft:gray_carpet": { - "protocol_id": 380 - }, - "minecraft:light_gray_carpet": { - "protocol_id": 381 - }, - "minecraft:cyan_carpet": { - "protocol_id": 382 - }, - "minecraft:purple_carpet": { - "protocol_id": 383 - }, - "minecraft:blue_carpet": { - "protocol_id": 384 - }, - "minecraft:brown_carpet": { - "protocol_id": 385 - }, - "minecraft:green_carpet": { - "protocol_id": 386 - }, - "minecraft:red_carpet": { - "protocol_id": 387 - }, - "minecraft:black_carpet": { - "protocol_id": 388 - }, - "minecraft:terracotta": { - "protocol_id": 389 - }, - "minecraft:packed_ice": { - "protocol_id": 390 - }, - "minecraft:acacia_stairs": { - "protocol_id": 391 - }, - "minecraft:dark_oak_stairs": { - "protocol_id": 392 - }, - "minecraft:dirt_path": { - "protocol_id": 393 - }, - "minecraft:sunflower": { - "protocol_id": 394 - }, - "minecraft:lilac": { - "protocol_id": 395 - }, - "minecraft:rose_bush": { - "protocol_id": 396 - }, - "minecraft:peony": { - "protocol_id": 397 - }, - "minecraft:tall_grass": { - "protocol_id": 398 - }, - "minecraft:large_fern": { - "protocol_id": 399 - }, - "minecraft:white_stained_glass": { - "protocol_id": 400 - }, - "minecraft:orange_stained_glass": { - "protocol_id": 401 - }, - "minecraft:magenta_stained_glass": { - "protocol_id": 402 - }, - "minecraft:light_blue_stained_glass": { - "protocol_id": 403 - }, - "minecraft:yellow_stained_glass": { - "protocol_id": 404 - }, - "minecraft:lime_stained_glass": { - "protocol_id": 405 - }, - "minecraft:pink_stained_glass": { - "protocol_id": 406 - }, - "minecraft:gray_stained_glass": { - "protocol_id": 407 - }, - "minecraft:light_gray_stained_glass": { - "protocol_id": 408 - }, - "minecraft:cyan_stained_glass": { - "protocol_id": 409 - }, - "minecraft:purple_stained_glass": { - "protocol_id": 410 - }, - "minecraft:blue_stained_glass": { - "protocol_id": 411 - }, - "minecraft:brown_stained_glass": { - "protocol_id": 412 - }, - "minecraft:green_stained_glass": { - "protocol_id": 413 - }, - "minecraft:red_stained_glass": { - "protocol_id": 414 - }, - "minecraft:black_stained_glass": { - "protocol_id": 415 - }, - "minecraft:white_stained_glass_pane": { - "protocol_id": 416 - }, - "minecraft:orange_stained_glass_pane": { - "protocol_id": 417 - }, - "minecraft:magenta_stained_glass_pane": { - "protocol_id": 418 - }, - "minecraft:light_blue_stained_glass_pane": { - "protocol_id": 419 - }, - "minecraft:yellow_stained_glass_pane": { - "protocol_id": 420 - }, - "minecraft:lime_stained_glass_pane": { - "protocol_id": 421 - }, - "minecraft:pink_stained_glass_pane": { - "protocol_id": 422 - }, - "minecraft:gray_stained_glass_pane": { - "protocol_id": 423 - }, - "minecraft:light_gray_stained_glass_pane": { - "protocol_id": 424 - }, - "minecraft:cyan_stained_glass_pane": { - "protocol_id": 425 - }, - "minecraft:purple_stained_glass_pane": { - "protocol_id": 426 - }, - "minecraft:blue_stained_glass_pane": { - "protocol_id": 427 - }, - "minecraft:brown_stained_glass_pane": { - "protocol_id": 428 - }, - "minecraft:green_stained_glass_pane": { - "protocol_id": 429 - }, - "minecraft:red_stained_glass_pane": { - "protocol_id": 430 - }, - "minecraft:black_stained_glass_pane": { - "protocol_id": 431 - }, - "minecraft:prismarine": { - "protocol_id": 432 - }, - "minecraft:prismarine_bricks": { - "protocol_id": 433 - }, - "minecraft:dark_prismarine": { - "protocol_id": 434 - }, - "minecraft:prismarine_stairs": { - "protocol_id": 435 - }, - "minecraft:prismarine_brick_stairs": { - "protocol_id": 436 - }, - "minecraft:dark_prismarine_stairs": { - "protocol_id": 437 - }, - "minecraft:sea_lantern": { - "protocol_id": 438 - }, - "minecraft:red_sandstone": { - "protocol_id": 439 - }, - "minecraft:chiseled_red_sandstone": { - "protocol_id": 440 - }, - "minecraft:cut_red_sandstone": { - "protocol_id": 441 - }, - "minecraft:red_sandstone_stairs": { - "protocol_id": 442 - }, - "minecraft:repeating_command_block": { - "protocol_id": 443 - }, - "minecraft:chain_command_block": { - "protocol_id": 444 - }, - "minecraft:magma_block": { - "protocol_id": 445 - }, - "minecraft:nether_wart_block": { - "protocol_id": 446 - }, - "minecraft:warped_wart_block": { - "protocol_id": 447 - }, - "minecraft:red_nether_bricks": { - "protocol_id": 448 - }, - "minecraft:bone_block": { - "protocol_id": 449 - }, - "minecraft:structure_void": { - "protocol_id": 450 - }, - "minecraft:shulker_box": { - "protocol_id": 451 - }, - "minecraft:white_shulker_box": { - "protocol_id": 452 - }, - "minecraft:orange_shulker_box": { - "protocol_id": 453 - }, - "minecraft:magenta_shulker_box": { - "protocol_id": 454 - }, - "minecraft:light_blue_shulker_box": { - "protocol_id": 455 - }, - "minecraft:yellow_shulker_box": { - "protocol_id": 456 - }, - "minecraft:lime_shulker_box": { - "protocol_id": 457 - }, - "minecraft:pink_shulker_box": { - "protocol_id": 458 - }, - "minecraft:gray_shulker_box": { - "protocol_id": 459 - }, - "minecraft:light_gray_shulker_box": { - "protocol_id": 460 - }, - "minecraft:cyan_shulker_box": { - "protocol_id": 461 - }, - "minecraft:purple_shulker_box": { - "protocol_id": 462 - }, - "minecraft:blue_shulker_box": { - "protocol_id": 463 - }, - "minecraft:brown_shulker_box": { - "protocol_id": 464 - }, - "minecraft:green_shulker_box": { - "protocol_id": 465 - }, - "minecraft:red_shulker_box": { - "protocol_id": 466 - }, - "minecraft:black_shulker_box": { - "protocol_id": 467 - }, - "minecraft:white_glazed_terracotta": { - "protocol_id": 468 - }, - "minecraft:orange_glazed_terracotta": { - "protocol_id": 469 - }, - "minecraft:magenta_glazed_terracotta": { - "protocol_id": 470 - }, - "minecraft:light_blue_glazed_terracotta": { - "protocol_id": 471 - }, - "minecraft:yellow_glazed_terracotta": { - "protocol_id": 472 - }, - "minecraft:lime_glazed_terracotta": { - "protocol_id": 473 - }, - "minecraft:pink_glazed_terracotta": { - "protocol_id": 474 - }, - "minecraft:gray_glazed_terracotta": { - "protocol_id": 475 - }, - "minecraft:light_gray_glazed_terracotta": { - "protocol_id": 476 - }, - "minecraft:cyan_glazed_terracotta": { - "protocol_id": 477 - }, - "minecraft:purple_glazed_terracotta": { - "protocol_id": 478 - }, - "minecraft:blue_glazed_terracotta": { - "protocol_id": 479 - }, - "minecraft:brown_glazed_terracotta": { - "protocol_id": 480 - }, - "minecraft:green_glazed_terracotta": { - "protocol_id": 481 - }, - "minecraft:red_glazed_terracotta": { - "protocol_id": 482 - }, - "minecraft:black_glazed_terracotta": { - "protocol_id": 483 - }, - "minecraft:white_concrete": { - "protocol_id": 484 - }, - "minecraft:orange_concrete": { - "protocol_id": 485 - }, - "minecraft:magenta_concrete": { - "protocol_id": 486 - }, - "minecraft:light_blue_concrete": { - "protocol_id": 487 - }, - "minecraft:yellow_concrete": { - "protocol_id": 488 - }, - "minecraft:lime_concrete": { - "protocol_id": 489 - }, - "minecraft:pink_concrete": { - "protocol_id": 490 - }, - "minecraft:gray_concrete": { - "protocol_id": 491 - }, - "minecraft:light_gray_concrete": { - "protocol_id": 492 - }, - "minecraft:cyan_concrete": { - "protocol_id": 493 - }, - "minecraft:purple_concrete": { - "protocol_id": 494 - }, - "minecraft:blue_concrete": { - "protocol_id": 495 - }, - "minecraft:brown_concrete": { - "protocol_id": 496 - }, - "minecraft:green_concrete": { - "protocol_id": 497 - }, - "minecraft:red_concrete": { - "protocol_id": 498 - }, - "minecraft:black_concrete": { "protocol_id": 499 }, - "minecraft:white_concrete_powder": { - "protocol_id": 500 + "minecraft:stone_brick_stairs": { + "protocol_id": 276 }, - "minecraft:orange_concrete_powder": { - "protocol_id": 501 - }, - "minecraft:magenta_concrete_powder": { - "protocol_id": 502 - }, - "minecraft:light_blue_concrete_powder": { - "protocol_id": 503 - }, - "minecraft:yellow_concrete_powder": { - "protocol_id": 504 - }, - "minecraft:lime_concrete_powder": { - "protocol_id": 505 - }, - "minecraft:pink_concrete_powder": { - "protocol_id": 506 - }, - "minecraft:gray_concrete_powder": { - "protocol_id": 507 - }, - "minecraft:light_gray_concrete_powder": { - "protocol_id": 508 - }, - "minecraft:cyan_concrete_powder": { - "protocol_id": 509 - }, - "minecraft:purple_concrete_powder": { - "protocol_id": 510 - }, - "minecraft:blue_concrete_powder": { - "protocol_id": 511 - }, - "minecraft:brown_concrete_powder": { - "protocol_id": 512 - }, - "minecraft:green_concrete_powder": { - "protocol_id": 513 - }, - "minecraft:red_concrete_powder": { - "protocol_id": 514 - }, - "minecraft:black_concrete_powder": { - "protocol_id": 515 - }, - "minecraft:turtle_egg": { - "protocol_id": 516 - }, - "minecraft:dead_tube_coral_block": { - "protocol_id": 517 - }, - "minecraft:dead_brain_coral_block": { - "protocol_id": 518 - }, - "minecraft:dead_bubble_coral_block": { - "protocol_id": 519 - }, - "minecraft:dead_fire_coral_block": { - "protocol_id": 520 - }, - "minecraft:dead_horn_coral_block": { - "protocol_id": 521 - }, - "minecraft:tube_coral_block": { - "protocol_id": 522 - }, - "minecraft:brain_coral_block": { - "protocol_id": 523 - }, - "minecraft:bubble_coral_block": { - "protocol_id": 524 - }, - "minecraft:fire_coral_block": { - "protocol_id": 525 - }, - "minecraft:horn_coral_block": { - "protocol_id": 526 - }, - "minecraft:tube_coral": { - "protocol_id": 527 - }, - "minecraft:brain_coral": { - "protocol_id": 528 - }, - "minecraft:bubble_coral": { - "protocol_id": 529 - }, - "minecraft:fire_coral": { - "protocol_id": 530 - }, - "minecraft:horn_coral": { - "protocol_id": 531 - }, - "minecraft:dead_brain_coral": { - "protocol_id": 532 - }, - "minecraft:dead_bubble_coral": { - "protocol_id": 533 - }, - "minecraft:dead_fire_coral": { - "protocol_id": 534 - }, - "minecraft:dead_horn_coral": { - "protocol_id": 535 - }, - "minecraft:dead_tube_coral": { - "protocol_id": 536 - }, - "minecraft:tube_coral_fan": { - "protocol_id": 537 - }, - "minecraft:brain_coral_fan": { - "protocol_id": 538 - }, - "minecraft:bubble_coral_fan": { - "protocol_id": 539 - }, - "minecraft:fire_coral_fan": { - "protocol_id": 540 - }, - "minecraft:horn_coral_fan": { - "protocol_id": 541 - }, - "minecraft:dead_tube_coral_fan": { - "protocol_id": 542 - }, - "minecraft:dead_brain_coral_fan": { - "protocol_id": 543 - }, - "minecraft:dead_bubble_coral_fan": { - "protocol_id": 544 - }, - "minecraft:dead_fire_coral_fan": { - "protocol_id": 545 - }, - "minecraft:dead_horn_coral_fan": { - "protocol_id": 546 - }, - "minecraft:blue_ice": { - "protocol_id": 547 - }, - "minecraft:conduit": { - "protocol_id": 548 - }, - "minecraft:polished_granite_stairs": { - "protocol_id": 549 - }, - "minecraft:smooth_red_sandstone_stairs": { - "protocol_id": 550 - }, - "minecraft:mossy_stone_brick_stairs": { - "protocol_id": 551 - }, - "minecraft:polished_diorite_stairs": { - "protocol_id": 552 - }, - "minecraft:mossy_cobblestone_stairs": { - "protocol_id": 553 - }, - "minecraft:end_stone_brick_stairs": { - "protocol_id": 554 - }, - "minecraft:stone_stairs": { - "protocol_id": 555 - }, - "minecraft:smooth_sandstone_stairs": { - "protocol_id": 556 - }, - "minecraft:smooth_quartz_stairs": { - "protocol_id": 557 - }, - "minecraft:granite_stairs": { - "protocol_id": 558 - }, - "minecraft:andesite_stairs": { - "protocol_id": 559 - }, - "minecraft:red_nether_brick_stairs": { - "protocol_id": 560 - }, - "minecraft:polished_andesite_stairs": { - "protocol_id": 561 - }, - "minecraft:diorite_stairs": { - "protocol_id": 562 - }, - "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 563 - }, - "minecraft:polished_deepslate_stairs": { - "protocol_id": 564 - }, - "minecraft:deepslate_brick_stairs": { - "protocol_id": 565 - }, - "minecraft:deepslate_tile_stairs": { - "protocol_id": 566 - }, - "minecraft:polished_granite_slab": { - "protocol_id": 567 - }, - "minecraft:smooth_red_sandstone_slab": { - "protocol_id": 568 - }, - "minecraft:mossy_stone_brick_slab": { - "protocol_id": 569 - }, - "minecraft:polished_diorite_slab": { - "protocol_id": 570 - }, - "minecraft:mossy_cobblestone_slab": { - "protocol_id": 571 - }, - "minecraft:end_stone_brick_slab": { - "protocol_id": 572 - }, - "minecraft:smooth_sandstone_slab": { - "protocol_id": 573 - }, - "minecraft:smooth_quartz_slab": { - "protocol_id": 574 - }, - "minecraft:granite_slab": { - "protocol_id": 575 - }, - "minecraft:andesite_slab": { - "protocol_id": 576 - }, - "minecraft:red_nether_brick_slab": { - "protocol_id": 577 - }, - "minecraft:polished_andesite_slab": { - "protocol_id": 578 - }, - "minecraft:diorite_slab": { - "protocol_id": 579 - }, - "minecraft:cobbled_deepslate_slab": { - "protocol_id": 580 - }, - "minecraft:polished_deepslate_slab": { - "protocol_id": 581 - }, - "minecraft:deepslate_brick_slab": { - "protocol_id": 582 - }, - "minecraft:deepslate_tile_slab": { - "protocol_id": 583 - }, - "minecraft:scaffolding": { - "protocol_id": 584 - }, - "minecraft:redstone": { - "protocol_id": 585 - }, - "minecraft:redstone_torch": { - "protocol_id": 586 - }, - "minecraft:redstone_block": { - "protocol_id": 587 - }, - "minecraft:repeater": { - "protocol_id": 588 - }, - "minecraft:comparator": { - "protocol_id": 589 - }, - "minecraft:piston": { - "protocol_id": 590 - }, - "minecraft:sticky_piston": { - "protocol_id": 591 - }, - "minecraft:slime_block": { - "protocol_id": 592 - }, - "minecraft:honey_block": { - "protocol_id": 593 - }, - "minecraft:observer": { - "protocol_id": 594 - }, - "minecraft:hopper": { - "protocol_id": 595 - }, - "minecraft:dispenser": { - "protocol_id": 596 - }, - "minecraft:dropper": { - "protocol_id": 597 - }, - "minecraft:lectern": { - "protocol_id": 598 - }, - "minecraft:target": { - "protocol_id": 599 - }, - "minecraft:lever": { - "protocol_id": 600 - }, - "minecraft:lightning_rod": { - "protocol_id": 601 - }, - "minecraft:daylight_detector": { - "protocol_id": 602 - }, - "minecraft:sculk_sensor": { - "protocol_id": 603 - }, - "minecraft:tripwire_hook": { - "protocol_id": 604 - }, - "minecraft:trapped_chest": { - "protocol_id": 605 - }, - "minecraft:tnt": { - "protocol_id": 606 - }, - "minecraft:redstone_lamp": { - "protocol_id": 607 - }, - "minecraft:note_block": { - "protocol_id": 608 - }, - "minecraft:stone_button": { - "protocol_id": 609 - }, - "minecraft:polished_blackstone_button": { - "protocol_id": 610 - }, - "minecraft:oak_button": { - "protocol_id": 611 - }, - "minecraft:spruce_button": { - "protocol_id": 612 - }, - "minecraft:birch_button": { - "protocol_id": 613 - }, - "minecraft:jungle_button": { - "protocol_id": 614 - }, - "minecraft:acacia_button": { - "protocol_id": 615 - }, - "minecraft:dark_oak_button": { - "protocol_id": 616 - }, - "minecraft:crimson_button": { - "protocol_id": 617 - }, - "minecraft:warped_button": { - "protocol_id": 618 - }, - "minecraft:stone_pressure_plate": { - "protocol_id": 619 - }, - "minecraft:polished_blackstone_pressure_plate": { - "protocol_id": 620 - }, - "minecraft:light_weighted_pressure_plate": { - "protocol_id": 621 - }, - "minecraft:heavy_weighted_pressure_plate": { - "protocol_id": 622 - }, - "minecraft:oak_pressure_plate": { - "protocol_id": 623 - }, - "minecraft:spruce_pressure_plate": { - "protocol_id": 624 - }, - "minecraft:birch_pressure_plate": { - "protocol_id": 625 - }, - "minecraft:jungle_pressure_plate": { - "protocol_id": 626 - }, - "minecraft:acacia_pressure_plate": { - "protocol_id": 627 - }, - "minecraft:dark_oak_pressure_plate": { - "protocol_id": 628 - }, - "minecraft:crimson_pressure_plate": { - "protocol_id": 629 - }, - "minecraft:warped_pressure_plate": { - "protocol_id": 630 - }, - "minecraft:iron_door": { - "protocol_id": 631 - }, - "minecraft:oak_door": { - "protocol_id": 632 - }, - "minecraft:spruce_door": { - "protocol_id": 633 - }, - "minecraft:birch_door": { - "protocol_id": 634 - }, - "minecraft:jungle_door": { - "protocol_id": 635 - }, - "minecraft:acacia_door": { - "protocol_id": 636 - }, - "minecraft:dark_oak_door": { - "protocol_id": 637 - }, - "minecraft:crimson_door": { - "protocol_id": 638 - }, - "minecraft:warped_door": { - "protocol_id": 639 - }, - "minecraft:iron_trapdoor": { - "protocol_id": 640 - }, - "minecraft:oak_trapdoor": { - "protocol_id": 641 - }, - "minecraft:spruce_trapdoor": { - "protocol_id": 642 - }, - "minecraft:birch_trapdoor": { - "protocol_id": 643 - }, - "minecraft:jungle_trapdoor": { - "protocol_id": 644 - }, - "minecraft:acacia_trapdoor": { - "protocol_id": 645 - }, - "minecraft:dark_oak_trapdoor": { - "protocol_id": 646 - }, - "minecraft:crimson_trapdoor": { - "protocol_id": 647 - }, - "minecraft:warped_trapdoor": { - "protocol_id": 648 - }, - "minecraft:oak_fence_gate": { - "protocol_id": 649 - }, - "minecraft:spruce_fence_gate": { - "protocol_id": 650 - }, - "minecraft:birch_fence_gate": { - "protocol_id": 651 - }, - "minecraft:jungle_fence_gate": { - "protocol_id": 652 - }, - "minecraft:acacia_fence_gate": { - "protocol_id": 653 - }, - "minecraft:dark_oak_fence_gate": { - "protocol_id": 654 - }, - "minecraft:crimson_fence_gate": { - "protocol_id": 655 - }, - "minecraft:warped_fence_gate": { - "protocol_id": 656 - }, - "minecraft:powered_rail": { - "protocol_id": 657 - }, - "minecraft:detector_rail": { - "protocol_id": 658 - }, - "minecraft:rail": { - "protocol_id": 659 - }, - "minecraft:activator_rail": { - "protocol_id": 660 - }, - "minecraft:saddle": { - "protocol_id": 661 - }, - "minecraft:minecart": { - "protocol_id": 662 - }, - "minecraft:chest_minecart": { - "protocol_id": 663 - }, - "minecraft:furnace_minecart": { - "protocol_id": 664 - }, - "minecraft:tnt_minecart": { - "protocol_id": 665 - }, - "minecraft:hopper_minecart": { - "protocol_id": 666 - }, - "minecraft:carrot_on_a_stick": { - "protocol_id": 667 - }, - "minecraft:warped_fungus_on_a_stick": { - "protocol_id": 668 - }, - "minecraft:elytra": { - "protocol_id": 669 - }, - "minecraft:oak_boat": { - "protocol_id": 670 - }, - "minecraft:spruce_boat": { - "protocol_id": 671 - }, - "minecraft:birch_boat": { - "protocol_id": 672 - }, - "minecraft:jungle_boat": { - "protocol_id": 673 - }, - "minecraft:acacia_boat": { - "protocol_id": 674 - }, - "minecraft:dark_oak_boat": { - "protocol_id": 675 - }, - "minecraft:structure_block": { - "protocol_id": 676 - }, - "minecraft:jigsaw": { - "protocol_id": 677 - }, - "minecraft:turtle_helmet": { - "protocol_id": 678 - }, - "minecraft:scute": { - "protocol_id": 679 - }, - "minecraft:flint_and_steel": { - "protocol_id": 680 - }, - "minecraft:apple": { - "protocol_id": 681 - }, - "minecraft:bow": { - "protocol_id": 682 - }, - "minecraft:arrow": { - "protocol_id": 683 - }, - "minecraft:coal": { - "protocol_id": 684 - }, - "minecraft:charcoal": { - "protocol_id": 685 - }, - "minecraft:diamond": { - "protocol_id": 686 - }, - "minecraft:emerald": { - "protocol_id": 687 - }, - "minecraft:lapis_lazuli": { - "protocol_id": 688 - }, - "minecraft:quartz": { - "protocol_id": 689 - }, - "minecraft:amethyst_shard": { - "protocol_id": 690 - }, - "minecraft:raw_iron": { - "protocol_id": 691 - }, - "minecraft:iron_ingot": { - "protocol_id": 692 - }, - "minecraft:raw_copper": { - "protocol_id": 693 - }, - "minecraft:copper_ingot": { - "protocol_id": 694 - }, - "minecraft:raw_gold": { - "protocol_id": 695 - }, - "minecraft:gold_ingot": { - "protocol_id": 696 - }, - "minecraft:netherite_ingot": { + "minecraft:stone_brick_wall": { "protocol_id": 697 }, - "minecraft:netherite_scrap": { - "protocol_id": 698 + "minecraft:stone_bricks": { + "protocol_id": 249 }, - "minecraft:wooden_sword": { - "protocol_id": 699 + "minecraft:stone_button": { + "protocol_id": 203 }, - "minecraft:wooden_shovel": { - "protocol_id": 700 + "minecraft:stone_pressure_plate": { + "protocol_id": 190 }, - "minecraft:wooden_pickaxe": { - "protocol_id": 701 + "minecraft:stone_slab": { + "protocol_id": 492 }, - "minecraft:wooden_axe": { - "protocol_id": 702 - }, - "minecraft:wooden_hoe": { - "protocol_id": 703 - }, - "minecraft:stone_sword": { - "protocol_id": 704 - }, - "minecraft:stone_shovel": { - "protocol_id": 705 - }, - "minecraft:stone_pickaxe": { - "protocol_id": 706 - }, - "minecraft:stone_axe": { - "protocol_id": 707 - }, - "minecraft:stone_hoe": { - "protocol_id": 708 - }, - "minecraft:golden_sword": { - "protocol_id": 709 - }, - "minecraft:golden_shovel": { - "protocol_id": 710 - }, - "minecraft:golden_pickaxe": { - "protocol_id": 711 - }, - "minecraft:golden_axe": { - "protocol_id": 712 - }, - "minecraft:golden_hoe": { - "protocol_id": 713 - }, - "minecraft:iron_sword": { - "protocol_id": 714 - }, - "minecraft:iron_shovel": { - "protocol_id": 715 - }, - "minecraft:iron_pickaxe": { - "protocol_id": 716 - }, - "minecraft:iron_axe": { - "protocol_id": 717 - }, - "minecraft:iron_hoe": { - "protocol_id": 718 - }, - "minecraft:diamond_sword": { - "protocol_id": 719 - }, - "minecraft:diamond_shovel": { - "protocol_id": 720 - }, - "minecraft:diamond_pickaxe": { - "protocol_id": 721 - }, - "minecraft:diamond_axe": { - "protocol_id": 722 - }, - "minecraft:diamond_hoe": { - "protocol_id": 723 - }, - "minecraft:netherite_sword": { - "protocol_id": 724 - }, - "minecraft:netherite_shovel": { - "protocol_id": 725 - }, - "minecraft:netherite_pickaxe": { - "protocol_id": 726 - }, - "minecraft:netherite_axe": { - "protocol_id": 727 - }, - "minecraft:netherite_hoe": { - "protocol_id": 728 - }, - "minecraft:stick": { - "protocol_id": 729 - }, - "minecraft:bowl": { - "protocol_id": 730 - }, - "minecraft:mushroom_stew": { - "protocol_id": 731 - }, - "minecraft:string": { - "protocol_id": 732 - }, - "minecraft:feather": { - "protocol_id": 733 - }, - "minecraft:gunpowder": { - "protocol_id": 734 - }, - "minecraft:wheat_seeds": { - "protocol_id": 735 - }, - "minecraft:wheat": { - "protocol_id": 736 - }, - "minecraft:bread": { - "protocol_id": 737 - }, - "minecraft:leather_helmet": { - "protocol_id": 738 - }, - "minecraft:leather_chestplate": { - "protocol_id": 739 - }, - "minecraft:leather_leggings": { - "protocol_id": 740 - }, - "minecraft:leather_boots": { - "protocol_id": 741 - }, - "minecraft:chainmail_helmet": { - "protocol_id": 742 - }, - "minecraft:chainmail_chestplate": { - "protocol_id": 743 - }, - "minecraft:chainmail_leggings": { - "protocol_id": 744 - }, - "minecraft:chainmail_boots": { - "protocol_id": 745 - }, - "minecraft:iron_helmet": { - "protocol_id": 746 - }, - "minecraft:iron_chestplate": { - "protocol_id": 747 - }, - "minecraft:iron_leggings": { - "protocol_id": 748 - }, - "minecraft:iron_boots": { - "protocol_id": 749 - }, - "minecraft:diamond_helmet": { - "protocol_id": 750 - }, - "minecraft:diamond_chestplate": { - "protocol_id": 751 - }, - "minecraft:diamond_leggings": { - "protocol_id": 752 - }, - "minecraft:diamond_boots": { - "protocol_id": 753 - }, - "minecraft:golden_helmet": { - "protocol_id": 754 - }, - "minecraft:golden_chestplate": { - "protocol_id": 755 - }, - "minecraft:golden_leggings": { - "protocol_id": 756 - }, - "minecraft:golden_boots": { - "protocol_id": 757 - }, - "minecraft:netherite_helmet": { - "protocol_id": 758 - }, - "minecraft:netherite_chestplate": { - "protocol_id": 759 - }, - "minecraft:netherite_leggings": { - "protocol_id": 760 - }, - "minecraft:netherite_boots": { - "protocol_id": 761 - }, - "minecraft:flint": { - "protocol_id": 762 - }, - "minecraft:porkchop": { - "protocol_id": 763 - }, - "minecraft:cooked_porkchop": { - "protocol_id": 764 - }, - "minecraft:painting": { - "protocol_id": 765 - }, - "minecraft:golden_apple": { - "protocol_id": 766 - }, - "minecraft:enchanted_golden_apple": { - "protocol_id": 767 - }, - "minecraft:oak_sign": { - "protocol_id": 768 - }, - "minecraft:spruce_sign": { - "protocol_id": 769 - }, - "minecraft:birch_sign": { - "protocol_id": 770 - }, - "minecraft:jungle_sign": { - "protocol_id": 771 - }, - "minecraft:acacia_sign": { - "protocol_id": 772 - }, - "minecraft:dark_oak_sign": { - "protocol_id": 773 - }, - "minecraft:crimson_sign": { - "protocol_id": 774 - }, - "minecraft:warped_sign": { - "protocol_id": 775 - }, - "minecraft:bucket": { - "protocol_id": 776 - }, - "minecraft:water_bucket": { - "protocol_id": 777 - }, - "minecraft:lava_bucket": { - "protocol_id": 778 - }, - "minecraft:powder_snow_bucket": { - "protocol_id": 779 - }, - "minecraft:snowball": { - "protocol_id": 780 - }, - "minecraft:leather": { - "protocol_id": 781 - }, - "minecraft:milk_bucket": { - "protocol_id": 782 - }, - "minecraft:pufferfish_bucket": { - "protocol_id": 783 - }, - "minecraft:salmon_bucket": { - "protocol_id": 784 - }, - "minecraft:cod_bucket": { - "protocol_id": 785 - }, - "minecraft:tropical_fish_bucket": { - "protocol_id": 786 - }, - "minecraft:axolotl_bucket": { - "protocol_id": 787 - }, - "minecraft:brick": { - "protocol_id": 788 - }, - "minecraft:clay_ball": { - "protocol_id": 789 - }, - "minecraft:dried_kelp_block": { - "protocol_id": 790 - }, - "minecraft:paper": { - "protocol_id": 791 - }, - "minecraft:book": { - "protocol_id": 792 - }, - "minecraft:slime_ball": { - "protocol_id": 793 - }, - "minecraft:egg": { - "protocol_id": 794 - }, - "minecraft:compass": { - "protocol_id": 795 - }, - "minecraft:bundle": { - "protocol_id": 796 - }, - "minecraft:fishing_rod": { - "protocol_id": 797 - }, - "minecraft:clock": { - "protocol_id": 798 - }, - "minecraft:spyglass": { - "protocol_id": 799 - }, - "minecraft:glowstone_dust": { - "protocol_id": 800 - }, - "minecraft:cod": { - "protocol_id": 801 - }, - "minecraft:salmon": { - "protocol_id": 802 - }, - "minecraft:tropical_fish": { - "protocol_id": 803 - }, - "minecraft:pufferfish": { - "protocol_id": 804 - }, - "minecraft:cooked_cod": { - "protocol_id": 805 - }, - "minecraft:cooked_salmon": { - "protocol_id": 806 - }, - "minecraft:ink_sac": { - "protocol_id": 807 - }, - "minecraft:glow_ink_sac": { - "protocol_id": 808 - }, - "minecraft:cocoa_beans": { - "protocol_id": 809 - }, - "minecraft:white_dye": { - "protocol_id": 810 - }, - "minecraft:orange_dye": { - "protocol_id": 811 - }, - "minecraft:magenta_dye": { - "protocol_id": 812 - }, - "minecraft:light_blue_dye": { - "protocol_id": 813 - }, - "minecraft:yellow_dye": { - "protocol_id": 814 - }, - "minecraft:lime_dye": { - "protocol_id": 815 - }, - "minecraft:pink_dye": { - "protocol_id": 816 - }, - "minecraft:gray_dye": { - "protocol_id": 817 - }, - "minecraft:light_gray_dye": { - "protocol_id": 818 - }, - "minecraft:cyan_dye": { - "protocol_id": 819 - }, - "minecraft:purple_dye": { - "protocol_id": 820 - }, - "minecraft:blue_dye": { - "protocol_id": 821 - }, - "minecraft:brown_dye": { - "protocol_id": 822 - }, - "minecraft:green_dye": { - "protocol_id": 823 - }, - "minecraft:red_dye": { - "protocol_id": 824 - }, - "minecraft:black_dye": { - "protocol_id": 825 - }, - "minecraft:bone_meal": { - "protocol_id": 826 - }, - "minecraft:bone": { - "protocol_id": 827 - }, - "minecraft:sugar": { - "protocol_id": 828 - }, - "minecraft:cake": { - "protocol_id": 829 - }, - "minecraft:white_bed": { - "protocol_id": 830 - }, - "minecraft:orange_bed": { - "protocol_id": 831 - }, - "minecraft:magenta_bed": { - "protocol_id": 832 - }, - "minecraft:light_blue_bed": { - "protocol_id": 833 - }, - "minecraft:yellow_bed": { - "protocol_id": 834 - }, - "minecraft:lime_bed": { - "protocol_id": 835 - }, - "minecraft:pink_bed": { - "protocol_id": 836 - }, - "minecraft:gray_bed": { - "protocol_id": 837 - }, - "minecraft:light_gray_bed": { - "protocol_id": 838 - }, - "minecraft:cyan_bed": { - "protocol_id": 839 - }, - "minecraft:purple_bed": { - "protocol_id": 840 - }, - "minecraft:blue_bed": { - "protocol_id": 841 - }, - "minecraft:brown_bed": { - "protocol_id": 842 - }, - "minecraft:green_bed": { - "protocol_id": 843 - }, - "minecraft:red_bed": { - "protocol_id": 844 - }, - "minecraft:black_bed": { - "protocol_id": 845 - }, - "minecraft:cookie": { - "protocol_id": 846 - }, - "minecraft:filled_map": { - "protocol_id": 847 - }, - "minecraft:shears": { - "protocol_id": 848 - }, - "minecraft:melon_slice": { - "protocol_id": 849 - }, - "minecraft:dried_kelp": { - "protocol_id": 850 - }, - "minecraft:pumpkin_seeds": { - "protocol_id": 851 - }, - "minecraft:melon_seeds": { - "protocol_id": 852 - }, - "minecraft:beef": { - "protocol_id": 853 - }, - "minecraft:cooked_beef": { - "protocol_id": 854 - }, - "minecraft:chicken": { - "protocol_id": 855 - }, - "minecraft:cooked_chicken": { - "protocol_id": 856 - }, - "minecraft:rotten_flesh": { - "protocol_id": 857 - }, - "minecraft:ender_pearl": { - "protocol_id": 858 - }, - "minecraft:blaze_rod": { - "protocol_id": 859 - }, - "minecraft:ghast_tear": { - "protocol_id": 860 - }, - "minecraft:gold_nugget": { - "protocol_id": 861 - }, - "minecraft:nether_wart": { - "protocol_id": 862 - }, - "minecraft:potion": { - "protocol_id": 863 - }, - "minecraft:glass_bottle": { - "protocol_id": 864 - }, - "minecraft:spider_eye": { - "protocol_id": 865 - }, - "minecraft:fermented_spider_eye": { - "protocol_id": 866 - }, - "minecraft:blaze_powder": { - "protocol_id": 867 - }, - "minecraft:magma_cream": { - "protocol_id": 868 - }, - "minecraft:brewing_stand": { - "protocol_id": 869 - }, - "minecraft:cauldron": { - "protocol_id": 870 - }, - "minecraft:ender_eye": { - "protocol_id": 871 - }, - "minecraft:glistering_melon_slice": { - "protocol_id": 872 - }, - "minecraft:axolotl_spawn_egg": { - "protocol_id": 873 - }, - "minecraft:bat_spawn_egg": { - "protocol_id": 874 - }, - "minecraft:bee_spawn_egg": { - "protocol_id": 875 - }, - "minecraft:blaze_spawn_egg": { - "protocol_id": 876 - }, - "minecraft:cat_spawn_egg": { - "protocol_id": 877 - }, - "minecraft:cave_spider_spawn_egg": { - "protocol_id": 878 - }, - "minecraft:chicken_spawn_egg": { - "protocol_id": 879 - }, - "minecraft:cod_spawn_egg": { - "protocol_id": 880 - }, - "minecraft:cow_spawn_egg": { - "protocol_id": 881 - }, - "minecraft:creeper_spawn_egg": { - "protocol_id": 882 - }, - "minecraft:dolphin_spawn_egg": { - "protocol_id": 883 - }, - "minecraft:donkey_spawn_egg": { - "protocol_id": 884 - }, - "minecraft:drowned_spawn_egg": { - "protocol_id": 885 - }, - "minecraft:elder_guardian_spawn_egg": { - "protocol_id": 886 - }, - "minecraft:enderman_spawn_egg": { - "protocol_id": 887 - }, - "minecraft:endermite_spawn_egg": { - "protocol_id": 888 - }, - "minecraft:evoker_spawn_egg": { - "protocol_id": 889 - }, - "minecraft:fox_spawn_egg": { - "protocol_id": 890 - }, - "minecraft:ghast_spawn_egg": { - "protocol_id": 891 - }, - "minecraft:glow_squid_spawn_egg": { - "protocol_id": 892 - }, - "minecraft:goat_spawn_egg": { - "protocol_id": 893 - }, - "minecraft:guardian_spawn_egg": { - "protocol_id": 894 - }, - "minecraft:hoglin_spawn_egg": { - "protocol_id": 895 - }, - "minecraft:horse_spawn_egg": { - "protocol_id": 896 - }, - "minecraft:husk_spawn_egg": { - "protocol_id": 897 - }, - "minecraft:llama_spawn_egg": { - "protocol_id": 898 - }, - "minecraft:magma_cube_spawn_egg": { - "protocol_id": 899 - }, - "minecraft:mooshroom_spawn_egg": { - "protocol_id": 900 - }, - "minecraft:mule_spawn_egg": { - "protocol_id": 901 - }, - "minecraft:ocelot_spawn_egg": { - "protocol_id": 902 - }, - "minecraft:panda_spawn_egg": { - "protocol_id": 903 - }, - "minecraft:parrot_spawn_egg": { - "protocol_id": 904 - }, - "minecraft:phantom_spawn_egg": { - "protocol_id": 905 - }, - "minecraft:pig_spawn_egg": { - "protocol_id": 906 - }, - "minecraft:piglin_spawn_egg": { - "protocol_id": 907 - }, - "minecraft:piglin_brute_spawn_egg": { - "protocol_id": 908 - }, - "minecraft:pillager_spawn_egg": { - "protocol_id": 909 - }, - "minecraft:polar_bear_spawn_egg": { - "protocol_id": 910 - }, - "minecraft:pufferfish_spawn_egg": { - "protocol_id": 911 - }, - "minecraft:rabbit_spawn_egg": { - "protocol_id": 912 - }, - "minecraft:ravager_spawn_egg": { - "protocol_id": 913 - }, - "minecraft:salmon_spawn_egg": { - "protocol_id": 914 - }, - "minecraft:sheep_spawn_egg": { - "protocol_id": 915 - }, - "minecraft:shulker_spawn_egg": { - "protocol_id": 916 - }, - "minecraft:silverfish_spawn_egg": { - "protocol_id": 917 - }, - "minecraft:skeleton_spawn_egg": { - "protocol_id": 918 - }, - "minecraft:skeleton_horse_spawn_egg": { - "protocol_id": 919 - }, - "minecraft:slime_spawn_egg": { - "protocol_id": 920 - }, - "minecraft:spider_spawn_egg": { - "protocol_id": 921 - }, - "minecraft:squid_spawn_egg": { - "protocol_id": 922 - }, - "minecraft:stray_spawn_egg": { - "protocol_id": 923 - }, - "minecraft:strider_spawn_egg": { - "protocol_id": 924 - }, - "minecraft:trader_llama_spawn_egg": { - "protocol_id": 925 - }, - "minecraft:tropical_fish_spawn_egg": { - "protocol_id": 926 - }, - "minecraft:turtle_spawn_egg": { - "protocol_id": 927 - }, - "minecraft:vex_spawn_egg": { - "protocol_id": 928 - }, - "minecraft:villager_spawn_egg": { - "protocol_id": 929 - }, - "minecraft:vindicator_spawn_egg": { - "protocol_id": 930 - }, - "minecraft:wandering_trader_spawn_egg": { - "protocol_id": 931 - }, - "minecraft:witch_spawn_egg": { - "protocol_id": 932 - }, - "minecraft:wither_skeleton_spawn_egg": { - "protocol_id": 933 - }, - "minecraft:wolf_spawn_egg": { - "protocol_id": 934 - }, - "minecraft:zoglin_spawn_egg": { - "protocol_id": 935 - }, - "minecraft:zombie_spawn_egg": { - "protocol_id": 936 - }, - "minecraft:zombie_horse_spawn_egg": { - "protocol_id": 937 - }, - "minecraft:zombie_villager_spawn_egg": { - "protocol_id": 938 - }, - "minecraft:zombified_piglin_spawn_egg": { - "protocol_id": 939 - }, - "minecraft:experience_bottle": { - "protocol_id": 940 - }, - "minecraft:fire_charge": { - "protocol_id": 941 - }, - "minecraft:writable_book": { - "protocol_id": 942 - }, - "minecraft:written_book": { - "protocol_id": 943 - }, - "minecraft:item_frame": { - "protocol_id": 944 - }, - "minecraft:glow_item_frame": { - "protocol_id": 945 - }, - "minecraft:flower_pot": { - "protocol_id": 946 - }, - "minecraft:carrot": { - "protocol_id": 947 - }, - "minecraft:potato": { - "protocol_id": 948 - }, - "minecraft:baked_potato": { - "protocol_id": 949 - }, - "minecraft:poisonous_potato": { - "protocol_id": 950 - }, - "minecraft:map": { - "protocol_id": 951 - }, - "minecraft:golden_carrot": { - "protocol_id": 952 - }, - "minecraft:skeleton_skull": { - "protocol_id": 953 - }, - "minecraft:wither_skeleton_skull": { - "protocol_id": 954 - }, - "minecraft:player_head": { - "protocol_id": 955 - }, - "minecraft:zombie_head": { - "protocol_id": 956 - }, - "minecraft:creeper_head": { - "protocol_id": 957 - }, - "minecraft:dragon_head": { - "protocol_id": 958 - }, - "minecraft:nether_star": { - "protocol_id": 959 - }, - "minecraft:pumpkin_pie": { - "protocol_id": 960 - }, - "minecraft:firework_rocket": { - "protocol_id": 961 - }, - "minecraft:firework_star": { - "protocol_id": 962 - }, - "minecraft:enchanted_book": { - "protocol_id": 963 - }, - "minecraft:nether_brick": { - "protocol_id": 964 - }, - "minecraft:prismarine_shard": { - "protocol_id": 965 - }, - "minecraft:prismarine_crystals": { - "protocol_id": 966 - }, - "minecraft:rabbit": { - "protocol_id": 967 - }, - "minecraft:cooked_rabbit": { - "protocol_id": 968 - }, - "minecraft:rabbit_stew": { - "protocol_id": 969 - }, - "minecraft:rabbit_foot": { - "protocol_id": 970 - }, - "minecraft:rabbit_hide": { - "protocol_id": 971 - }, - "minecraft:armor_stand": { - "protocol_id": 972 - }, - "minecraft:iron_horse_armor": { - "protocol_id": 973 - }, - "minecraft:golden_horse_armor": { - "protocol_id": 974 - }, - "minecraft:diamond_horse_armor": { - "protocol_id": 975 - }, - "minecraft:leather_horse_armor": { - "protocol_id": 976 - }, - "minecraft:lead": { - "protocol_id": 977 - }, - "minecraft:name_tag": { - "protocol_id": 978 - }, - "minecraft:command_block_minecart": { - "protocol_id": 979 - }, - "minecraft:mutton": { - "protocol_id": 980 - }, - "minecraft:cooked_mutton": { - "protocol_id": 981 - }, - "minecraft:white_banner": { - "protocol_id": 982 - }, - "minecraft:orange_banner": { - "protocol_id": 983 - }, - "minecraft:magenta_banner": { - "protocol_id": 984 - }, - "minecraft:light_blue_banner": { - "protocol_id": 985 - }, - "minecraft:yellow_banner": { - "protocol_id": 986 - }, - "minecraft:lime_banner": { - "protocol_id": 987 - }, - "minecraft:pink_banner": { - "protocol_id": 988 - }, - "minecraft:gray_banner": { - "protocol_id": 989 - }, - "minecraft:light_gray_banner": { - "protocol_id": 990 - }, - "minecraft:cyan_banner": { - "protocol_id": 991 - }, - "minecraft:purple_banner": { - "protocol_id": 992 - }, - "minecraft:blue_banner": { - "protocol_id": 993 - }, - "minecraft:brown_banner": { - "protocol_id": 994 - }, - "minecraft:green_banner": { - "protocol_id": 995 - }, - "minecraft:red_banner": { - "protocol_id": 996 - }, - "minecraft:black_banner": { - "protocol_id": 997 - }, - "minecraft:end_crystal": { - "protocol_id": 998 - }, - "minecraft:chorus_fruit": { - "protocol_id": 999 - }, - "minecraft:popped_chorus_fruit": { - "protocol_id": 1000 - }, - "minecraft:beetroot": { - "protocol_id": 1001 - }, - "minecraft:beetroot_seeds": { - "protocol_id": 1002 - }, - "minecraft:beetroot_soup": { - "protocol_id": 1003 - }, - "minecraft:dragon_breath": { - "protocol_id": 1004 - }, - "minecraft:splash_potion": { - "protocol_id": 1005 - }, - "minecraft:spectral_arrow": { - "protocol_id": 1006 - }, - "minecraft:tipped_arrow": { - "protocol_id": 1007 - }, - "minecraft:lingering_potion": { - "protocol_id": 1008 - }, - "minecraft:shield": { - "protocol_id": 1009 - }, - "minecraft:totem_of_undying": { - "protocol_id": 1010 - }, - "minecraft:shulker_shell": { - "protocol_id": 1011 - }, - "minecraft:iron_nugget": { - "protocol_id": 1012 - }, - "minecraft:knowledge_book": { - "protocol_id": 1013 - }, - "minecraft:debug_stick": { - "protocol_id": 1014 - }, - "minecraft:music_disc_13": { - "protocol_id": 1015 - }, - "minecraft:music_disc_cat": { - "protocol_id": 1016 - }, - "minecraft:music_disc_blocks": { - "protocol_id": 1017 - }, - "minecraft:music_disc_chirp": { - "protocol_id": 1018 - }, - "minecraft:music_disc_far": { - "protocol_id": 1019 - }, - "minecraft:music_disc_mall": { - "protocol_id": 1020 - }, - "minecraft:music_disc_mellohi": { - "protocol_id": 1021 - }, - "minecraft:music_disc_stal": { - "protocol_id": 1022 - }, - "minecraft:music_disc_strad": { - "protocol_id": 1023 - }, - "minecraft:music_disc_ward": { - "protocol_id": 1024 - }, - "minecraft:music_disc_11": { - "protocol_id": 1025 - }, - "minecraft:music_disc_wait": { - "protocol_id": 1026 - }, - "minecraft:music_disc_otherside": { - "protocol_id": 1027 - }, - "minecraft:music_disc_pigstep": { - "protocol_id": 1028 - }, - "minecraft:trident": { - "protocol_id": 1029 - }, - "minecraft:phantom_membrane": { - "protocol_id": 1030 - }, - "minecraft:nautilus_shell": { - "protocol_id": 1031 - }, - "minecraft:heart_of_the_sea": { - "protocol_id": 1032 - }, - "minecraft:crossbow": { - "protocol_id": 1033 - }, - "minecraft:suspicious_stew": { - "protocol_id": 1034 - }, - "minecraft:loom": { - "protocol_id": 1035 - }, - "minecraft:flower_banner_pattern": { - "protocol_id": 1036 - }, - "minecraft:creeper_banner_pattern": { - "protocol_id": 1037 - }, - "minecraft:skull_banner_pattern": { - "protocol_id": 1038 - }, - "minecraft:mojang_banner_pattern": { - "protocol_id": 1039 - }, - "minecraft:globe_banner_pattern": { - "protocol_id": 1040 - }, - "minecraft:piglin_banner_pattern": { - "protocol_id": 1041 - }, - "minecraft:composter": { - "protocol_id": 1042 - }, - "minecraft:barrel": { - "protocol_id": 1043 - }, - "minecraft:smoker": { - "protocol_id": 1044 - }, - "minecraft:blast_furnace": { - "protocol_id": 1045 - }, - "minecraft:cartography_table": { - "protocol_id": 1046 - }, - "minecraft:fletching_table": { - "protocol_id": 1047 - }, - "minecraft:grindstone": { - "protocol_id": 1048 - }, - "minecraft:smithing_table": { - "protocol_id": 1049 + "minecraft:stone_stairs": { + "protocol_id": 671 }, "minecraft:stonecutter": { - "protocol_id": 1050 + "protocol_id": 715 }, - "minecraft:bell": { - "protocol_id": 1051 - }, - "minecraft:lantern": { - "protocol_id": 1052 - }, - "minecraft:soul_lantern": { - "protocol_id": 1053 - }, - "minecraft:sweet_berries": { - "protocol_id": 1054 - }, - "minecraft:glow_berries": { - "protocol_id": 1055 - }, - "minecraft:campfire": { - "protocol_id": 1056 - }, - "minecraft:soul_campfire": { - "protocol_id": 1057 - }, - "minecraft:shroomlight": { - "protocol_id": 1058 - }, - "minecraft:honeycomb": { - "protocol_id": 1059 - }, - "minecraft:bee_nest": { - "protocol_id": 1060 - }, - "minecraft:beehive": { - "protocol_id": 1061 - }, - "minecraft:honey_bottle": { - "protocol_id": 1062 - }, - "minecraft:honeycomb_block": { - "protocol_id": 1063 - }, - "minecraft:lodestone": { - "protocol_id": 1064 - }, - "minecraft:crying_obsidian": { - "protocol_id": 1065 - }, - "minecraft:blackstone": { - "protocol_id": 1066 - }, - "minecraft:blackstone_slab": { - "protocol_id": 1067 - }, - "minecraft:blackstone_stairs": { - "protocol_id": 1068 - }, - "minecraft:gilded_blackstone": { - "protocol_id": 1069 - }, - "minecraft:polished_blackstone": { - "protocol_id": 1070 - }, - "minecraft:polished_blackstone_slab": { - "protocol_id": 1071 - }, - "minecraft:polished_blackstone_stairs": { - "protocol_id": 1072 - }, - "minecraft:chiseled_polished_blackstone": { - "protocol_id": 1073 - }, - "minecraft:polished_blackstone_bricks": { - "protocol_id": 1074 - }, - "minecraft:polished_blackstone_brick_slab": { - "protocol_id": 1075 - }, - "minecraft:polished_blackstone_brick_stairs": { - "protocol_id": 1076 - }, - "minecraft:cracked_polished_blackstone_bricks": { - "protocol_id": 1077 - }, - "minecraft:respawn_anchor": { - "protocol_id": 1078 - }, - "minecraft:candle": { - "protocol_id": 1079 - }, - "minecraft:white_candle": { - "protocol_id": 1080 - }, - "minecraft:orange_candle": { - "protocol_id": 1081 - }, - "minecraft:magenta_candle": { - "protocol_id": 1082 - }, - "minecraft:light_blue_candle": { - "protocol_id": 1083 - }, - "minecraft:yellow_candle": { - "protocol_id": 1084 - }, - "minecraft:lime_candle": { - "protocol_id": 1085 - }, - "minecraft:pink_candle": { - "protocol_id": 1086 - }, - "minecraft:gray_candle": { - "protocol_id": 1087 - }, - "minecraft:light_gray_candle": { - "protocol_id": 1088 - }, - "minecraft:cyan_candle": { - "protocol_id": 1089 - }, - "minecraft:purple_candle": { - "protocol_id": 1090 - }, - "minecraft:blue_candle": { - "protocol_id": 1091 - }, - "minecraft:brown_candle": { - "protocol_id": 1092 - }, - "minecraft:green_candle": { - "protocol_id": 1093 - }, - "minecraft:red_candle": { - "protocol_id": 1094 - }, - "minecraft:black_candle": { - "protocol_id": 1095 - }, - "minecraft:small_amethyst_bud": { - "protocol_id": 1096 - }, - "minecraft:medium_amethyst_bud": { - "protocol_id": 1097 - }, - "minecraft:large_amethyst_bud": { - "protocol_id": 1098 - }, - "minecraft:amethyst_cluster": { - "protocol_id": 1099 - }, - "minecraft:pointed_dripstone": { - "protocol_id": 1100 - } - } - }, - "minecraft:potion": { - "default": "minecraft:empty", - "protocol_id": 8, - "entries": { - "minecraft:empty": { - "protocol_id": 0 - }, - "minecraft:water": { - "protocol_id": 1 - }, - "minecraft:mundane": { - "protocol_id": 2 - }, - "minecraft:thick": { - "protocol_id": 3 - }, - "minecraft:awkward": { - "protocol_id": 4 - }, - "minecraft:night_vision": { - "protocol_id": 5 - }, - "minecraft:long_night_vision": { - "protocol_id": 6 - }, - "minecraft:invisibility": { - "protocol_id": 7 - }, - "minecraft:long_invisibility": { - "protocol_id": 8 - }, - "minecraft:leaping": { - "protocol_id": 9 - }, - "minecraft:long_leaping": { - "protocol_id": 10 - }, - "minecraft:strong_leaping": { - "protocol_id": 11 - }, - "minecraft:fire_resistance": { - "protocol_id": 12 - }, - "minecraft:long_fire_resistance": { - "protocol_id": 13 - }, - "minecraft:swiftness": { - "protocol_id": 14 - }, - "minecraft:long_swiftness": { - "protocol_id": 15 - }, - "minecraft:strong_swiftness": { - "protocol_id": 16 - }, - "minecraft:slowness": { - "protocol_id": 17 - }, - "minecraft:long_slowness": { - "protocol_id": 18 - }, - "minecraft:strong_slowness": { - "protocol_id": 19 - }, - "minecraft:turtle_master": { - "protocol_id": 20 - }, - "minecraft:long_turtle_master": { - "protocol_id": 21 - }, - "minecraft:strong_turtle_master": { - "protocol_id": 22 - }, - "minecraft:water_breathing": { - "protocol_id": 23 - }, - "minecraft:long_water_breathing": { - "protocol_id": 24 - }, - "minecraft:healing": { - "protocol_id": 25 - }, - "minecraft:strong_healing": { - "protocol_id": 26 - }, - "minecraft:harming": { - "protocol_id": 27 - }, - "minecraft:strong_harming": { - "protocol_id": 28 - }, - "minecraft:poison": { - "protocol_id": 29 - }, - "minecraft:long_poison": { - "protocol_id": 30 - }, - "minecraft:strong_poison": { - "protocol_id": 31 - }, - "minecraft:regeneration": { - "protocol_id": 32 - }, - "minecraft:long_regeneration": { - "protocol_id": 33 - }, - "minecraft:strong_regeneration": { - "protocol_id": 34 - }, - "minecraft:strength": { - "protocol_id": 35 - }, - "minecraft:long_strength": { - "protocol_id": 36 - }, - "minecraft:strong_strength": { - "protocol_id": 37 - }, - "minecraft:weakness": { - "protocol_id": 38 - }, - "minecraft:long_weakness": { - "protocol_id": 39 - }, - "minecraft:luck": { - "protocol_id": 40 - }, - "minecraft:slow_falling": { - "protocol_id": 41 - }, - "minecraft:long_slow_falling": { - "protocol_id": 42 - } - } - }, - "minecraft:particle_type": { - "protocol_id": 9, - "entries": { - "minecraft:ambient_entity_effect": { - "protocol_id": 0 - }, - "minecraft:angry_villager": { - "protocol_id": 1 - }, - "minecraft:block": { - "protocol_id": 2 - }, - "minecraft:block_marker": { - "protocol_id": 3 - }, - "minecraft:bubble": { - "protocol_id": 4 - }, - "minecraft:cloud": { - "protocol_id": 5 - }, - "minecraft:crit": { - "protocol_id": 6 - }, - "minecraft:damage_indicator": { - "protocol_id": 7 - }, - "minecraft:dragon_breath": { - "protocol_id": 8 - }, - "minecraft:dripping_lava": { - "protocol_id": 9 - }, - "minecraft:falling_lava": { - "protocol_id": 10 - }, - "minecraft:landing_lava": { - "protocol_id": 11 - }, - "minecraft:dripping_water": { - "protocol_id": 12 - }, - "minecraft:falling_water": { - "protocol_id": 13 - }, - "minecraft:dust": { - "protocol_id": 14 - }, - "minecraft:dust_color_transition": { - "protocol_id": 15 - }, - "minecraft:effect": { - "protocol_id": 16 - }, - "minecraft:elder_guardian": { - "protocol_id": 17 - }, - "minecraft:enchanted_hit": { - "protocol_id": 18 - }, - "minecraft:enchant": { - "protocol_id": 19 - }, - "minecraft:end_rod": { - "protocol_id": 20 - }, - "minecraft:entity_effect": { - "protocol_id": 21 - }, - "minecraft:explosion_emitter": { - "protocol_id": 22 - }, - "minecraft:explosion": { - "protocol_id": 23 - }, - "minecraft:falling_dust": { - "protocol_id": 24 - }, - "minecraft:firework": { - "protocol_id": 25 - }, - "minecraft:fishing": { - "protocol_id": 26 - }, - "minecraft:flame": { - "protocol_id": 27 - }, - "minecraft:soul_fire_flame": { - "protocol_id": 28 - }, - "minecraft:soul": { - "protocol_id": 29 - }, - "minecraft:flash": { - "protocol_id": 30 - }, - "minecraft:happy_villager": { - "protocol_id": 31 - }, - "minecraft:composter": { - "protocol_id": 32 - }, - "minecraft:heart": { - "protocol_id": 33 - }, - "minecraft:instant_effect": { - "protocol_id": 34 - }, - "minecraft:item": { - "protocol_id": 35 - }, - "minecraft:vibration": { - "protocol_id": 36 - }, - "minecraft:item_slime": { - "protocol_id": 37 - }, - "minecraft:item_snowball": { - "protocol_id": 38 - }, - "minecraft:large_smoke": { - "protocol_id": 39 - }, - "minecraft:lava": { - "protocol_id": 40 - }, - "minecraft:mycelium": { - "protocol_id": 41 - }, - "minecraft:note": { - "protocol_id": 42 - }, - "minecraft:poof": { - "protocol_id": 43 - }, - "minecraft:portal": { - "protocol_id": 44 - }, - "minecraft:rain": { - "protocol_id": 45 - }, - "minecraft:smoke": { - "protocol_id": 46 - }, - "minecraft:sneeze": { - "protocol_id": 47 - }, - "minecraft:spit": { - "protocol_id": 48 - }, - "minecraft:squid_ink": { - "protocol_id": 49 - }, - "minecraft:sweep_attack": { - "protocol_id": 50 - }, - "minecraft:totem_of_undying": { - "protocol_id": 51 - }, - "minecraft:underwater": { + "minecraft:stripped_acacia_log": { "protocol_id": 52 }, - "minecraft:splash": { - "protocol_id": 53 - }, - "minecraft:witch": { - "protocol_id": 54 - }, - "minecraft:bubble_pop": { - "protocol_id": 55 - }, - "minecraft:current_down": { - "protocol_id": 56 - }, - "minecraft:bubble_column_up": { - "protocol_id": 57 - }, - "minecraft:nautilus": { - "protocol_id": 58 - }, - "minecraft:dolphin": { - "protocol_id": 59 - }, - "minecraft:campfire_cosy_smoke": { - "protocol_id": 60 - }, - "minecraft:campfire_signal_smoke": { - "protocol_id": 61 - }, - "minecraft:dripping_honey": { - "protocol_id": 62 - }, - "minecraft:falling_honey": { - "protocol_id": 63 - }, - "minecraft:landing_honey": { - "protocol_id": 64 - }, - "minecraft:falling_nectar": { - "protocol_id": 65 - }, - "minecraft:falling_spore_blossom": { - "protocol_id": 66 - }, - "minecraft:ash": { + "minecraft:stripped_acacia_wood": { "protocol_id": 67 }, - "minecraft:crimson_spore": { + "minecraft:stripped_birch_log": { + "protocol_id": 50 + }, + "minecraft:stripped_birch_wood": { + "protocol_id": 65 + }, + "minecraft:stripped_crimson_hyphae": { + "protocol_id": 734 + }, + "minecraft:stripped_crimson_stem": { + "protocol_id": 732 + }, + "minecraft:stripped_dark_oak_log": { + "protocol_id": 53 + }, + "minecraft:stripped_dark_oak_wood": { "protocol_id": 68 }, - "minecraft:warped_spore": { + "minecraft:stripped_jungle_log": { + "protocol_id": 51 + }, + "minecraft:stripped_jungle_wood": { + "protocol_id": 66 + }, + "minecraft:stripped_mangrove_log": { + "protocol_id": 55 + }, + "minecraft:stripped_mangrove_wood": { "protocol_id": 69 }, - "minecraft:spore_blossom_air": { - "protocol_id": 70 + "minecraft:stripped_oak_log": { + "protocol_id": 54 }, - "minecraft:dripping_obsidian_tear": { - "protocol_id": 71 + "minecraft:stripped_oak_wood": { + "protocol_id": 63 }, - "minecraft:falling_obsidian_tear": { - "protocol_id": 72 + "minecraft:stripped_spruce_log": { + "protocol_id": 49 }, - "minecraft:landing_obsidian_tear": { - "protocol_id": 73 + "minecraft:stripped_spruce_wood": { + "protocol_id": 64 }, - "minecraft:reverse_portal": { - "protocol_id": 74 + "minecraft:stripped_warped_hyphae": { + "protocol_id": 725 }, - "minecraft:white_ash": { - "protocol_id": 75 + "minecraft:stripped_warped_stem": { + "protocol_id": 723 }, - "minecraft:small_flame": { - "protocol_id": 76 + "minecraft:structure_block": { + "protocol_id": 765 }, - "minecraft:snowflake": { - "protocol_id": 77 + "minecraft:structure_void": { + "protocol_id": 545 }, - "minecraft:dripping_dripstone_lava": { - "protocol_id": 78 + "minecraft:sugar_cane": { + "protocol_id": 209 }, - "minecraft:falling_dripstone_lava": { - "protocol_id": 79 + "minecraft:sunflower": { + "protocol_id": 443 }, - "minecraft:dripping_dripstone_water": { + "minecraft:sweet_berry_bush": { + "protocol_id": 721 + }, + "minecraft:tall_grass": { + "protocol_id": 447 + }, + "minecraft:tall_seagrass": { + "protocol_id": 114 + }, + "minecraft:target": { + "protocol_id": 768 + }, + "minecraft:terracotta": { + "protocol_id": 440 + }, + "minecraft:tinted_glass": { + "protocol_id": 844 + }, + "minecraft:tnt": { + "protocol_id": 152 + }, + "minecraft:torch": { + "protocol_id": 156 + }, + "minecraft:trapped_chest": { + "protocol_id": 360 + }, + "minecraft:tripwire": { + "protocol_id": 301 + }, + "minecraft:tripwire_hook": { + "protocol_id": 300 + }, + "minecraft:tube_coral": { + "protocol_id": 631 + }, + "minecraft:tube_coral_block": { + "protocol_id": 621 + }, + "minecraft:tube_coral_fan": { + "protocol_id": 641 + }, + "minecraft:tube_coral_wall_fan": { + "protocol_id": 651 + }, + "minecraft:tuff": { + "protocol_id": 842 + }, + "minecraft:turtle_egg": { + "protocol_id": 615 + }, + "minecraft:twisting_vines": { + "protocol_id": 740 + }, + "minecraft:twisting_vines_plant": { + "protocol_id": 741 + }, + "minecraft:verdant_froglight": { + "protocol_id": 929 + }, + "minecraft:vine": { + "protocol_id": 272 + }, + "minecraft:void_air": { + "protocol_id": 662 + }, + "minecraft:wall_torch": { + "protocol_id": 157 + }, + "minecraft:warped_button": { + "protocol_id": 758 + }, + "minecraft:warped_door": { + "protocol_id": 760 + }, + "minecraft:warped_fence": { + "protocol_id": 750 + }, + "minecraft:warped_fence_gate": { + "protocol_id": 754 + }, + "minecraft:warped_fungus": { + "protocol_id": 727 + }, + "minecraft:warped_hyphae": { + "protocol_id": 724 + }, + "minecraft:warped_nylium": { + "protocol_id": 726 + }, + "minecraft:warped_planks": { + "protocol_id": 744 + }, + "minecraft:warped_pressure_plate": { + "protocol_id": 748 + }, + "minecraft:warped_roots": { + "protocol_id": 729 + }, + "minecraft:warped_sign": { + "protocol_id": 762 + }, + "minecraft:warped_slab": { + "protocol_id": 746 + }, + "minecraft:warped_stairs": { + "protocol_id": 756 + }, + "minecraft:warped_stem": { + "protocol_id": 722 + }, + "minecraft:warped_trapdoor": { + "protocol_id": 752 + }, + "minecraft:warped_wall_sign": { + "protocol_id": 764 + }, + "minecraft:warped_wart_block": { + "protocol_id": 728 + }, + "minecraft:water": { + "protocol_id": 28 + }, + "minecraft:water_cauldron": { + "protocol_id": 287 + }, + "minecraft:waxed_copper_block": { + "protocol_id": 869 + }, + "minecraft:waxed_cut_copper": { + "protocol_id": 876 + }, + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 884 + }, + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 880 + }, + "minecraft:waxed_exposed_copper": { + "protocol_id": 871 + }, + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 875 + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 883 + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 879 + }, + "minecraft:waxed_oxidized_copper": { + "protocol_id": 872 + }, + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 873 + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 881 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 877 + }, + "minecraft:waxed_weathered_copper": { + "protocol_id": 870 + }, + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 874 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 882 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 878 + }, + "minecraft:weathered_copper": { + "protocol_id": 852 + }, + "minecraft:weathered_cut_copper": { + "protocol_id": 858 + }, + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 866 + }, + "minecraft:weathered_cut_copper_stairs": { + "protocol_id": 862 + }, + "minecraft:weeping_vines": { + "protocol_id": 738 + }, + "minecraft:weeping_vines_plant": { + "protocol_id": 739 + }, + "minecraft:wet_sponge": { "protocol_id": 80 }, - "minecraft:falling_dripstone_water": { - "protocol_id": 81 + "minecraft:wheat": { + "protocol_id": 168 }, - "minecraft:glow_squid_ink": { - "protocol_id": 82 + "minecraft:white_banner": { + "protocol_id": 449 }, - "minecraft:glow": { - "protocol_id": 83 + "minecraft:white_bed": { + "protocol_id": 90 }, - "minecraft:wax_on": { - "protocol_id": 84 + "minecraft:white_candle": { + "protocol_id": 803 }, - "minecraft:wax_off": { - "protocol_id": 85 + "minecraft:white_candle_cake": { + "protocol_id": 820 }, - "minecraft:electric_spark": { - "protocol_id": 86 + "minecraft:white_carpet": { + "protocol_id": 424 }, - "minecraft:scrape": { - "protocol_id": 87 + "minecraft:white_concrete": { + "protocol_id": 580 + }, + "minecraft:white_concrete_powder": { + "protocol_id": 596 + }, + "minecraft:white_glazed_terracotta": { + "protocol_id": 564 + }, + "minecraft:white_shulker_box": { + "protocol_id": 548 + }, + "minecraft:white_stained_glass": { + "protocol_id": 226 + }, + "minecraft:white_stained_glass_pane": { + "protocol_id": 390 + }, + "minecraft:white_terracotta": { + "protocol_id": 374 + }, + "minecraft:white_tulip": { + "protocol_id": 141 + }, + "minecraft:white_wall_banner": { + "protocol_id": 465 + }, + "minecraft:white_wool": { + "protocol_id": 117 + }, + "minecraft:wither_rose": { + "protocol_id": 145 + }, + "minecraft:wither_skeleton_skull": { + "protocol_id": 347 + }, + "minecraft:wither_skeleton_wall_skull": { + "protocol_id": 348 + }, + "minecraft:yellow_banner": { + "protocol_id": 453 + }, + "minecraft:yellow_bed": { + "protocol_id": 94 + }, + "minecraft:yellow_candle": { + "protocol_id": 807 + }, + "minecraft:yellow_candle_cake": { + "protocol_id": 824 + }, + "minecraft:yellow_carpet": { + "protocol_id": 428 + }, + "minecraft:yellow_concrete": { + "protocol_id": 584 + }, + "minecraft:yellow_concrete_powder": { + "protocol_id": 600 + }, + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 568 + }, + "minecraft:yellow_shulker_box": { + "protocol_id": 552 + }, + "minecraft:yellow_stained_glass": { + "protocol_id": 230 + }, + "minecraft:yellow_stained_glass_pane": { + "protocol_id": 394 + }, + "minecraft:yellow_terracotta": { + "protocol_id": 378 + }, + "minecraft:yellow_wall_banner": { + "protocol_id": 469 + }, + "minecraft:yellow_wool": { + "protocol_id": 121 + }, + "minecraft:zombie_head": { + "protocol_id": 349 + }, + "minecraft:zombie_wall_head": { + "protocol_id": 350 } - } + }, + "protocol_id": 4 }, "minecraft:block_entity_type": { - "protocol_id": 10, "entries": { - "minecraft:furnace": { - "protocol_id": 0 + "minecraft:banner": { + "protocol_id": 18 + }, + "minecraft:barrel": { + "protocol_id": 25 + }, + "minecraft:beacon": { + "protocol_id": 13 + }, + "minecraft:bed": { + "protocol_id": 23 + }, + "minecraft:beehive": { + "protocol_id": 32 + }, + "minecraft:bell": { + "protocol_id": 29 + }, + "minecraft:blast_furnace": { + "protocol_id": 27 + }, + "minecraft:brewing_stand": { + "protocol_id": 10 + }, + "minecraft:campfire": { + "protocol_id": 31 }, "minecraft:chest": { "protocol_id": 1 }, - "minecraft:trapped_chest": { - "protocol_id": 2 + "minecraft:command_block": { + "protocol_id": 21 }, - "minecraft:ender_chest": { - "protocol_id": 3 + "minecraft:comparator": { + "protocol_id": 17 }, - "minecraft:jukebox": { - "protocol_id": 4 + "minecraft:conduit": { + "protocol_id": 24 + }, + "minecraft:daylight_detector": { + "protocol_id": 15 }, "minecraft:dispenser": { "protocol_id": 5 @@ -10777,8 +3109,32 @@ "minecraft:dropper": { "protocol_id": 6 }, - "minecraft:sign": { - "protocol_id": 7 + "minecraft:enchanting_table": { + "protocol_id": 11 + }, + "minecraft:end_gateway": { + "protocol_id": 20 + }, + "minecraft:end_portal": { + "protocol_id": 12 + }, + "minecraft:ender_chest": { + "protocol_id": 3 + }, + "minecraft:furnace": { + "protocol_id": 0 + }, + "minecraft:hopper": { + "protocol_id": 16 + }, + "minecraft:jigsaw": { + "protocol_id": 30 + }, + "minecraft:jukebox": { + "protocol_id": 4 + }, + "minecraft:lectern": { + "protocol_id": 28 }, "minecraft:mob_spawner": { "protocol_id": 8 @@ -10786,286 +3142,322 @@ "minecraft:piston": { "protocol_id": 9 }, - "minecraft:brewing_stand": { - "protocol_id": 10 + "minecraft:sculk_catalyst": { + "protocol_id": 34 }, - "minecraft:enchanting_table": { - "protocol_id": 11 + "minecraft:sculk_sensor": { + "protocol_id": 33 }, - "minecraft:end_portal": { - "protocol_id": 12 - }, - "minecraft:beacon": { - "protocol_id": 13 - }, - "minecraft:skull": { - "protocol_id": 14 - }, - "minecraft:daylight_detector": { - "protocol_id": 15 - }, - "minecraft:hopper": { - "protocol_id": 16 - }, - "minecraft:comparator": { - "protocol_id": 17 - }, - "minecraft:banner": { - "protocol_id": 18 - }, - "minecraft:structure_block": { - "protocol_id": 19 - }, - "minecraft:end_gateway": { - "protocol_id": 20 - }, - "minecraft:command_block": { - "protocol_id": 21 + "minecraft:sculk_shrieker": { + "protocol_id": 35 }, "minecraft:shulker_box": { "protocol_id": 22 }, - "minecraft:bed": { - "protocol_id": 23 + "minecraft:sign": { + "protocol_id": 7 }, - "minecraft:conduit": { - "protocol_id": 24 - }, - "minecraft:barrel": { - "protocol_id": 25 + "minecraft:skull": { + "protocol_id": 14 }, "minecraft:smoker": { "protocol_id": 26 }, - "minecraft:blast_furnace": { - "protocol_id": 27 - }, - "minecraft:lectern": { - "protocol_id": 28 - }, - "minecraft:bell": { - "protocol_id": 29 - }, - "minecraft:jigsaw": { - "protocol_id": 30 - }, - "minecraft:campfire": { - "protocol_id": 31 - }, - "minecraft:beehive": { - "protocol_id": 32 - }, - "minecraft:sculk_sensor": { - "protocol_id": 33 - } - } - }, - "minecraft:motive": { - "default": "minecraft:kebab", - "protocol_id": 11, - "entries": { - "minecraft:kebab": { - "protocol_id": 0 - }, - "minecraft:aztec": { - "protocol_id": 1 - }, - "minecraft:alban": { - "protocol_id": 2 - }, - "minecraft:aztec2": { - "protocol_id": 3 - }, - "minecraft:bomb": { - "protocol_id": 4 - }, - "minecraft:plant": { - "protocol_id": 5 - }, - "minecraft:wasteland": { - "protocol_id": 6 - }, - "minecraft:pool": { - "protocol_id": 7 - }, - "minecraft:courbet": { - "protocol_id": 8 - }, - "minecraft:sea": { - "protocol_id": 9 - }, - "minecraft:sunset": { - "protocol_id": 10 - }, - "minecraft:creebet": { - "protocol_id": 11 - }, - "minecraft:wanderer": { - "protocol_id": 12 - }, - "minecraft:graham": { - "protocol_id": 13 - }, - "minecraft:match": { - "protocol_id": 14 - }, - "minecraft:bust": { - "protocol_id": 15 - }, - "minecraft:stage": { - "protocol_id": 16 - }, - "minecraft:void": { - "protocol_id": 17 - }, - "minecraft:skull_and_roses": { - "protocol_id": 18 - }, - "minecraft:wither": { + "minecraft:structure_block": { "protocol_id": 19 }, - "minecraft:fighters": { - "protocol_id": 20 - }, - "minecraft:pointer": { - "protocol_id": 21 - }, - "minecraft:pigscene": { - "protocol_id": 22 - }, - "minecraft:burning_skull": { - "protocol_id": 23 - }, - "minecraft:skeleton": { - "protocol_id": 24 - }, - "minecraft:donkey_kong": { - "protocol_id": 25 - } - } - }, - "minecraft:custom_stat": { - "protocol_id": 12, - "entries": { - "minecraft:leave_game": { - "protocol_id": 0 - }, - "minecraft:play_time": { - "protocol_id": 1 - }, - "minecraft:total_world_time": { + "minecraft:trapped_chest": { "protocol_id": 2 - }, - "minecraft:time_since_death": { - "protocol_id": 3 - }, - "minecraft:time_since_rest": { - "protocol_id": 4 - }, - "minecraft:sneak_time": { - "protocol_id": 5 - }, - "minecraft:walk_one_cm": { - "protocol_id": 6 - }, - "minecraft:crouch_one_cm": { - "protocol_id": 7 - }, - "minecraft:sprint_one_cm": { - "protocol_id": 8 - }, - "minecraft:walk_on_water_one_cm": { + } + }, + "protocol_id": 10 + }, + "minecraft:block_predicate_type": { + "entries": { + "minecraft:all_of": { "protocol_id": 9 }, - "minecraft:fall_one_cm": { + "minecraft:any_of": { + "protocol_id": 8 + }, + "minecraft:has_sturdy_face": { + "protocol_id": 3 + }, + "minecraft:inside_world_bounds": { + "protocol_id": 7 + }, + "minecraft:matching_block_tag": { + "protocol_id": 1 + }, + "minecraft:matching_blocks": { + "protocol_id": 0 + }, + "minecraft:matching_fluids": { + "protocol_id": 2 + }, + "minecraft:not": { "protocol_id": 10 }, - "minecraft:climb_one_cm": { + "minecraft:replaceable": { + "protocol_id": 5 + }, + "minecraft:solid": { + "protocol_id": 4 + }, + "minecraft:true": { "protocol_id": 11 }, - "minecraft:fly_one_cm": { + "minecraft:would_survive": { + "protocol_id": 6 + } + }, + "protocol_id": 39 + }, + "minecraft:cat_variant": { + "entries": { + "minecraft:all_black": { + "protocol_id": 10 + }, + "minecraft:black": { + "protocol_id": 1 + }, + "minecraft:british_shorthair": { + "protocol_id": 4 + }, + "minecraft:calico": { + "protocol_id": 5 + }, + "minecraft:jellie": { + "protocol_id": 9 + }, + "minecraft:persian": { + "protocol_id": 6 + }, + "minecraft:ragdoll": { + "protocol_id": 7 + }, + "minecraft:red": { + "protocol_id": 2 + }, + "minecraft:siamese": { + "protocol_id": 3 + }, + "minecraft:tabby": { + "protocol_id": 0 + }, + "minecraft:white": { + "protocol_id": 8 + } + }, + "protocol_id": 59 + }, + "minecraft:chunk_status": { + "default": "minecraft:empty", + "entries": { + "minecraft:biomes": { + "protocol_id": 3 + }, + "minecraft:carvers": { + "protocol_id": 6 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:features": { + "protocol_id": 8 + }, + "minecraft:full": { "protocol_id": 12 }, - "minecraft:walk_under_water_one_cm": { + "minecraft:heightmaps": { + "protocol_id": 11 + }, + "minecraft:light": { + "protocol_id": 9 + }, + "minecraft:liquid_carvers": { + "protocol_id": 7 + }, + "minecraft:noise": { + "protocol_id": 4 + }, + "minecraft:spawn": { + "protocol_id": 10 + }, + "minecraft:structure_references": { + "protocol_id": 2 + }, + "minecraft:structure_starts": { + "protocol_id": 1 + }, + "minecraft:surface": { + "protocol_id": 5 + } + }, + "protocol_id": 13 + }, + "minecraft:command_argument_type": { + "entries": { + "brigadier:bool": { + "protocol_id": 0 + }, + "brigadier:double": { + "protocol_id": 2 + }, + "brigadier:float": { + "protocol_id": 1 + }, + "brigadier:integer": { + "protocol_id": 3 + }, + "brigadier:long": { + "protocol_id": 4 + }, + "brigadier:string": { + "protocol_id": 5 + }, + "minecraft:angle": { + "protocol_id": 26 + }, + "minecraft:block_pos": { + "protocol_id": 8 + }, + "minecraft:block_predicate": { "protocol_id": 13 }, - "minecraft:minecart_one_cm": { - "protocol_id": 14 + "minecraft:block_state": { + "protocol_id": 12 }, - "minecraft:boat_one_cm": { - "protocol_id": 15 - }, - "minecraft:pig_one_cm": { + "minecraft:color": { "protocol_id": 16 }, - "minecraft:horse_one_cm": { + "minecraft:column_pos": { + "protocol_id": 9 + }, + "minecraft:component": { "protocol_id": 17 }, + "minecraft:dimension": { + "protocol_id": 41 + }, + "minecraft:entity": { + "protocol_id": 6 + }, + "minecraft:entity_anchor": { + "protocol_id": 36 + }, + "minecraft:entity_summon": { + "protocol_id": 40 + }, + "minecraft:float_range": { + "protocol_id": 38 + }, + "minecraft:function": { + "protocol_id": 35 + }, + "minecraft:game_profile": { + "protocol_id": 7 + }, + "minecraft:int_range": { + "protocol_id": 37 + }, + "minecraft:item_enchantment": { + "protocol_id": 39 + }, + "minecraft:item_predicate": { + "protocol_id": 15 + }, + "minecraft:item_slot": { + "protocol_id": 32 + }, + "minecraft:item_stack": { + "protocol_id": 14 + }, + "minecraft:message": { + "protocol_id": 18 + }, + "minecraft:mob_effect": { + "protocol_id": 34 + }, + "minecraft:nbt_compound_tag": { + "protocol_id": 19 + }, + "minecraft:nbt_path": { + "protocol_id": 21 + }, + "minecraft:nbt_tag": { + "protocol_id": 20 + }, + "minecraft:objective": { + "protocol_id": 22 + }, + "minecraft:objective_criteria": { + "protocol_id": 23 + }, + "minecraft:operation": { + "protocol_id": 24 + }, + "minecraft:particle": { + "protocol_id": 25 + }, + "minecraft:resource": { + "protocol_id": 44 + }, + "minecraft:resource_location": { + "protocol_id": 33 + }, + "minecraft:resource_or_tag": { + "protocol_id": 43 + }, + "minecraft:rotation": { + "protocol_id": 27 + }, + "minecraft:score_holder": { + "protocol_id": 29 + }, + "minecraft:scoreboard_slot": { + "protocol_id": 28 + }, + "minecraft:swizzle": { + "protocol_id": 30 + }, + "minecraft:team": { + "protocol_id": 31 + }, + "minecraft:template_mirror": { + "protocol_id": 45 + }, + "minecraft:template_rotation": { + "protocol_id": 46 + }, + "minecraft:time": { + "protocol_id": 42 + }, + "minecraft:uuid": { + "protocol_id": 47 + }, + "minecraft:vec2": { + "protocol_id": 11 + }, + "minecraft:vec3": { + "protocol_id": 10 + } + }, + "protocol_id": 21 + }, + "minecraft:custom_stat": { + "entries": { + "minecraft:animals_bred": { + "protocol_id": 32 + }, "minecraft:aviate_one_cm": { "protocol_id": 18 }, - "minecraft:swim_one_cm": { - "protocol_id": 19 + "minecraft:bell_ring": { + "protocol_id": 68 }, - "minecraft:strider_one_cm": { - "protocol_id": 20 - }, - "minecraft:jump": { - "protocol_id": 21 - }, - "minecraft:drop": { - "protocol_id": 22 - }, - "minecraft:damage_dealt": { - "protocol_id": 23 - }, - "minecraft:damage_dealt_absorbed": { - "protocol_id": 24 - }, - "minecraft:damage_dealt_resisted": { - "protocol_id": 25 - }, - "minecraft:damage_taken": { - "protocol_id": 26 - }, - "minecraft:damage_blocked_by_shield": { - "protocol_id": 27 - }, - "minecraft:damage_absorbed": { - "protocol_id": 28 - }, - "minecraft:damage_resisted": { - "protocol_id": 29 - }, - "minecraft:deaths": { - "protocol_id": 30 - }, - "minecraft:mob_kills": { - "protocol_id": 31 - }, - "minecraft:animals_bred": { - "protocol_id": 32 - }, - "minecraft:player_kills": { - "protocol_id": 33 - }, - "minecraft:fish_caught": { - "protocol_id": 34 - }, - "minecraft:talked_to_villager": { - "protocol_id": 35 - }, - "minecraft:traded_with_villager": { - "protocol_id": 36 - }, - "minecraft:eat_cake_slice": { - "protocol_id": 37 - }, - "minecraft:fill_cauldron": { - "protocol_id": 38 - }, - "minecraft:use_cauldron": { - "protocol_id": 39 + "minecraft:boat_one_cm": { + "protocol_id": 15 }, "minecraft:clean_armor": { "protocol_id": 40 @@ -11076,11 +3468,62 @@ "minecraft:clean_shulker_box": { "protocol_id": 42 }, - "minecraft:interact_with_brewingstand": { - "protocol_id": 43 + "minecraft:climb_one_cm": { + "protocol_id": 11 }, - "minecraft:interact_with_beacon": { - "protocol_id": 44 + "minecraft:crouch_one_cm": { + "protocol_id": 7 + }, + "minecraft:damage_absorbed": { + "protocol_id": 28 + }, + "minecraft:damage_blocked_by_shield": { + "protocol_id": 27 + }, + "minecraft:damage_dealt": { + "protocol_id": 23 + }, + "minecraft:damage_dealt_absorbed": { + "protocol_id": 24 + }, + "minecraft:damage_dealt_resisted": { + "protocol_id": 25 + }, + "minecraft:damage_resisted": { + "protocol_id": 29 + }, + "minecraft:damage_taken": { + "protocol_id": 26 + }, + "minecraft:deaths": { + "protocol_id": 30 + }, + "minecraft:drop": { + "protocol_id": 22 + }, + "minecraft:eat_cake_slice": { + "protocol_id": 37 + }, + "minecraft:enchant_item": { + "protocol_id": 53 + }, + "minecraft:fall_one_cm": { + "protocol_id": 10 + }, + "minecraft:fill_cauldron": { + "protocol_id": 38 + }, + "minecraft:fish_caught": { + "protocol_id": 34 + }, + "minecraft:fly_one_cm": { + "protocol_id": 12 + }, + "minecraft:horse_one_cm": { + "protocol_id": 17 + }, + "minecraft:inspect_dispenser": { + "protocol_id": 47 }, "minecraft:inspect_dropper": { "protocol_id": 45 @@ -11088,56 +3531,17 @@ "minecraft:inspect_hopper": { "protocol_id": 46 }, - "minecraft:inspect_dispenser": { - "protocol_id": 47 + "minecraft:interact_with_anvil": { + "protocol_id": 71 }, - "minecraft:play_noteblock": { - "protocol_id": 48 - }, - "minecraft:tune_noteblock": { - "protocol_id": 49 - }, - "minecraft:pot_flower": { - "protocol_id": 50 - }, - "minecraft:trigger_trapped_chest": { - "protocol_id": 51 - }, - "minecraft:open_enderchest": { - "protocol_id": 52 - }, - "minecraft:enchant_item": { - "protocol_id": 53 - }, - "minecraft:play_record": { - "protocol_id": 54 - }, - "minecraft:interact_with_furnace": { - "protocol_id": 55 - }, - "minecraft:interact_with_crafting_table": { - "protocol_id": 56 - }, - "minecraft:open_chest": { - "protocol_id": 57 - }, - "minecraft:sleep_in_bed": { - "protocol_id": 58 - }, - "minecraft:open_shulker_box": { - "protocol_id": 59 - }, - "minecraft:open_barrel": { - "protocol_id": 60 + "minecraft:interact_with_beacon": { + "protocol_id": 44 }, "minecraft:interact_with_blast_furnace": { "protocol_id": 61 }, - "minecraft:interact_with_smoker": { - "protocol_id": 62 - }, - "minecraft:interact_with_lectern": { - "protocol_id": 63 + "minecraft:interact_with_brewingstand": { + "protocol_id": 43 }, "minecraft:interact_with_campfire": { "protocol_id": 64 @@ -11145,14 +3549,71 @@ "minecraft:interact_with_cartography_table": { "protocol_id": 65 }, + "minecraft:interact_with_crafting_table": { + "protocol_id": 56 + }, + "minecraft:interact_with_furnace": { + "protocol_id": 55 + }, + "minecraft:interact_with_grindstone": { + "protocol_id": 72 + }, + "minecraft:interact_with_lectern": { + "protocol_id": 63 + }, "minecraft:interact_with_loom": { "protocol_id": 66 }, + "minecraft:interact_with_smithing_table": { + "protocol_id": 74 + }, + "minecraft:interact_with_smoker": { + "protocol_id": 62 + }, "minecraft:interact_with_stonecutter": { "protocol_id": 67 }, - "minecraft:bell_ring": { - "protocol_id": 68 + "minecraft:jump": { + "protocol_id": 21 + }, + "minecraft:leave_game": { + "protocol_id": 0 + }, + "minecraft:minecart_one_cm": { + "protocol_id": 14 + }, + "minecraft:mob_kills": { + "protocol_id": 31 + }, + "minecraft:open_barrel": { + "protocol_id": 60 + }, + "minecraft:open_chest": { + "protocol_id": 57 + }, + "minecraft:open_enderchest": { + "protocol_id": 52 + }, + "minecraft:open_shulker_box": { + "protocol_id": 59 + }, + "minecraft:pig_one_cm": { + "protocol_id": 16 + }, + "minecraft:play_noteblock": { + "protocol_id": 48 + }, + "minecraft:play_record": { + "protocol_id": 54 + }, + "minecraft:play_time": { + "protocol_id": 1 + }, + "minecraft:player_kills": { + "protocol_id": 33 + }, + "minecraft:pot_flower": { + "protocol_id": 50 }, "minecraft:raid_trigger": { "protocol_id": 69 @@ -11160,105 +3621,4784 @@ "minecraft:raid_win": { "protocol_id": 70 }, - "minecraft:interact_with_anvil": { - "protocol_id": 71 + "minecraft:sleep_in_bed": { + "protocol_id": 58 }, - "minecraft:interact_with_grindstone": { - "protocol_id": 72 + "minecraft:sneak_time": { + "protocol_id": 5 + }, + "minecraft:sprint_one_cm": { + "protocol_id": 8 + }, + "minecraft:strider_one_cm": { + "protocol_id": 20 + }, + "minecraft:swim_one_cm": { + "protocol_id": 19 + }, + "minecraft:talked_to_villager": { + "protocol_id": 35 }, "minecraft:target_hit": { "protocol_id": 73 }, - "minecraft:interact_with_smithing_table": { - "protocol_id": 74 + "minecraft:time_since_death": { + "protocol_id": 3 + }, + "minecraft:time_since_rest": { + "protocol_id": 4 + }, + "minecraft:total_world_time": { + "protocol_id": 2 + }, + "minecraft:traded_with_villager": { + "protocol_id": 36 + }, + "minecraft:trigger_trapped_chest": { + "protocol_id": 51 + }, + "minecraft:tune_noteblock": { + "protocol_id": 49 + }, + "minecraft:use_cauldron": { + "protocol_id": 39 + }, + "minecraft:walk_on_water_one_cm": { + "protocol_id": 9 + }, + "minecraft:walk_one_cm": { + "protocol_id": 6 + }, + "minecraft:walk_under_water_one_cm": { + "protocol_id": 13 } - } + }, + "protocol_id": 12 }, - "minecraft:chunk_status": { + "minecraft:enchantment": { + "entries": { + "minecraft:aqua_affinity": { + "protocol_id": 6 + }, + "minecraft:bane_of_arthropods": { + "protocol_id": 15 + }, + "minecraft:binding_curse": { + "protocol_id": 10 + }, + "minecraft:blast_protection": { + "protocol_id": 3 + }, + "minecraft:channeling": { + "protocol_id": 33 + }, + "minecraft:depth_strider": { + "protocol_id": 8 + }, + "minecraft:efficiency": { + "protocol_id": 20 + }, + "minecraft:feather_falling": { + "protocol_id": 2 + }, + "minecraft:fire_aspect": { + "protocol_id": 17 + }, + "minecraft:fire_protection": { + "protocol_id": 1 + }, + "minecraft:flame": { + "protocol_id": 26 + }, + "minecraft:fortune": { + "protocol_id": 23 + }, + "minecraft:frost_walker": { + "protocol_id": 9 + }, + "minecraft:impaling": { + "protocol_id": 31 + }, + "minecraft:infinity": { + "protocol_id": 27 + }, + "minecraft:knockback": { + "protocol_id": 16 + }, + "minecraft:looting": { + "protocol_id": 18 + }, + "minecraft:loyalty": { + "protocol_id": 30 + }, + "minecraft:luck_of_the_sea": { + "protocol_id": 28 + }, + "minecraft:lure": { + "protocol_id": 29 + }, + "minecraft:mending": { + "protocol_id": 37 + }, + "minecraft:multishot": { + "protocol_id": 34 + }, + "minecraft:piercing": { + "protocol_id": 36 + }, + "minecraft:power": { + "protocol_id": 24 + }, + "minecraft:projectile_protection": { + "protocol_id": 4 + }, + "minecraft:protection": { + "protocol_id": 0 + }, + "minecraft:punch": { + "protocol_id": 25 + }, + "minecraft:quick_charge": { + "protocol_id": 35 + }, + "minecraft:respiration": { + "protocol_id": 5 + }, + "minecraft:riptide": { + "protocol_id": 32 + }, + "minecraft:sharpness": { + "protocol_id": 13 + }, + "minecraft:silk_touch": { + "protocol_id": 21 + }, + "minecraft:smite": { + "protocol_id": 14 + }, + "minecraft:soul_speed": { + "protocol_id": 11 + }, + "minecraft:sweeping": { + "protocol_id": 19 + }, + "minecraft:swift_sneak": { + "protocol_id": 12 + }, + "minecraft:thorns": { + "protocol_id": 7 + }, + "minecraft:unbreaking": { + "protocol_id": 22 + }, + "minecraft:vanishing_curse": { + "protocol_id": 38 + } + }, + "protocol_id": 5 + }, + "minecraft:entity_type": { + "default": "minecraft:pig", + "entries": { + "minecraft:allay": { + "protocol_id": 0 + }, + "minecraft:area_effect_cloud": { + "protocol_id": 1 + }, + "minecraft:armor_stand": { + "protocol_id": 2 + }, + "minecraft:arrow": { + "protocol_id": 3 + }, + "minecraft:axolotl": { + "protocol_id": 4 + }, + "minecraft:bat": { + "protocol_id": 5 + }, + "minecraft:bee": { + "protocol_id": 6 + }, + "minecraft:blaze": { + "protocol_id": 7 + }, + "minecraft:boat": { + "protocol_id": 8 + }, + "minecraft:cat": { + "protocol_id": 10 + }, + "minecraft:cave_spider": { + "protocol_id": 11 + }, + "minecraft:chest_boat": { + "protocol_id": 9 + }, + "minecraft:chest_minecart": { + "protocol_id": 54 + }, + "minecraft:chicken": { + "protocol_id": 12 + }, + "minecraft:cod": { + "protocol_id": 13 + }, + "minecraft:command_block_minecart": { + "protocol_id": 55 + }, + "minecraft:cow": { + "protocol_id": 14 + }, + "minecraft:creeper": { + "protocol_id": 15 + }, + "minecraft:dolphin": { + "protocol_id": 16 + }, + "minecraft:donkey": { + "protocol_id": 17 + }, + "minecraft:dragon_fireball": { + "protocol_id": 18 + }, + "minecraft:drowned": { + "protocol_id": 19 + }, + "minecraft:egg": { + "protocol_id": 93 + }, + "minecraft:elder_guardian": { + "protocol_id": 20 + }, + "minecraft:end_crystal": { + "protocol_id": 21 + }, + "minecraft:ender_dragon": { + "protocol_id": 22 + }, + "minecraft:ender_pearl": { + "protocol_id": 94 + }, + "minecraft:enderman": { + "protocol_id": 23 + }, + "minecraft:endermite": { + "protocol_id": 24 + }, + "minecraft:evoker": { + "protocol_id": 25 + }, + "minecraft:evoker_fangs": { + "protocol_id": 26 + }, + "minecraft:experience_bottle": { + "protocol_id": 95 + }, + "minecraft:experience_orb": { + "protocol_id": 27 + }, + "minecraft:eye_of_ender": { + "protocol_id": 28 + }, + "minecraft:falling_block": { + "protocol_id": 29 + }, + "minecraft:fireball": { + "protocol_id": 46 + }, + "minecraft:firework_rocket": { + "protocol_id": 30 + }, + "minecraft:fishing_bobber": { + "protocol_id": 117 + }, + "minecraft:fox": { + "protocol_id": 31 + }, + "minecraft:frog": { + "protocol_id": 32 + }, + "minecraft:furnace_minecart": { + "protocol_id": 56 + }, + "minecraft:ghast": { + "protocol_id": 33 + }, + "minecraft:giant": { + "protocol_id": 34 + }, + "minecraft:glow_item_frame": { + "protocol_id": 35 + }, + "minecraft:glow_squid": { + "protocol_id": 36 + }, + "minecraft:goat": { + "protocol_id": 37 + }, + "minecraft:guardian": { + "protocol_id": 38 + }, + "minecraft:hoglin": { + "protocol_id": 39 + }, + "minecraft:hopper_minecart": { + "protocol_id": 57 + }, + "minecraft:horse": { + "protocol_id": 40 + }, + "minecraft:husk": { + "protocol_id": 41 + }, + "minecraft:illusioner": { + "protocol_id": 42 + }, + "minecraft:iron_golem": { + "protocol_id": 43 + }, + "minecraft:item": { + "protocol_id": 44 + }, + "minecraft:item_frame": { + "protocol_id": 45 + }, + "minecraft:leash_knot": { + "protocol_id": 47 + }, + "minecraft:lightning_bolt": { + "protocol_id": 48 + }, + "minecraft:llama": { + "protocol_id": 49 + }, + "minecraft:llama_spit": { + "protocol_id": 50 + }, + "minecraft:magma_cube": { + "protocol_id": 51 + }, + "minecraft:marker": { + "protocol_id": 52 + }, + "minecraft:minecart": { + "protocol_id": 53 + }, + "minecraft:mooshroom": { + "protocol_id": 61 + }, + "minecraft:mule": { + "protocol_id": 60 + }, + "minecraft:ocelot": { + "protocol_id": 62 + }, + "minecraft:painting": { + "protocol_id": 63 + }, + "minecraft:panda": { + "protocol_id": 64 + }, + "minecraft:parrot": { + "protocol_id": 65 + }, + "minecraft:phantom": { + "protocol_id": 66 + }, + "minecraft:pig": { + "protocol_id": 67 + }, + "minecraft:piglin": { + "protocol_id": 68 + }, + "minecraft:piglin_brute": { + "protocol_id": 69 + }, + "minecraft:pillager": { + "protocol_id": 70 + }, + "minecraft:player": { + "protocol_id": 116 + }, + "minecraft:polar_bear": { + "protocol_id": 71 + }, + "minecraft:potion": { + "protocol_id": 96 + }, + "minecraft:pufferfish": { + "protocol_id": 73 + }, + "minecraft:rabbit": { + "protocol_id": 74 + }, + "minecraft:ravager": { + "protocol_id": 75 + }, + "minecraft:salmon": { + "protocol_id": 76 + }, + "minecraft:sheep": { + "protocol_id": 77 + }, + "minecraft:shulker": { + "protocol_id": 78 + }, + "minecraft:shulker_bullet": { + "protocol_id": 79 + }, + "minecraft:silverfish": { + "protocol_id": 80 + }, + "minecraft:skeleton": { + "protocol_id": 81 + }, + "minecraft:skeleton_horse": { + "protocol_id": 82 + }, + "minecraft:slime": { + "protocol_id": 83 + }, + "minecraft:small_fireball": { + "protocol_id": 84 + }, + "minecraft:snow_golem": { + "protocol_id": 85 + }, + "minecraft:snowball": { + "protocol_id": 86 + }, + "minecraft:spawner_minecart": { + "protocol_id": 58 + }, + "minecraft:spectral_arrow": { + "protocol_id": 87 + }, + "minecraft:spider": { + "protocol_id": 88 + }, + "minecraft:squid": { + "protocol_id": 89 + }, + "minecraft:stray": { + "protocol_id": 90 + }, + "minecraft:strider": { + "protocol_id": 91 + }, + "minecraft:tadpole": { + "protocol_id": 92 + }, + "minecraft:tnt": { + "protocol_id": 72 + }, + "minecraft:tnt_minecart": { + "protocol_id": 59 + }, + "minecraft:trader_llama": { + "protocol_id": 98 + }, + "minecraft:trident": { + "protocol_id": 97 + }, + "minecraft:tropical_fish": { + "protocol_id": 99 + }, + "minecraft:turtle": { + "protocol_id": 100 + }, + "minecraft:vex": { + "protocol_id": 101 + }, + "minecraft:villager": { + "protocol_id": 102 + }, + "minecraft:vindicator": { + "protocol_id": 103 + }, + "minecraft:wandering_trader": { + "protocol_id": 104 + }, + "minecraft:warden": { + "protocol_id": 105 + }, + "minecraft:witch": { + "protocol_id": 106 + }, + "minecraft:wither": { + "protocol_id": 107 + }, + "minecraft:wither_skeleton": { + "protocol_id": 108 + }, + "minecraft:wither_skull": { + "protocol_id": 109 + }, + "minecraft:wolf": { + "protocol_id": 110 + }, + "minecraft:zoglin": { + "protocol_id": 111 + }, + "minecraft:zombie": { + "protocol_id": 112 + }, + "minecraft:zombie_horse": { + "protocol_id": 113 + }, + "minecraft:zombie_villager": { + "protocol_id": 114 + }, + "minecraft:zombified_piglin": { + "protocol_id": 115 + } + }, + "protocol_id": 6 + }, + "minecraft:float_provider_type": { + "entries": { + "minecraft:clamped_normal": { + "protocol_id": 2 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:trapezoid": { + "protocol_id": 3 + }, + "minecraft:uniform": { + "protocol_id": 1 + } + }, + "protocol_id": 36 + }, + "minecraft:fluid": { "default": "minecraft:empty", - "protocol_id": 13, "entries": { "minecraft:empty": { "protocol_id": 0 }, - "minecraft:structure_starts": { - "protocol_id": 1 - }, - "minecraft:structure_references": { - "protocol_id": 2 - }, - "minecraft:biomes": { + "minecraft:flowing_lava": { "protocol_id": 3 }, - "minecraft:noise": { + "minecraft:flowing_water": { + "protocol_id": 1 + }, + "minecraft:lava": { "protocol_id": 4 }, - "minecraft:surface": { + "minecraft:water": { + "protocol_id": 2 + } + }, + "protocol_id": 2 + }, + "minecraft:frog_variant": { + "entries": { + "minecraft:cold": { + "protocol_id": 2 + }, + "minecraft:temperate": { + "protocol_id": 0 + }, + "minecraft:warm": { + "protocol_id": 1 + } + }, + "protocol_id": 60 + }, + "minecraft:game_event": { + "default": "minecraft:step", + "entries": { + "minecraft:block_activate": { + "protocol_id": 0 + }, + "minecraft:block_attach": { + "protocol_id": 1 + }, + "minecraft:block_change": { + "protocol_id": 2 + }, + "minecraft:block_close": { + "protocol_id": 3 + }, + "minecraft:block_deactivate": { + "protocol_id": 4 + }, + "minecraft:block_destroy": { "protocol_id": 5 }, - "minecraft:carvers": { + "minecraft:block_detach": { "protocol_id": 6 }, - "minecraft:liquid_carvers": { + "minecraft:block_open": { "protocol_id": 7 }, - "minecraft:features": { + "minecraft:block_place": { "protocol_id": 8 }, - "minecraft:light": { + "minecraft:container_close": { "protocol_id": 9 }, - "minecraft:spawn": { + "minecraft:container_open": { "protocol_id": 10 }, - "minecraft:heightmaps": { + "minecraft:dispense_fail": { "protocol_id": 11 }, - "minecraft:full": { + "minecraft:drink": { "protocol_id": 12 + }, + "minecraft:eat": { + "protocol_id": 13 + }, + "minecraft:elytra_glide": { + "protocol_id": 14 + }, + "minecraft:entity_damage": { + "protocol_id": 15 + }, + "minecraft:entity_die": { + "protocol_id": 16 + }, + "minecraft:entity_interact": { + "protocol_id": 17 + }, + "minecraft:entity_place": { + "protocol_id": 18 + }, + "minecraft:entity_roar": { + "protocol_id": 19 + }, + "minecraft:entity_shake": { + "protocol_id": 20 + }, + "minecraft:equip": { + "protocol_id": 21 + }, + "minecraft:explode": { + "protocol_id": 22 + }, + "minecraft:flap": { + "protocol_id": 23 + }, + "minecraft:fluid_pickup": { + "protocol_id": 24 + }, + "minecraft:fluid_place": { + "protocol_id": 25 + }, + "minecraft:hit_ground": { + "protocol_id": 26 + }, + "minecraft:instrument_play": { + "protocol_id": 27 + }, + "minecraft:item_interact_finish": { + "protocol_id": 28 + }, + "minecraft:item_interact_start": { + "protocol_id": 29 + }, + "minecraft:lightning_strike": { + "protocol_id": 30 + }, + "minecraft:note_block_play": { + "protocol_id": 31 + }, + "minecraft:piston_contract": { + "protocol_id": 32 + }, + "minecraft:piston_extend": { + "protocol_id": 33 + }, + "minecraft:prime_fuse": { + "protocol_id": 34 + }, + "minecraft:projectile_land": { + "protocol_id": 35 + }, + "minecraft:projectile_shoot": { + "protocol_id": 36 + }, + "minecraft:sculk_sensor_tendrils_clicking": { + "protocol_id": 37 + }, + "minecraft:shear": { + "protocol_id": 38 + }, + "minecraft:shriek": { + "protocol_id": 39 + }, + "minecraft:splash": { + "protocol_id": 40 + }, + "minecraft:step": { + "protocol_id": 41 + }, + "minecraft:swim": { + "protocol_id": 42 + }, + "minecraft:teleport": { + "protocol_id": 43 } - } + }, + "protocol_id": 0 }, - "minecraft:rule_test": { - "protocol_id": 14, + "minecraft:height_provider_type": { "entries": { - "minecraft:always_true": { - "protocol_id": 0 - }, - "minecraft:block_match": { - "protocol_id": 1 - }, - "minecraft:blockstate_match": { + "minecraft:biased_to_bottom": { "protocol_id": 2 }, - "minecraft:tag_match": { - "protocol_id": 3 + "minecraft:constant": { + "protocol_id": 0 }, - "minecraft:random_block_match": { + "minecraft:trapezoid": { "protocol_id": 4 }, - "minecraft:random_blockstate_match": { - "protocol_id": 5 - } - } - }, - "minecraft:pos_rule_test": { - "protocol_id": 15, - "entries": { - "minecraft:always_true": { - "protocol_id": 0 - }, - "minecraft:linear_pos": { + "minecraft:uniform": { "protocol_id": 1 }, - "minecraft:axis_aligned_linear_pos": { - "protocol_id": 2 + "minecraft:very_biased_to_bottom": { + "protocol_id": 3 + }, + "minecraft:weighted_list": { + "protocol_id": 5 } - } + }, + "protocol_id": 38 + }, + "minecraft:instrument": { + "entries": { + "minecraft:admire_goat_horn": { + "protocol_id": 4 + }, + "minecraft:call_goat_horn": { + "protocol_id": 5 + }, + "minecraft:dream_goat_horn": { + "protocol_id": 7 + }, + "minecraft:feel_goat_horn": { + "protocol_id": 3 + }, + "minecraft:ponder_goat_horn": { + "protocol_id": 0 + }, + "minecraft:seek_goat_horn": { + "protocol_id": 2 + }, + "minecraft:sing_goat_horn": { + "protocol_id": 1 + }, + "minecraft:yearn_goat_horn": { + "protocol_id": 6 + } + }, + "protocol_id": 62 + }, + "minecraft:int_provider_type": { + "entries": { + "minecraft:biased_to_bottom": { + "protocol_id": 2 + }, + "minecraft:clamped": { + "protocol_id": 3 + }, + "minecraft:clamped_normal": { + "protocol_id": 5 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:uniform": { + "protocol_id": 1 + }, + "minecraft:weighted_list": { + "protocol_id": 4 + } + }, + "protocol_id": 37 + }, + "minecraft:item": { + "default": "minecraft:air", + "entries": { + "minecraft:acacia_boat": { + "protocol_id": 706 + }, + "minecraft:acacia_button": { + "protocol_id": 638 + }, + "minecraft:acacia_chest_boat": { + "protocol_id": 707 + }, + "minecraft:acacia_door": { + "protocol_id": 661 + }, + "minecraft:acacia_fence": { + "protocol_id": 272 + }, + "minecraft:acacia_fence_gate": { + "protocol_id": 680 + }, + "minecraft:acacia_leaves": { + "protocol_id": 146 + }, + "minecraft:acacia_log": { + "protocol_id": 108 + }, + "minecraft:acacia_planks": { + "protocol_id": 27 + }, + "minecraft:acacia_pressure_plate": { + "protocol_id": 651 + }, + "minecraft:acacia_sapling": { + "protocol_id": 36 + }, + "minecraft:acacia_sign": { + "protocol_id": 808 + }, + "minecraft:acacia_slab": { + "protocol_id": 218 + }, + "minecraft:acacia_stairs": { + "protocol_id": 342 + }, + "minecraft:acacia_trapdoor": { + "protocol_id": 671 + }, + "minecraft:acacia_wood": { + "protocol_id": 137 + }, + "minecraft:activator_rail": { + "protocol_id": 688 + }, + "minecraft:air": { + "protocol_id": 0 + }, + "minecraft:allay_spawn_egg": { + "protocol_id": 912 + }, + "minecraft:allium": { + "protocol_id": 186 + }, + "minecraft:amethyst_block": { + "protocol_id": 66 + }, + "minecraft:amethyst_cluster": { + "protocol_id": 1145 + }, + "minecraft:amethyst_shard": { + "protocol_id": 726 + }, + "minecraft:ancient_debris": { + "protocol_id": 61 + }, + "minecraft:andesite": { + "protocol_id": 6 + }, + "minecraft:andesite_slab": { + "protocol_id": 599 + }, + "minecraft:andesite_stairs": { + "protocol_id": 582 + }, + "minecraft:andesite_wall": { + "protocol_id": 359 + }, + "minecraft:anvil": { + "protocol_id": 371 + }, + "minecraft:apple": { + "protocol_id": 717 + }, + "minecraft:armor_stand": { + "protocol_id": 1015 + }, + "minecraft:arrow": { + "protocol_id": 719 + }, + "minecraft:axolotl_bucket": { + "protocol_id": 824 + }, + "minecraft:axolotl_spawn_egg": { + "protocol_id": 913 + }, + "minecraft:azalea": { + "protocol_id": 162 + }, + "minecraft:azalea_leaves": { + "protocol_id": 149 + }, + "minecraft:azure_bluet": { + "protocol_id": 187 + }, + "minecraft:baked_potato": { + "protocol_id": 992 + }, + "minecraft:bamboo": { + "protocol_id": 213 + }, + "minecraft:barrel": { + "protocol_id": 1089 + }, + "minecraft:barrier": { + "protocol_id": 395 + }, + "minecraft:basalt": { + "protocol_id": 283 + }, + "minecraft:bat_spawn_egg": { + "protocol_id": 914 + }, + "minecraft:beacon": { + "protocol_id": 348 + }, + "minecraft:bedrock": { + "protocol_id": 39 + }, + "minecraft:bee_nest": { + "protocol_id": 1106 + }, + "minecraft:bee_spawn_egg": { + "protocol_id": 915 + }, + "minecraft:beef": { + "protocol_id": 892 + }, + "minecraft:beehive": { + "protocol_id": 1107 + }, + "minecraft:beetroot": { + "protocol_id": 1044 + }, + "minecraft:beetroot_seeds": { + "protocol_id": 1045 + }, + "minecraft:beetroot_soup": { + "protocol_id": 1046 + }, + "minecraft:bell": { + "protocol_id": 1097 + }, + "minecraft:big_dripleaf": { + "protocol_id": 211 + }, + "minecraft:birch_boat": { + "protocol_id": 702 + }, + "minecraft:birch_button": { + "protocol_id": 636 + }, + "minecraft:birch_chest_boat": { + "protocol_id": 703 + }, + "minecraft:birch_door": { + "protocol_id": 659 + }, + "minecraft:birch_fence": { + "protocol_id": 270 + }, + "minecraft:birch_fence_gate": { + "protocol_id": 678 + }, + "minecraft:birch_leaves": { + "protocol_id": 144 + }, + "minecraft:birch_log": { + "protocol_id": 106 + }, + "minecraft:birch_planks": { + "protocol_id": 25 + }, + "minecraft:birch_pressure_plate": { + "protocol_id": 649 + }, + "minecraft:birch_sapling": { + "protocol_id": 34 + }, + "minecraft:birch_sign": { + "protocol_id": 806 + }, + "minecraft:birch_slab": { + "protocol_id": 216 + }, + "minecraft:birch_stairs": { + "protocol_id": 340 + }, + "minecraft:birch_trapdoor": { + "protocol_id": 669 + }, + "minecraft:birch_wood": { + "protocol_id": 135 + }, + "minecraft:black_banner": { + "protocol_id": 1040 + }, + "minecraft:black_bed": { + "protocol_id": 884 + }, + "minecraft:black_candle": { + "protocol_id": 1141 + }, + "minecraft:black_carpet": { + "protocol_id": 413 + }, + "minecraft:black_concrete": { + "protocol_id": 522 + }, + "minecraft:black_concrete_powder": { + "protocol_id": 538 + }, + "minecraft:black_dye": { + "protocol_id": 864 + }, + "minecraft:black_glazed_terracotta": { + "protocol_id": 506 + }, + "minecraft:black_shulker_box": { + "protocol_id": 490 + }, + "minecraft:black_stained_glass": { + "protocol_id": 438 + }, + "minecraft:black_stained_glass_pane": { + "protocol_id": 454 + }, + "minecraft:black_terracotta": { + "protocol_id": 394 + }, + "minecraft:black_wool": { + "protocol_id": 182 + }, + "minecraft:blackstone": { + "protocol_id": 1112 + }, + "minecraft:blackstone_slab": { + "protocol_id": 1113 + }, + "minecraft:blackstone_stairs": { + "protocol_id": 1114 + }, + "minecraft:blackstone_wall": { + "protocol_id": 364 + }, + "minecraft:blast_furnace": { + "protocol_id": 1091 + }, + "minecraft:blaze_powder": { + "protocol_id": 906 + }, + "minecraft:blaze_rod": { + "protocol_id": 898 + }, + "minecraft:blaze_spawn_egg": { + "protocol_id": 916 + }, + "minecraft:blue_banner": { + "protocol_id": 1036 + }, + "minecraft:blue_bed": { + "protocol_id": 880 + }, + "minecraft:blue_candle": { + "protocol_id": 1137 + }, + "minecraft:blue_carpet": { + "protocol_id": 409 + }, + "minecraft:blue_concrete": { + "protocol_id": 518 + }, + "minecraft:blue_concrete_powder": { + "protocol_id": 534 + }, + "minecraft:blue_dye": { + "protocol_id": 860 + }, + "minecraft:blue_glazed_terracotta": { + "protocol_id": 502 + }, + "minecraft:blue_ice": { + "protocol_id": 570 + }, + "minecraft:blue_orchid": { + "protocol_id": 185 + }, + "minecraft:blue_shulker_box": { + "protocol_id": 486 + }, + "minecraft:blue_stained_glass": { + "protocol_id": 434 + }, + "minecraft:blue_stained_glass_pane": { + "protocol_id": 450 + }, + "minecraft:blue_terracotta": { + "protocol_id": 390 + }, + "minecraft:blue_wool": { + "protocol_id": 178 + }, + "minecraft:bone": { + "protocol_id": 866 + }, + "minecraft:bone_block": { + "protocol_id": 472 + }, + "minecraft:bone_meal": { + "protocol_id": 865 + }, + "minecraft:book": { + "protocol_id": 830 + }, + "minecraft:bookshelf": { + "protocol_id": 245 + }, + "minecraft:bow": { + "protocol_id": 718 + }, + "minecraft:bowl": { + "protocol_id": 766 + }, + "minecraft:brain_coral": { + "protocol_id": 551 + }, + "minecraft:brain_coral_block": { + "protocol_id": 546 + }, + "minecraft:brain_coral_fan": { + "protocol_id": 561 + }, + "minecraft:bread": { + "protocol_id": 773 + }, + "minecraft:brewing_stand": { + "protocol_id": 908 + }, + "minecraft:brick": { + "protocol_id": 826 + }, + "minecraft:brick_slab": { + "protocol_id": 229 + }, + "minecraft:brick_stairs": { + "protocol_id": 316 + }, + "minecraft:brick_wall": { + "protocol_id": 351 + }, + "minecraft:bricks": { + "protocol_id": 244 + }, + "minecraft:brown_banner": { + "protocol_id": 1037 + }, + "minecraft:brown_bed": { + "protocol_id": 881 + }, + "minecraft:brown_candle": { + "protocol_id": 1138 + }, + "minecraft:brown_carpet": { + "protocol_id": 410 + }, + "minecraft:brown_concrete": { + "protocol_id": 519 + }, + "minecraft:brown_concrete_powder": { + "protocol_id": 535 + }, + "minecraft:brown_dye": { + "protocol_id": 861 + }, + "minecraft:brown_glazed_terracotta": { + "protocol_id": 503 + }, + "minecraft:brown_mushroom": { + "protocol_id": 197 + }, + "minecraft:brown_mushroom_block": { + "protocol_id": 307 + }, + "minecraft:brown_shulker_box": { + "protocol_id": 487 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 435 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 451 + }, + "minecraft:brown_terracotta": { + "protocol_id": 391 + }, + "minecraft:brown_wool": { + "protocol_id": 179 + }, + "minecraft:bubble_coral": { + "protocol_id": 552 + }, + "minecraft:bubble_coral_block": { + "protocol_id": 547 + }, + "minecraft:bubble_coral_fan": { + "protocol_id": 562 + }, + "minecraft:bucket": { + "protocol_id": 813 + }, + "minecraft:budding_amethyst": { + "protocol_id": 67 + }, + "minecraft:bundle": { + "protocol_id": 835 + }, + "minecraft:cactus": { + "protocol_id": 265 + }, + "minecraft:cake": { + "protocol_id": 868 + }, + "minecraft:calcite": { + "protocol_id": 11 + }, + "minecraft:campfire": { + "protocol_id": 1102 + }, + "minecraft:candle": { + "protocol_id": 1125 + }, + "minecraft:carrot": { + "protocol_id": 990 + }, + "minecraft:carrot_on_a_stick": { + "protocol_id": 695 + }, + "minecraft:cartography_table": { + "protocol_id": 1092 + }, + "minecraft:carved_pumpkin": { + "protocol_id": 278 + }, + "minecraft:cat_spawn_egg": { + "protocol_id": 917 + }, + "minecraft:cauldron": { + "protocol_id": 909 + }, + "minecraft:cave_spider_spawn_egg": { + "protocol_id": 918 + }, + "minecraft:chain": { + "protocol_id": 311 + }, + "minecraft:chain_command_block": { + "protocol_id": 467 + }, + "minecraft:chainmail_boots": { + "protocol_id": 781 + }, + "minecraft:chainmail_chestplate": { + "protocol_id": 779 + }, + "minecraft:chainmail_helmet": { + "protocol_id": 778 + }, + "minecraft:chainmail_leggings": { + "protocol_id": 780 + }, + "minecraft:charcoal": { + "protocol_id": 721 + }, + "minecraft:chest": { + "protocol_id": 256 + }, + "minecraft:chest_minecart": { + "protocol_id": 691 + }, + "minecraft:chicken": { + "protocol_id": 894 + }, + "minecraft:chicken_spawn_egg": { + "protocol_id": 919 + }, + "minecraft:chipped_anvil": { + "protocol_id": 372 + }, + "minecraft:chiseled_deepslate": { + "protocol_id": 305 + }, + "minecraft:chiseled_nether_bricks": { + "protocol_id": 323 + }, + "minecraft:chiseled_polished_blackstone": { + "protocol_id": 1119 + }, + "minecraft:chiseled_quartz_block": { + "protocol_id": 374 + }, + "minecraft:chiseled_red_sandstone": { + "protocol_id": 463 + }, + "minecraft:chiseled_sandstone": { + "protocol_id": 157 + }, + "minecraft:chiseled_stone_bricks": { + "protocol_id": 298 + }, + "minecraft:chorus_flower": { + "protocol_id": 251 + }, + "minecraft:chorus_fruit": { + "protocol_id": 1042 + }, + "minecraft:chorus_plant": { + "protocol_id": 250 + }, + "minecraft:clay": { + "protocol_id": 266 + }, + "minecraft:clay_ball": { + "protocol_id": 827 + }, + "minecraft:clock": { + "protocol_id": 837 + }, + "minecraft:coal": { + "protocol_id": 720 + }, + "minecraft:coal_block": { + "protocol_id": 62 + }, + "minecraft:coal_ore": { + "protocol_id": 43 + }, + "minecraft:coarse_dirt": { + "protocol_id": 16 + }, + "minecraft:cobbled_deepslate": { + "protocol_id": 9 + }, + "minecraft:cobbled_deepslate_slab": { + "protocol_id": 603 + }, + "minecraft:cobbled_deepslate_stairs": { + "protocol_id": 586 + }, + "minecraft:cobbled_deepslate_wall": { + "protocol_id": 367 + }, + "minecraft:cobblestone": { + "protocol_id": 22 + }, + "minecraft:cobblestone_slab": { + "protocol_id": 228 + }, + "minecraft:cobblestone_stairs": { + "protocol_id": 261 + }, + "minecraft:cobblestone_wall": { + "protocol_id": 349 + }, + "minecraft:cobweb": { + "protocol_id": 159 + }, + "minecraft:cocoa_beans": { + "protocol_id": 848 + }, + "minecraft:cod": { + "protocol_id": 840 + }, + "minecraft:cod_bucket": { + "protocol_id": 822 + }, + "minecraft:cod_spawn_egg": { + "protocol_id": 920 + }, + "minecraft:command_block": { + "protocol_id": 347 + }, + "minecraft:command_block_minecart": { + "protocol_id": 1022 + }, + "minecraft:comparator": { + "protocol_id": 612 + }, + "minecraft:compass": { + "protocol_id": 833 + }, + "minecraft:composter": { + "protocol_id": 1088 + }, + "minecraft:conduit": { + "protocol_id": 571 + }, + "minecraft:cooked_beef": { + "protocol_id": 893 + }, + "minecraft:cooked_chicken": { + "protocol_id": 895 + }, + "minecraft:cooked_cod": { + "protocol_id": 844 + }, + "minecraft:cooked_mutton": { + "protocol_id": 1024 + }, + "minecraft:cooked_porkchop": { + "protocol_id": 800 + }, + "minecraft:cooked_rabbit": { + "protocol_id": 1011 + }, + "minecraft:cooked_salmon": { + "protocol_id": 845 + }, + "minecraft:cookie": { + "protocol_id": 885 + }, + "minecraft:copper_block": { + "protocol_id": 69 + }, + "minecraft:copper_ingot": { + "protocol_id": 730 + }, + "minecraft:copper_ore": { + "protocol_id": 47 + }, + "minecraft:cornflower": { + "protocol_id": 193 + }, + "minecraft:cow_spawn_egg": { + "protocol_id": 921 + }, + "minecraft:cracked_deepslate_bricks": { + "protocol_id": 302 + }, + "minecraft:cracked_deepslate_tiles": { + "protocol_id": 304 + }, + "minecraft:cracked_nether_bricks": { + "protocol_id": 322 + }, + "minecraft:cracked_polished_blackstone_bricks": { + "protocol_id": 1123 + }, + "minecraft:cracked_stone_bricks": { + "protocol_id": 297 + }, + "minecraft:crafting_table": { + "protocol_id": 257 + }, + "minecraft:creeper_banner_pattern": { + "protocol_id": 1082 + }, + "minecraft:creeper_head": { + "protocol_id": 1000 + }, + "minecraft:creeper_spawn_egg": { + "protocol_id": 922 + }, + "minecraft:crimson_button": { + "protocol_id": 641 + }, + "minecraft:crimson_door": { + "protocol_id": 664 + }, + "minecraft:crimson_fence": { + "protocol_id": 275 + }, + "minecraft:crimson_fence_gate": { + "protocol_id": 683 + }, + "minecraft:crimson_fungus": { + "protocol_id": 199 + }, + "minecraft:crimson_hyphae": { + "protocol_id": 140 + }, + "minecraft:crimson_nylium": { + "protocol_id": 20 + }, + "minecraft:crimson_planks": { + "protocol_id": 30 + }, + "minecraft:crimson_pressure_plate": { + "protocol_id": 654 + }, + "minecraft:crimson_roots": { + "protocol_id": 201 + }, + "minecraft:crimson_sign": { + "protocol_id": 811 + }, + "minecraft:crimson_slab": { + "protocol_id": 221 + }, + "minecraft:crimson_stairs": { + "protocol_id": 345 + }, + "minecraft:crimson_stem": { + "protocol_id": 113 + }, + "minecraft:crimson_trapdoor": { + "protocol_id": 674 + }, + "minecraft:crossbow": { + "protocol_id": 1078 + }, + "minecraft:crying_obsidian": { + "protocol_id": 1111 + }, + "minecraft:cut_copper": { + "protocol_id": 76 + }, + "minecraft:cut_copper_slab": { + "protocol_id": 84 + }, + "minecraft:cut_copper_stairs": { + "protocol_id": 80 + }, + "minecraft:cut_red_sandstone": { + "protocol_id": 464 + }, + "minecraft:cut_red_sandstone_slab": { + "protocol_id": 235 + }, + "minecraft:cut_sandstone": { + "protocol_id": 158 + }, + "minecraft:cut_sandstone_slab": { + "protocol_id": 226 + }, + "minecraft:cyan_banner": { + "protocol_id": 1034 + }, + "minecraft:cyan_bed": { + "protocol_id": 878 + }, + "minecraft:cyan_candle": { + "protocol_id": 1135 + }, + "minecraft:cyan_carpet": { + "protocol_id": 407 + }, + "minecraft:cyan_concrete": { + "protocol_id": 516 + }, + "minecraft:cyan_concrete_powder": { + "protocol_id": 532 + }, + "minecraft:cyan_dye": { + "protocol_id": 858 + }, + "minecraft:cyan_glazed_terracotta": { + "protocol_id": 500 + }, + "minecraft:cyan_shulker_box": { + "protocol_id": 484 + }, + "minecraft:cyan_stained_glass": { + "protocol_id": 432 + }, + "minecraft:cyan_stained_glass_pane": { + "protocol_id": 448 + }, + "minecraft:cyan_terracotta": { + "protocol_id": 388 + }, + "minecraft:cyan_wool": { + "protocol_id": 176 + }, + "minecraft:damaged_anvil": { + "protocol_id": 373 + }, + "minecraft:dandelion": { + "protocol_id": 183 + }, + "minecraft:dark_oak_boat": { + "protocol_id": 708 + }, + "minecraft:dark_oak_button": { + "protocol_id": 639 + }, + "minecraft:dark_oak_chest_boat": { + "protocol_id": 709 + }, + "minecraft:dark_oak_door": { + "protocol_id": 662 + }, + "minecraft:dark_oak_fence": { + "protocol_id": 273 + }, + "minecraft:dark_oak_fence_gate": { + "protocol_id": 681 + }, + "minecraft:dark_oak_leaves": { + "protocol_id": 147 + }, + "minecraft:dark_oak_log": { + "protocol_id": 109 + }, + "minecraft:dark_oak_planks": { + "protocol_id": 28 + }, + "minecraft:dark_oak_pressure_plate": { + "protocol_id": 652 + }, + "minecraft:dark_oak_sapling": { + "protocol_id": 37 + }, + "minecraft:dark_oak_sign": { + "protocol_id": 809 + }, + "minecraft:dark_oak_slab": { + "protocol_id": 219 + }, + "minecraft:dark_oak_stairs": { + "protocol_id": 343 + }, + "minecraft:dark_oak_trapdoor": { + "protocol_id": 672 + }, + "minecraft:dark_oak_wood": { + "protocol_id": 138 + }, + "minecraft:dark_prismarine": { + "protocol_id": 457 + }, + "minecraft:dark_prismarine_slab": { + "protocol_id": 239 + }, + "minecraft:dark_prismarine_stairs": { + "protocol_id": 460 + }, + "minecraft:daylight_detector": { + "protocol_id": 625 + }, + "minecraft:dead_brain_coral": { + "protocol_id": 555 + }, + "minecraft:dead_brain_coral_block": { + "protocol_id": 541 + }, + "minecraft:dead_brain_coral_fan": { + "protocol_id": 566 + }, + "minecraft:dead_bubble_coral": { + "protocol_id": 556 + }, + "minecraft:dead_bubble_coral_block": { + "protocol_id": 542 + }, + "minecraft:dead_bubble_coral_fan": { + "protocol_id": 567 + }, + "minecraft:dead_bush": { + "protocol_id": 164 + }, + "minecraft:dead_fire_coral": { + "protocol_id": 557 + }, + "minecraft:dead_fire_coral_block": { + "protocol_id": 543 + }, + "minecraft:dead_fire_coral_fan": { + "protocol_id": 568 + }, + "minecraft:dead_horn_coral": { + "protocol_id": 558 + }, + "minecraft:dead_horn_coral_block": { + "protocol_id": 544 + }, + "minecraft:dead_horn_coral_fan": { + "protocol_id": 569 + }, + "minecraft:dead_tube_coral": { + "protocol_id": 559 + }, + "minecraft:dead_tube_coral_block": { + "protocol_id": 540 + }, + "minecraft:dead_tube_coral_fan": { + "protocol_id": 565 + }, + "minecraft:debug_stick": { + "protocol_id": 1057 + }, + "minecraft:deepslate": { + "protocol_id": 8 + }, + "minecraft:deepslate_brick_slab": { + "protocol_id": 605 + }, + "minecraft:deepslate_brick_stairs": { + "protocol_id": 588 + }, + "minecraft:deepslate_brick_wall": { + "protocol_id": 369 + }, + "minecraft:deepslate_bricks": { + "protocol_id": 301 + }, + "minecraft:deepslate_coal_ore": { + "protocol_id": 44 + }, + "minecraft:deepslate_copper_ore": { + "protocol_id": 48 + }, + "minecraft:deepslate_diamond_ore": { + "protocol_id": 58 + }, + "minecraft:deepslate_emerald_ore": { + "protocol_id": 54 + }, + "minecraft:deepslate_gold_ore": { + "protocol_id": 50 + }, + "minecraft:deepslate_iron_ore": { + "protocol_id": 46 + }, + "minecraft:deepslate_lapis_ore": { + "protocol_id": 56 + }, + "minecraft:deepslate_redstone_ore": { + "protocol_id": 52 + }, + "minecraft:deepslate_tile_slab": { + "protocol_id": 606 + }, + "minecraft:deepslate_tile_stairs": { + "protocol_id": 589 + }, + "minecraft:deepslate_tile_wall": { + "protocol_id": 370 + }, + "minecraft:deepslate_tiles": { + "protocol_id": 303 + }, + "minecraft:detector_rail": { + "protocol_id": 686 + }, + "minecraft:diamond": { + "protocol_id": 722 + }, + "minecraft:diamond_axe": { + "protocol_id": 758 + }, + "minecraft:diamond_block": { + "protocol_id": 71 + }, + "minecraft:diamond_boots": { + "protocol_id": 789 + }, + "minecraft:diamond_chestplate": { + "protocol_id": 787 + }, + "minecraft:diamond_helmet": { + "protocol_id": 786 + }, + "minecraft:diamond_hoe": { + "protocol_id": 759 + }, + "minecraft:diamond_horse_armor": { + "protocol_id": 1018 + }, + "minecraft:diamond_leggings": { + "protocol_id": 788 + }, + "minecraft:diamond_ore": { + "protocol_id": 57 + }, + "minecraft:diamond_pickaxe": { + "protocol_id": 757 + }, + "minecraft:diamond_shovel": { + "protocol_id": 756 + }, + "minecraft:diamond_sword": { + "protocol_id": 755 + }, + "minecraft:diorite": { + "protocol_id": 4 + }, + "minecraft:diorite_slab": { + "protocol_id": 602 + }, + "minecraft:diorite_stairs": { + "protocol_id": 585 + }, + "minecraft:diorite_wall": { + "protocol_id": 363 + }, + "minecraft:dirt": { + "protocol_id": 15 + }, + "minecraft:dirt_path": { + "protocol_id": 416 + }, + "minecraft:disc_fragment_5": { + "protocol_id": 1073 + }, + "minecraft:dispenser": { + "protocol_id": 619 + }, + "minecraft:dolphin_spawn_egg": { + "protocol_id": 923 + }, + "minecraft:donkey_spawn_egg": { + "protocol_id": 924 + }, + "minecraft:dragon_breath": { + "protocol_id": 1047 + }, + "minecraft:dragon_egg": { + "protocol_id": 334 + }, + "minecraft:dragon_head": { + "protocol_id": 1001 + }, + "minecraft:dried_kelp": { + "protocol_id": 889 + }, + "minecraft:dried_kelp_block": { + "protocol_id": 828 + }, + "minecraft:dripstone_block": { + "protocol_id": 13 + }, + "minecraft:dropper": { + "protocol_id": 620 + }, + "minecraft:drowned_spawn_egg": { + "protocol_id": 925 + }, + "minecraft:echo_shard": { + "protocol_id": 1151 + }, + "minecraft:egg": { + "protocol_id": 832 + }, + "minecraft:elder_guardian_spawn_egg": { + "protocol_id": 926 + }, + "minecraft:elytra": { + "protocol_id": 697 + }, + "minecraft:emerald": { + "protocol_id": 723 + }, + "minecraft:emerald_block": { + "protocol_id": 337 + }, + "minecraft:emerald_ore": { + "protocol_id": 53 + }, + "minecraft:enchanted_book": { + "protocol_id": 1006 + }, + "minecraft:enchanted_golden_apple": { + "protocol_id": 803 + }, + "minecraft:enchanting_table": { + "protocol_id": 330 + }, + "minecraft:end_crystal": { + "protocol_id": 1041 + }, + "minecraft:end_portal_frame": { + "protocol_id": 331 + }, + "minecraft:end_rod": { + "protocol_id": 249 + }, + "minecraft:end_stone": { + "protocol_id": 332 + }, + "minecraft:end_stone_brick_slab": { + "protocol_id": 595 + }, + "minecraft:end_stone_brick_stairs": { + "protocol_id": 577 + }, + "minecraft:end_stone_brick_wall": { + "protocol_id": 362 + }, + "minecraft:end_stone_bricks": { + "protocol_id": 333 + }, + "minecraft:ender_chest": { + "protocol_id": 336 + }, + "minecraft:ender_eye": { + "protocol_id": 910 + }, + "minecraft:ender_pearl": { + "protocol_id": 897 + }, + "minecraft:enderman_spawn_egg": { + "protocol_id": 927 + }, + "minecraft:endermite_spawn_egg": { + "protocol_id": 928 + }, + "minecraft:evoker_spawn_egg": { + "protocol_id": 929 + }, + "minecraft:experience_bottle": { + "protocol_id": 983 + }, + "minecraft:exposed_copper": { + "protocol_id": 73 + }, + "minecraft:exposed_cut_copper": { + "protocol_id": 77 + }, + "minecraft:exposed_cut_copper_slab": { + "protocol_id": 85 + }, + "minecraft:exposed_cut_copper_stairs": { + "protocol_id": 81 + }, + "minecraft:farmland": { + "protocol_id": 258 + }, + "minecraft:feather": { + "protocol_id": 769 + }, + "minecraft:fermented_spider_eye": { + "protocol_id": 905 + }, + "minecraft:fern": { + "protocol_id": 161 + }, + "minecraft:filled_map": { + "protocol_id": 886 + }, + "minecraft:fire_charge": { + "protocol_id": 984 + }, + "minecraft:fire_coral": { + "protocol_id": 553 + }, + "minecraft:fire_coral_block": { + "protocol_id": 548 + }, + "minecraft:fire_coral_fan": { + "protocol_id": 563 + }, + "minecraft:firework_rocket": { + "protocol_id": 1004 + }, + "minecraft:firework_star": { + "protocol_id": 1005 + }, + "minecraft:fishing_rod": { + "protocol_id": 836 + }, + "minecraft:fletching_table": { + "protocol_id": 1093 + }, + "minecraft:flint": { + "protocol_id": 798 + }, + "minecraft:flint_and_steel": { + "protocol_id": 716 + }, + "minecraft:flower_banner_pattern": { + "protocol_id": 1081 + }, + "minecraft:flower_pot": { + "protocol_id": 989 + }, + "minecraft:flowering_azalea": { + "protocol_id": 163 + }, + "minecraft:flowering_azalea_leaves": { + "protocol_id": 150 + }, + "minecraft:fox_spawn_egg": { + "protocol_id": 930 + }, + "minecraft:frog_spawn_egg": { + "protocol_id": 931 + }, + "minecraft:frogspawn": { + "protocol_id": 1150 + }, + "minecraft:furnace": { + "protocol_id": 259 + }, + "minecraft:furnace_minecart": { + "protocol_id": 692 + }, + "minecraft:ghast_spawn_egg": { + "protocol_id": 932 + }, + "minecraft:ghast_tear": { + "protocol_id": 899 + }, + "minecraft:gilded_blackstone": { + "protocol_id": 1115 + }, + "minecraft:glass": { + "protocol_id": 153 + }, + "minecraft:glass_bottle": { + "protocol_id": 903 + }, + "minecraft:glass_pane": { + "protocol_id": 312 + }, + "minecraft:glistering_melon_slice": { + "protocol_id": 911 + }, + "minecraft:globe_banner_pattern": { + "protocol_id": 1085 + }, + "minecraft:glow_berries": { + "protocol_id": 1101 + }, + "minecraft:glow_ink_sac": { + "protocol_id": 847 + }, + "minecraft:glow_item_frame": { + "protocol_id": 988 + }, + "minecraft:glow_lichen": { + "protocol_id": 315 + }, + "minecraft:glow_squid_spawn_egg": { + "protocol_id": 933 + }, + "minecraft:glowstone": { + "protocol_id": 287 + }, + "minecraft:glowstone_dust": { + "protocol_id": 839 + }, + "minecraft:goat_horn": { + "protocol_id": 1087 + }, + "minecraft:goat_spawn_egg": { + "protocol_id": 934 + }, + "minecraft:gold_block": { + "protocol_id": 70 + }, + "minecraft:gold_ingot": { + "protocol_id": 732 + }, + "minecraft:gold_nugget": { + "protocol_id": 900 + }, + "minecraft:gold_ore": { + "protocol_id": 49 + }, + "minecraft:golden_apple": { + "protocol_id": 802 + }, + "minecraft:golden_axe": { + "protocol_id": 748 + }, + "minecraft:golden_boots": { + "protocol_id": 793 + }, + "minecraft:golden_carrot": { + "protocol_id": 995 + }, + "minecraft:golden_chestplate": { + "protocol_id": 791 + }, + "minecraft:golden_helmet": { + "protocol_id": 790 + }, + "minecraft:golden_hoe": { + "protocol_id": 749 + }, + "minecraft:golden_horse_armor": { + "protocol_id": 1017 + }, + "minecraft:golden_leggings": { + "protocol_id": 792 + }, + "minecraft:golden_pickaxe": { + "protocol_id": 747 + }, + "minecraft:golden_shovel": { + "protocol_id": 746 + }, + "minecraft:golden_sword": { + "protocol_id": 745 + }, + "minecraft:granite": { + "protocol_id": 2 + }, + "minecraft:granite_slab": { + "protocol_id": 598 + }, + "minecraft:granite_stairs": { + "protocol_id": 581 + }, + "minecraft:granite_wall": { + "protocol_id": 355 + }, + "minecraft:grass": { + "protocol_id": 160 + }, + "minecraft:grass_block": { + "protocol_id": 14 + }, + "minecraft:gravel": { + "protocol_id": 42 + }, + "minecraft:gray_banner": { + "protocol_id": 1032 + }, + "minecraft:gray_bed": { + "protocol_id": 876 + }, + "minecraft:gray_candle": { + "protocol_id": 1133 + }, + "minecraft:gray_carpet": { + "protocol_id": 405 + }, + "minecraft:gray_concrete": { + "protocol_id": 514 + }, + "minecraft:gray_concrete_powder": { + "protocol_id": 530 + }, + "minecraft:gray_dye": { + "protocol_id": 856 + }, + "minecraft:gray_glazed_terracotta": { + "protocol_id": 498 + }, + "minecraft:gray_shulker_box": { + "protocol_id": 482 + }, + "minecraft:gray_stained_glass": { + "protocol_id": 430 + }, + "minecraft:gray_stained_glass_pane": { + "protocol_id": 446 + }, + "minecraft:gray_terracotta": { + "protocol_id": 386 + }, + "minecraft:gray_wool": { + "protocol_id": 174 + }, + "minecraft:green_banner": { + "protocol_id": 1038 + }, + "minecraft:green_bed": { + "protocol_id": 882 + }, + "minecraft:green_candle": { + "protocol_id": 1139 + }, + "minecraft:green_carpet": { + "protocol_id": 411 + }, + "minecraft:green_concrete": { + "protocol_id": 520 + }, + "minecraft:green_concrete_powder": { + "protocol_id": 536 + }, + "minecraft:green_dye": { + "protocol_id": 862 + }, + "minecraft:green_glazed_terracotta": { + "protocol_id": 504 + }, + "minecraft:green_shulker_box": { + "protocol_id": 488 + }, + "minecraft:green_stained_glass": { + "protocol_id": 436 + }, + "minecraft:green_stained_glass_pane": { + "protocol_id": 452 + }, + "minecraft:green_terracotta": { + "protocol_id": 392 + }, + "minecraft:green_wool": { + "protocol_id": 180 + }, + "minecraft:grindstone": { + "protocol_id": 1094 + }, + "minecraft:guardian_spawn_egg": { + "protocol_id": 935 + }, + "minecraft:gunpowder": { + "protocol_id": 770 + }, + "minecraft:hanging_roots": { + "protocol_id": 210 + }, + "minecraft:hay_block": { + "protocol_id": 397 + }, + "minecraft:heart_of_the_sea": { + "protocol_id": 1077 + }, + "minecraft:heavy_weighted_pressure_plate": { + "protocol_id": 646 + }, + "minecraft:hoglin_spawn_egg": { + "protocol_id": 936 + }, + "minecraft:honey_block": { + "protocol_id": 616 + }, + "minecraft:honey_bottle": { + "protocol_id": 1108 + }, + "minecraft:honeycomb": { + "protocol_id": 1105 + }, + "minecraft:honeycomb_block": { + "protocol_id": 1109 + }, + "minecraft:hopper": { + "protocol_id": 618 + }, + "minecraft:hopper_minecart": { + "protocol_id": 694 + }, + "minecraft:horn_coral": { + "protocol_id": 554 + }, + "minecraft:horn_coral_block": { + "protocol_id": 549 + }, + "minecraft:horn_coral_fan": { + "protocol_id": 564 + }, + "minecraft:horse_spawn_egg": { + "protocol_id": 937 + }, + "minecraft:husk_spawn_egg": { + "protocol_id": 938 + }, + "minecraft:ice": { + "protocol_id": 263 + }, + "minecraft:infested_chiseled_stone_bricks": { + "protocol_id": 293 + }, + "minecraft:infested_cobblestone": { + "protocol_id": 289 + }, + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 292 + }, + "minecraft:infested_deepslate": { + "protocol_id": 294 + }, + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 291 + }, + "minecraft:infested_stone": { + "protocol_id": 288 + }, + "minecraft:infested_stone_bricks": { + "protocol_id": 290 + }, + "minecraft:ink_sac": { + "protocol_id": 846 + }, + "minecraft:iron_axe": { + "protocol_id": 753 + }, + "minecraft:iron_bars": { + "protocol_id": 310 + }, + "minecraft:iron_block": { + "protocol_id": 68 + }, + "minecraft:iron_boots": { + "protocol_id": 785 + }, + "minecraft:iron_chestplate": { + "protocol_id": 783 + }, + "minecraft:iron_door": { + "protocol_id": 656 + }, + "minecraft:iron_helmet": { + "protocol_id": 782 + }, + "minecraft:iron_hoe": { + "protocol_id": 754 + }, + "minecraft:iron_horse_armor": { + "protocol_id": 1016 + }, + "minecraft:iron_ingot": { + "protocol_id": 728 + }, + "minecraft:iron_leggings": { + "protocol_id": 784 + }, + "minecraft:iron_nugget": { + "protocol_id": 1055 + }, + "minecraft:iron_ore": { + "protocol_id": 45 + }, + "minecraft:iron_pickaxe": { + "protocol_id": 752 + }, + "minecraft:iron_shovel": { + "protocol_id": 751 + }, + "minecraft:iron_sword": { + "protocol_id": 750 + }, + "minecraft:iron_trapdoor": { + "protocol_id": 666 + }, + "minecraft:item_frame": { + "protocol_id": 987 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 279 + }, + "minecraft:jigsaw": { + "protocol_id": 713 + }, + "minecraft:jukebox": { + "protocol_id": 267 + }, + "minecraft:jungle_boat": { + "protocol_id": 704 + }, + "minecraft:jungle_button": { + "protocol_id": 637 + }, + "minecraft:jungle_chest_boat": { + "protocol_id": 705 + }, + "minecraft:jungle_door": { + "protocol_id": 660 + }, + "minecraft:jungle_fence": { + "protocol_id": 271 + }, + "minecraft:jungle_fence_gate": { + "protocol_id": 679 + }, + "minecraft:jungle_leaves": { + "protocol_id": 145 + }, + "minecraft:jungle_log": { + "protocol_id": 107 + }, + "minecraft:jungle_planks": { + "protocol_id": 26 + }, + "minecraft:jungle_pressure_plate": { + "protocol_id": 650 + }, + "minecraft:jungle_sapling": { + "protocol_id": 35 + }, + "minecraft:jungle_sign": { + "protocol_id": 807 + }, + "minecraft:jungle_slab": { + "protocol_id": 217 + }, + "minecraft:jungle_stairs": { + "protocol_id": 341 + }, + "minecraft:jungle_trapdoor": { + "protocol_id": 670 + }, + "minecraft:jungle_wood": { + "protocol_id": 136 + }, + "minecraft:kelp": { + "protocol_id": 207 + }, + "minecraft:knowledge_book": { + "protocol_id": 1056 + }, + "minecraft:ladder": { + "protocol_id": 260 + }, + "minecraft:lantern": { + "protocol_id": 1098 + }, + "minecraft:lapis_block": { + "protocol_id": 155 + }, + "minecraft:lapis_lazuli": { + "protocol_id": 724 + }, + "minecraft:lapis_ore": { + "protocol_id": 55 + }, + "minecraft:large_amethyst_bud": { + "protocol_id": 1144 + }, + "minecraft:large_fern": { + "protocol_id": 422 + }, + "minecraft:lava_bucket": { + "protocol_id": 815 + }, + "minecraft:lead": { + "protocol_id": 1020 + }, + "minecraft:leather": { + "protocol_id": 818 + }, + "minecraft:leather_boots": { + "protocol_id": 777 + }, + "minecraft:leather_chestplate": { + "protocol_id": 775 + }, + "minecraft:leather_helmet": { + "protocol_id": 774 + }, + "minecraft:leather_horse_armor": { + "protocol_id": 1019 + }, + "minecraft:leather_leggings": { + "protocol_id": 776 + }, + "minecraft:lectern": { + "protocol_id": 621 + }, + "minecraft:lever": { + "protocol_id": 623 + }, + "minecraft:light": { + "protocol_id": 396 + }, + "minecraft:light_blue_banner": { + "protocol_id": 1028 + }, + "minecraft:light_blue_bed": { + "protocol_id": 872 + }, + "minecraft:light_blue_candle": { + "protocol_id": 1129 + }, + "minecraft:light_blue_carpet": { + "protocol_id": 401 + }, + "minecraft:light_blue_concrete": { + "protocol_id": 510 + }, + "minecraft:light_blue_concrete_powder": { + "protocol_id": 526 + }, + "minecraft:light_blue_dye": { + "protocol_id": 852 + }, + "minecraft:light_blue_glazed_terracotta": { + "protocol_id": 494 + }, + "minecraft:light_blue_shulker_box": { + "protocol_id": 478 + }, + "minecraft:light_blue_stained_glass": { + "protocol_id": 426 + }, + "minecraft:light_blue_stained_glass_pane": { + "protocol_id": 442 + }, + "minecraft:light_blue_terracotta": { + "protocol_id": 382 + }, + "minecraft:light_blue_wool": { + "protocol_id": 170 + }, + "minecraft:light_gray_banner": { + "protocol_id": 1033 + }, + "minecraft:light_gray_bed": { + "protocol_id": 877 + }, + "minecraft:light_gray_candle": { + "protocol_id": 1134 + }, + "minecraft:light_gray_carpet": { + "protocol_id": 406 + }, + "minecraft:light_gray_concrete": { + "protocol_id": 515 + }, + "minecraft:light_gray_concrete_powder": { + "protocol_id": 531 + }, + "minecraft:light_gray_dye": { + "protocol_id": 857 + }, + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 499 + }, + "minecraft:light_gray_shulker_box": { + "protocol_id": 483 + }, + "minecraft:light_gray_stained_glass": { + "protocol_id": 431 + }, + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 447 + }, + "minecraft:light_gray_terracotta": { + "protocol_id": 387 + }, + "minecraft:light_gray_wool": { + "protocol_id": 175 + }, + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 645 + }, + "minecraft:lightning_rod": { + "protocol_id": 624 + }, + "minecraft:lilac": { + "protocol_id": 418 + }, + "minecraft:lily_of_the_valley": { + "protocol_id": 194 + }, + "minecraft:lily_pad": { + "protocol_id": 320 + }, + "minecraft:lime_banner": { + "protocol_id": 1030 + }, + "minecraft:lime_bed": { + "protocol_id": 874 + }, + "minecraft:lime_candle": { + "protocol_id": 1131 + }, + "minecraft:lime_carpet": { + "protocol_id": 403 + }, + "minecraft:lime_concrete": { + "protocol_id": 512 + }, + "minecraft:lime_concrete_powder": { + "protocol_id": 528 + }, + "minecraft:lime_dye": { + "protocol_id": 854 + }, + "minecraft:lime_glazed_terracotta": { + "protocol_id": 496 + }, + "minecraft:lime_shulker_box": { + "protocol_id": 480 + }, + "minecraft:lime_stained_glass": { + "protocol_id": 428 + }, + "minecraft:lime_stained_glass_pane": { + "protocol_id": 444 + }, + "minecraft:lime_terracotta": { + "protocol_id": 384 + }, + "minecraft:lime_wool": { + "protocol_id": 172 + }, + "minecraft:lingering_potion": { + "protocol_id": 1051 + }, + "minecraft:llama_spawn_egg": { + "protocol_id": 939 + }, + "minecraft:lodestone": { + "protocol_id": 1110 + }, + "minecraft:loom": { + "protocol_id": 1080 + }, + "minecraft:magenta_banner": { + "protocol_id": 1027 + }, + "minecraft:magenta_bed": { + "protocol_id": 871 + }, + "minecraft:magenta_candle": { + "protocol_id": 1128 + }, + "minecraft:magenta_carpet": { + "protocol_id": 400 + }, + "minecraft:magenta_concrete": { + "protocol_id": 509 + }, + "minecraft:magenta_concrete_powder": { + "protocol_id": 525 + }, + "minecraft:magenta_dye": { + "protocol_id": 851 + }, + "minecraft:magenta_glazed_terracotta": { + "protocol_id": 493 + }, + "minecraft:magenta_shulker_box": { + "protocol_id": 477 + }, + "minecraft:magenta_stained_glass": { + "protocol_id": 425 + }, + "minecraft:magenta_stained_glass_pane": { + "protocol_id": 441 + }, + "minecraft:magenta_terracotta": { + "protocol_id": 381 + }, + "minecraft:magenta_wool": { + "protocol_id": 169 + }, + "minecraft:magma_block": { + "protocol_id": 468 + }, + "minecraft:magma_cream": { + "protocol_id": 907 + }, + "minecraft:magma_cube_spawn_egg": { + "protocol_id": 940 + }, + "minecraft:mangrove_boat": { + "protocol_id": 710 + }, + "minecraft:mangrove_button": { + "protocol_id": 640 + }, + "minecraft:mangrove_chest_boat": { + "protocol_id": 711 + }, + "minecraft:mangrove_door": { + "protocol_id": 663 + }, + "minecraft:mangrove_fence": { + "protocol_id": 274 + }, + "minecraft:mangrove_fence_gate": { + "protocol_id": 682 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 148 + }, + "minecraft:mangrove_log": { + "protocol_id": 110 + }, + "minecraft:mangrove_planks": { + "protocol_id": 29 + }, + "minecraft:mangrove_pressure_plate": { + "protocol_id": 653 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 38 + }, + "minecraft:mangrove_roots": { + "protocol_id": 111 + }, + "minecraft:mangrove_sign": { + "protocol_id": 810 + }, + "minecraft:mangrove_slab": { + "protocol_id": 220 + }, + "minecraft:mangrove_stairs": { + "protocol_id": 344 + }, + "minecraft:mangrove_trapdoor": { + "protocol_id": 673 + }, + "minecraft:mangrove_wood": { + "protocol_id": 139 + }, + "minecraft:map": { + "protocol_id": 994 + }, + "minecraft:medium_amethyst_bud": { + "protocol_id": 1143 + }, + "minecraft:melon": { + "protocol_id": 313 + }, + "minecraft:melon_seeds": { + "protocol_id": 891 + }, + "minecraft:melon_slice": { + "protocol_id": 888 + }, + "minecraft:milk_bucket": { + "protocol_id": 819 + }, + "minecraft:minecart": { + "protocol_id": 690 + }, + "minecraft:mojang_banner_pattern": { + "protocol_id": 1084 + }, + "minecraft:mooshroom_spawn_egg": { + "protocol_id": 941 + }, + "minecraft:moss_block": { + "protocol_id": 209 + }, + "minecraft:moss_carpet": { + "protocol_id": 208 + }, + "minecraft:mossy_cobblestone": { + "protocol_id": 246 + }, + "minecraft:mossy_cobblestone_slab": { + "protocol_id": 594 + }, + "minecraft:mossy_cobblestone_stairs": { + "protocol_id": 576 + }, + "minecraft:mossy_cobblestone_wall": { + "protocol_id": 350 + }, + "minecraft:mossy_stone_brick_slab": { + "protocol_id": 592 + }, + "minecraft:mossy_stone_brick_stairs": { + "protocol_id": 574 + }, + "minecraft:mossy_stone_brick_wall": { + "protocol_id": 354 + }, + "minecraft:mossy_stone_bricks": { + "protocol_id": 296 + }, + "minecraft:mud": { + "protocol_id": 19 + }, + "minecraft:mud_brick_slab": { + "protocol_id": 231 + }, + "minecraft:mud_brick_stairs": { + "protocol_id": 318 + }, + "minecraft:mud_brick_wall": { + "protocol_id": 357 + }, + "minecraft:mud_bricks": { + "protocol_id": 300 + }, + "minecraft:muddy_mangrove_roots": { + "protocol_id": 112 + }, + "minecraft:mule_spawn_egg": { + "protocol_id": 942 + }, + "minecraft:mushroom_stem": { + "protocol_id": 309 + }, + "minecraft:mushroom_stew": { + "protocol_id": 767 + }, + "minecraft:music_disc_11": { + "protocol_id": 1068 + }, + "minecraft:music_disc_13": { + "protocol_id": 1058 + }, + "minecraft:music_disc_5": { + "protocol_id": 1071 + }, + "minecraft:music_disc_blocks": { + "protocol_id": 1060 + }, + "minecraft:music_disc_cat": { + "protocol_id": 1059 + }, + "minecraft:music_disc_chirp": { + "protocol_id": 1061 + }, + "minecraft:music_disc_far": { + "protocol_id": 1062 + }, + "minecraft:music_disc_mall": { + "protocol_id": 1063 + }, + "minecraft:music_disc_mellohi": { + "protocol_id": 1064 + }, + "minecraft:music_disc_otherside": { + "protocol_id": 1070 + }, + "minecraft:music_disc_pigstep": { + "protocol_id": 1072 + }, + "minecraft:music_disc_stal": { + "protocol_id": 1065 + }, + "minecraft:music_disc_strad": { + "protocol_id": 1066 + }, + "minecraft:music_disc_wait": { + "protocol_id": 1069 + }, + "minecraft:music_disc_ward": { + "protocol_id": 1067 + }, + "minecraft:mutton": { + "protocol_id": 1023 + }, + "minecraft:mycelium": { + "protocol_id": 319 + }, + "minecraft:name_tag": { + "protocol_id": 1021 + }, + "minecraft:nautilus_shell": { + "protocol_id": 1076 + }, + "minecraft:nether_brick": { + "protocol_id": 1007 + }, + "minecraft:nether_brick_fence": { + "protocol_id": 324 + }, + "minecraft:nether_brick_slab": { + "protocol_id": 232 + }, + "minecraft:nether_brick_stairs": { + "protocol_id": 325 + }, + "minecraft:nether_brick_wall": { + "protocol_id": 358 + }, + "minecraft:nether_bricks": { + "protocol_id": 321 + }, + "minecraft:nether_gold_ore": { + "protocol_id": 59 + }, + "minecraft:nether_quartz_ore": { + "protocol_id": 60 + }, + "minecraft:nether_sprouts": { + "protocol_id": 203 + }, + "minecraft:nether_star": { + "protocol_id": 1002 + }, + "minecraft:nether_wart": { + "protocol_id": 901 + }, + "minecraft:nether_wart_block": { + "protocol_id": 469 + }, + "minecraft:netherite_axe": { + "protocol_id": 763 + }, + "minecraft:netherite_block": { + "protocol_id": 72 + }, + "minecraft:netherite_boots": { + "protocol_id": 797 + }, + "minecraft:netherite_chestplate": { + "protocol_id": 795 + }, + "minecraft:netherite_helmet": { + "protocol_id": 794 + }, + "minecraft:netherite_hoe": { + "protocol_id": 764 + }, + "minecraft:netherite_ingot": { + "protocol_id": 733 + }, + "minecraft:netherite_leggings": { + "protocol_id": 796 + }, + "minecraft:netherite_pickaxe": { + "protocol_id": 762 + }, + "minecraft:netherite_scrap": { + "protocol_id": 734 + }, + "minecraft:netherite_shovel": { + "protocol_id": 761 + }, + "minecraft:netherite_sword": { + "protocol_id": 760 + }, + "minecraft:netherrack": { + "protocol_id": 280 + }, + "minecraft:note_block": { + "protocol_id": 631 + }, + "minecraft:oak_boat": { + "protocol_id": 698 + }, + "minecraft:oak_button": { + "protocol_id": 634 + }, + "minecraft:oak_chest_boat": { + "protocol_id": 699 + }, + "minecraft:oak_door": { + "protocol_id": 657 + }, + "minecraft:oak_fence": { + "protocol_id": 268 + }, + "minecraft:oak_fence_gate": { + "protocol_id": 676 + }, + "minecraft:oak_leaves": { + "protocol_id": 142 + }, + "minecraft:oak_log": { + "protocol_id": 104 + }, + "minecraft:oak_planks": { + "protocol_id": 23 + }, + "minecraft:oak_pressure_plate": { + "protocol_id": 647 + }, + "minecraft:oak_sapling": { + "protocol_id": 32 + }, + "minecraft:oak_sign": { + "protocol_id": 804 + }, + "minecraft:oak_slab": { + "protocol_id": 214 + }, + "minecraft:oak_stairs": { + "protocol_id": 338 + }, + "minecraft:oak_trapdoor": { + "protocol_id": 667 + }, + "minecraft:oak_wood": { + "protocol_id": 133 + }, + "minecraft:observer": { + "protocol_id": 617 + }, + "minecraft:obsidian": { + "protocol_id": 247 + }, + "minecraft:ocelot_spawn_egg": { + "protocol_id": 943 + }, + "minecraft:ochre_froglight": { + "protocol_id": 1147 + }, + "minecraft:orange_banner": { + "protocol_id": 1026 + }, + "minecraft:orange_bed": { + "protocol_id": 870 + }, + "minecraft:orange_candle": { + "protocol_id": 1127 + }, + "minecraft:orange_carpet": { + "protocol_id": 399 + }, + "minecraft:orange_concrete": { + "protocol_id": 508 + }, + "minecraft:orange_concrete_powder": { + "protocol_id": 524 + }, + "minecraft:orange_dye": { + "protocol_id": 850 + }, + "minecraft:orange_glazed_terracotta": { + "protocol_id": 492 + }, + "minecraft:orange_shulker_box": { + "protocol_id": 476 + }, + "minecraft:orange_stained_glass": { + "protocol_id": 424 + }, + "minecraft:orange_stained_glass_pane": { + "protocol_id": 440 + }, + "minecraft:orange_terracotta": { + "protocol_id": 380 + }, + "minecraft:orange_tulip": { + "protocol_id": 189 + }, + "minecraft:orange_wool": { + "protocol_id": 168 + }, + "minecraft:oxeye_daisy": { + "protocol_id": 192 + }, + "minecraft:oxidized_copper": { + "protocol_id": 75 + }, + "minecraft:oxidized_cut_copper": { + "protocol_id": 79 + }, + "minecraft:oxidized_cut_copper_slab": { + "protocol_id": 87 + }, + "minecraft:oxidized_cut_copper_stairs": { + "protocol_id": 83 + }, + "minecraft:packed_ice": { + "protocol_id": 415 + }, + "minecraft:packed_mud": { + "protocol_id": 299 + }, + "minecraft:painting": { + "protocol_id": 801 + }, + "minecraft:panda_spawn_egg": { + "protocol_id": 944 + }, + "minecraft:paper": { + "protocol_id": 829 + }, + "minecraft:parrot_spawn_egg": { + "protocol_id": 945 + }, + "minecraft:pearlescent_froglight": { + "protocol_id": 1149 + }, + "minecraft:peony": { + "protocol_id": 420 + }, + "minecraft:petrified_oak_slab": { + "protocol_id": 227 + }, + "minecraft:phantom_membrane": { + "protocol_id": 1075 + }, + "minecraft:phantom_spawn_egg": { + "protocol_id": 946 + }, + "minecraft:pig_spawn_egg": { + "protocol_id": 947 + }, + "minecraft:piglin_banner_pattern": { + "protocol_id": 1086 + }, + "minecraft:piglin_brute_spawn_egg": { + "protocol_id": 949 + }, + "minecraft:piglin_spawn_egg": { + "protocol_id": 948 + }, + "minecraft:pillager_spawn_egg": { + "protocol_id": 950 + }, + "minecraft:pink_banner": { + "protocol_id": 1031 + }, + "minecraft:pink_bed": { + "protocol_id": 875 + }, + "minecraft:pink_candle": { + "protocol_id": 1132 + }, + "minecraft:pink_carpet": { + "protocol_id": 404 + }, + "minecraft:pink_concrete": { + "protocol_id": 513 + }, + "minecraft:pink_concrete_powder": { + "protocol_id": 529 + }, + "minecraft:pink_dye": { + "protocol_id": 855 + }, + "minecraft:pink_glazed_terracotta": { + "protocol_id": 497 + }, + "minecraft:pink_shulker_box": { + "protocol_id": 481 + }, + "minecraft:pink_stained_glass": { + "protocol_id": 429 + }, + "minecraft:pink_stained_glass_pane": { + "protocol_id": 445 + }, + "minecraft:pink_terracotta": { + "protocol_id": 385 + }, + "minecraft:pink_tulip": { + "protocol_id": 191 + }, + "minecraft:pink_wool": { + "protocol_id": 173 + }, + "minecraft:piston": { + "protocol_id": 613 + }, + "minecraft:player_head": { + "protocol_id": 998 + }, + "minecraft:podzol": { + "protocol_id": 17 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 1146 + }, + "minecraft:poisonous_potato": { + "protocol_id": 993 + }, + "minecraft:polar_bear_spawn_egg": { + "protocol_id": 951 + }, + "minecraft:polished_andesite": { + "protocol_id": 7 + }, + "minecraft:polished_andesite_slab": { + "protocol_id": 601 + }, + "minecraft:polished_andesite_stairs": { + "protocol_id": 584 + }, + "minecraft:polished_basalt": { + "protocol_id": 284 + }, + "minecraft:polished_blackstone": { + "protocol_id": 1116 + }, + "minecraft:polished_blackstone_brick_slab": { + "protocol_id": 1121 + }, + "minecraft:polished_blackstone_brick_stairs": { + "protocol_id": 1122 + }, + "minecraft:polished_blackstone_brick_wall": { + "protocol_id": 366 + }, + "minecraft:polished_blackstone_bricks": { + "protocol_id": 1120 + }, + "minecraft:polished_blackstone_button": { + "protocol_id": 633 + }, + "minecraft:polished_blackstone_pressure_plate": { + "protocol_id": 644 + }, + "minecraft:polished_blackstone_slab": { + "protocol_id": 1117 + }, + "minecraft:polished_blackstone_stairs": { + "protocol_id": 1118 + }, + "minecraft:polished_blackstone_wall": { + "protocol_id": 365 + }, + "minecraft:polished_deepslate": { + "protocol_id": 10 + }, + "minecraft:polished_deepslate_slab": { + "protocol_id": 604 + }, + "minecraft:polished_deepslate_stairs": { + "protocol_id": 587 + }, + "minecraft:polished_deepslate_wall": { + "protocol_id": 368 + }, + "minecraft:polished_diorite": { + "protocol_id": 5 + }, + "minecraft:polished_diorite_slab": { + "protocol_id": 593 + }, + "minecraft:polished_diorite_stairs": { + "protocol_id": 575 + }, + "minecraft:polished_granite": { + "protocol_id": 3 + }, + "minecraft:polished_granite_slab": { + "protocol_id": 590 + }, + "minecraft:polished_granite_stairs": { + "protocol_id": 572 + }, + "minecraft:popped_chorus_fruit": { + "protocol_id": 1043 + }, + "minecraft:poppy": { + "protocol_id": 184 + }, + "minecraft:porkchop": { + "protocol_id": 799 + }, + "minecraft:potato": { + "protocol_id": 991 + }, + "minecraft:potion": { + "protocol_id": 902 + }, + "minecraft:powder_snow_bucket": { + "protocol_id": 816 + }, + "minecraft:powered_rail": { + "protocol_id": 685 + }, + "minecraft:prismarine": { + "protocol_id": 455 + }, + "minecraft:prismarine_brick_slab": { + "protocol_id": 238 + }, + "minecraft:prismarine_brick_stairs": { + "protocol_id": 459 + }, + "minecraft:prismarine_bricks": { + "protocol_id": 456 + }, + "minecraft:prismarine_crystals": { + "protocol_id": 1009 + }, + "minecraft:prismarine_shard": { + "protocol_id": 1008 + }, + "minecraft:prismarine_slab": { + "protocol_id": 237 + }, + "minecraft:prismarine_stairs": { + "protocol_id": 458 + }, + "minecraft:prismarine_wall": { + "protocol_id": 352 + }, + "minecraft:pufferfish": { + "protocol_id": 843 + }, + "minecraft:pufferfish_bucket": { + "protocol_id": 820 + }, + "minecraft:pufferfish_spawn_egg": { + "protocol_id": 952 + }, + "minecraft:pumpkin": { + "protocol_id": 277 + }, + "minecraft:pumpkin_pie": { + "protocol_id": 1003 + }, + "minecraft:pumpkin_seeds": { + "protocol_id": 890 + }, + "minecraft:purple_banner": { + "protocol_id": 1035 + }, + "minecraft:purple_bed": { + "protocol_id": 879 + }, + "minecraft:purple_candle": { + "protocol_id": 1136 + }, + "minecraft:purple_carpet": { + "protocol_id": 408 + }, + "minecraft:purple_concrete": { + "protocol_id": 517 + }, + "minecraft:purple_concrete_powder": { + "protocol_id": 533 + }, + "minecraft:purple_dye": { + "protocol_id": 859 + }, + "minecraft:purple_glazed_terracotta": { + "protocol_id": 501 + }, + "minecraft:purple_shulker_box": { + "protocol_id": 485 + }, + "minecraft:purple_stained_glass": { + "protocol_id": 433 + }, + "minecraft:purple_stained_glass_pane": { + "protocol_id": 449 + }, + "minecraft:purple_terracotta": { + "protocol_id": 389 + }, + "minecraft:purple_wool": { + "protocol_id": 177 + }, + "minecraft:purpur_block": { + "protocol_id": 252 + }, + "minecraft:purpur_pillar": { + "protocol_id": 253 + }, + "minecraft:purpur_slab": { + "protocol_id": 236 + }, + "minecraft:purpur_stairs": { + "protocol_id": 254 + }, + "minecraft:quartz": { + "protocol_id": 725 + }, + "minecraft:quartz_block": { + "protocol_id": 375 + }, + "minecraft:quartz_bricks": { + "protocol_id": 376 + }, + "minecraft:quartz_pillar": { + "protocol_id": 377 + }, + "minecraft:quartz_slab": { + "protocol_id": 233 + }, + "minecraft:quartz_stairs": { + "protocol_id": 378 + }, + "minecraft:rabbit": { + "protocol_id": 1010 + }, + "minecraft:rabbit_foot": { + "protocol_id": 1013 + }, + "minecraft:rabbit_hide": { + "protocol_id": 1014 + }, + "minecraft:rabbit_spawn_egg": { + "protocol_id": 953 + }, + "minecraft:rabbit_stew": { + "protocol_id": 1012 + }, + "minecraft:rail": { + "protocol_id": 687 + }, + "minecraft:ravager_spawn_egg": { + "protocol_id": 954 + }, + "minecraft:raw_copper": { + "protocol_id": 729 + }, + "minecraft:raw_copper_block": { + "protocol_id": 64 + }, + "minecraft:raw_gold": { + "protocol_id": 731 + }, + "minecraft:raw_gold_block": { + "protocol_id": 65 + }, + "minecraft:raw_iron": { + "protocol_id": 727 + }, + "minecraft:raw_iron_block": { + "protocol_id": 63 + }, + "minecraft:recovery_compass": { + "protocol_id": 834 + }, + "minecraft:red_banner": { + "protocol_id": 1039 + }, + "minecraft:red_bed": { + "protocol_id": 883 + }, + "minecraft:red_candle": { + "protocol_id": 1140 + }, + "minecraft:red_carpet": { + "protocol_id": 412 + }, + "minecraft:red_concrete": { + "protocol_id": 521 + }, + "minecraft:red_concrete_powder": { + "protocol_id": 537 + }, + "minecraft:red_dye": { + "protocol_id": 863 + }, + "minecraft:red_glazed_terracotta": { + "protocol_id": 505 + }, + "minecraft:red_mushroom": { + "protocol_id": 198 + }, + "minecraft:red_mushroom_block": { + "protocol_id": 308 + }, + "minecraft:red_nether_brick_slab": { + "protocol_id": 600 + }, + "minecraft:red_nether_brick_stairs": { + "protocol_id": 583 + }, + "minecraft:red_nether_brick_wall": { + "protocol_id": 360 + }, + "minecraft:red_nether_bricks": { + "protocol_id": 471 + }, + "minecraft:red_sand": { + "protocol_id": 41 + }, + "minecraft:red_sandstone": { + "protocol_id": 462 + }, + "minecraft:red_sandstone_slab": { + "protocol_id": 234 + }, + "minecraft:red_sandstone_stairs": { + "protocol_id": 465 + }, + "minecraft:red_sandstone_wall": { + "protocol_id": 353 + }, + "minecraft:red_shulker_box": { + "protocol_id": 489 + }, + "minecraft:red_stained_glass": { + "protocol_id": 437 + }, + "minecraft:red_stained_glass_pane": { + "protocol_id": 453 + }, + "minecraft:red_terracotta": { + "protocol_id": 393 + }, + "minecraft:red_tulip": { + "protocol_id": 188 + }, + "minecraft:red_wool": { + "protocol_id": 181 + }, + "minecraft:redstone": { + "protocol_id": 608 + }, + "minecraft:redstone_block": { + "protocol_id": 610 + }, + "minecraft:redstone_lamp": { + "protocol_id": 630 + }, + "minecraft:redstone_ore": { + "protocol_id": 51 + }, + "minecraft:redstone_torch": { + "protocol_id": 609 + }, + "minecraft:reinforced_deepslate": { + "protocol_id": 306 + }, + "minecraft:repeater": { + "protocol_id": 611 + }, + "minecraft:repeating_command_block": { + "protocol_id": 466 + }, + "minecraft:respawn_anchor": { + "protocol_id": 1124 + }, + "minecraft:rooted_dirt": { + "protocol_id": 18 + }, + "minecraft:rose_bush": { + "protocol_id": 419 + }, + "minecraft:rotten_flesh": { + "protocol_id": 896 + }, + "minecraft:saddle": { + "protocol_id": 689 + }, + "minecraft:salmon": { + "protocol_id": 841 + }, + "minecraft:salmon_bucket": { + "protocol_id": 821 + }, + "minecraft:salmon_spawn_egg": { + "protocol_id": 955 + }, + "minecraft:sand": { + "protocol_id": 40 + }, + "minecraft:sandstone": { + "protocol_id": 156 + }, + "minecraft:sandstone_slab": { + "protocol_id": 225 + }, + "minecraft:sandstone_stairs": { + "protocol_id": 335 + }, + "minecraft:sandstone_wall": { + "protocol_id": 361 + }, + "minecraft:scaffolding": { + "protocol_id": 607 + }, + "minecraft:sculk": { + "protocol_id": 326 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 328 + }, + "minecraft:sculk_sensor": { + "protocol_id": 626 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 329 + }, + "minecraft:sculk_vein": { + "protocol_id": 327 + }, + "minecraft:scute": { + "protocol_id": 715 + }, + "minecraft:sea_lantern": { + "protocol_id": 461 + }, + "minecraft:sea_pickle": { + "protocol_id": 166 + }, + "minecraft:seagrass": { + "protocol_id": 165 + }, + "minecraft:shears": { + "protocol_id": 887 + }, + "minecraft:sheep_spawn_egg": { + "protocol_id": 956 + }, + "minecraft:shield": { + "protocol_id": 1052 + }, + "minecraft:shroomlight": { + "protocol_id": 1104 + }, + "minecraft:shulker_box": { + "protocol_id": 474 + }, + "minecraft:shulker_shell": { + "protocol_id": 1054 + }, + "minecraft:shulker_spawn_egg": { + "protocol_id": 957 + }, + "minecraft:silverfish_spawn_egg": { + "protocol_id": 958 + }, + "minecraft:skeleton_horse_spawn_egg": { + "protocol_id": 960 + }, + "minecraft:skeleton_skull": { + "protocol_id": 996 + }, + "minecraft:skeleton_spawn_egg": { + "protocol_id": 959 + }, + "minecraft:skull_banner_pattern": { + "protocol_id": 1083 + }, + "minecraft:slime_ball": { + "protocol_id": 831 + }, + "minecraft:slime_block": { + "protocol_id": 615 + }, + "minecraft:slime_spawn_egg": { + "protocol_id": 961 + }, + "minecraft:small_amethyst_bud": { + "protocol_id": 1142 + }, + "minecraft:small_dripleaf": { + "protocol_id": 212 + }, + "minecraft:smithing_table": { + "protocol_id": 1095 + }, + "minecraft:smoker": { + "protocol_id": 1090 + }, + "minecraft:smooth_basalt": { + "protocol_id": 285 + }, + "minecraft:smooth_quartz": { + "protocol_id": 240 + }, + "minecraft:smooth_quartz_slab": { + "protocol_id": 597 + }, + "minecraft:smooth_quartz_stairs": { + "protocol_id": 580 + }, + "minecraft:smooth_red_sandstone": { + "protocol_id": 241 + }, + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 591 + }, + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 573 + }, + "minecraft:smooth_sandstone": { + "protocol_id": 242 + }, + "minecraft:smooth_sandstone_slab": { + "protocol_id": 596 + }, + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 579 + }, + "minecraft:smooth_stone": { + "protocol_id": 243 + }, + "minecraft:smooth_stone_slab": { + "protocol_id": 224 + }, + "minecraft:snow": { + "protocol_id": 262 + }, + "minecraft:snow_block": { + "protocol_id": 264 + }, + "minecraft:snowball": { + "protocol_id": 817 + }, + "minecraft:soul_campfire": { + "protocol_id": 1103 + }, + "minecraft:soul_lantern": { + "protocol_id": 1099 + }, + "minecraft:soul_sand": { + "protocol_id": 281 + }, + "minecraft:soul_soil": { + "protocol_id": 282 + }, + "minecraft:soul_torch": { + "protocol_id": 286 + }, + "minecraft:spawner": { + "protocol_id": 255 + }, + "minecraft:spectral_arrow": { + "protocol_id": 1049 + }, + "minecraft:spider_eye": { + "protocol_id": 904 + }, + "minecraft:spider_spawn_egg": { + "protocol_id": 962 + }, + "minecraft:splash_potion": { + "protocol_id": 1048 + }, + "minecraft:sponge": { + "protocol_id": 151 + }, + "minecraft:spore_blossom": { + "protocol_id": 196 + }, + "minecraft:spruce_boat": { + "protocol_id": 700 + }, + "minecraft:spruce_button": { + "protocol_id": 635 + }, + "minecraft:spruce_chest_boat": { + "protocol_id": 701 + }, + "minecraft:spruce_door": { + "protocol_id": 658 + }, + "minecraft:spruce_fence": { + "protocol_id": 269 + }, + "minecraft:spruce_fence_gate": { + "protocol_id": 677 + }, + "minecraft:spruce_leaves": { + "protocol_id": 143 + }, + "minecraft:spruce_log": { + "protocol_id": 105 + }, + "minecraft:spruce_planks": { + "protocol_id": 24 + }, + "minecraft:spruce_pressure_plate": { + "protocol_id": 648 + }, + "minecraft:spruce_sapling": { + "protocol_id": 33 + }, + "minecraft:spruce_sign": { + "protocol_id": 805 + }, + "minecraft:spruce_slab": { + "protocol_id": 215 + }, + "minecraft:spruce_stairs": { + "protocol_id": 339 + }, + "minecraft:spruce_trapdoor": { + "protocol_id": 668 + }, + "minecraft:spruce_wood": { + "protocol_id": 134 + }, + "minecraft:spyglass": { + "protocol_id": 838 + }, + "minecraft:squid_spawn_egg": { + "protocol_id": 963 + }, + "minecraft:stick": { + "protocol_id": 765 + }, + "minecraft:sticky_piston": { + "protocol_id": 614 + }, + "minecraft:stone": { + "protocol_id": 1 + }, + "minecraft:stone_axe": { + "protocol_id": 743 + }, + "minecraft:stone_brick_slab": { + "protocol_id": 230 + }, + "minecraft:stone_brick_stairs": { + "protocol_id": 317 + }, + "minecraft:stone_brick_wall": { + "protocol_id": 356 + }, + "minecraft:stone_bricks": { + "protocol_id": 295 + }, + "minecraft:stone_button": { + "protocol_id": 632 + }, + "minecraft:stone_hoe": { + "protocol_id": 744 + }, + "minecraft:stone_pickaxe": { + "protocol_id": 742 + }, + "minecraft:stone_pressure_plate": { + "protocol_id": 643 + }, + "minecraft:stone_shovel": { + "protocol_id": 741 + }, + "minecraft:stone_slab": { + "protocol_id": 223 + }, + "minecraft:stone_stairs": { + "protocol_id": 578 + }, + "minecraft:stone_sword": { + "protocol_id": 740 + }, + "minecraft:stonecutter": { + "protocol_id": 1096 + }, + "minecraft:stray_spawn_egg": { + "protocol_id": 964 + }, + "minecraft:strider_spawn_egg": { + "protocol_id": 965 + }, + "minecraft:string": { + "protocol_id": 768 + }, + "minecraft:stripped_acacia_log": { + "protocol_id": 119 + }, + "minecraft:stripped_acacia_wood": { + "protocol_id": 128 + }, + "minecraft:stripped_birch_log": { + "protocol_id": 117 + }, + "minecraft:stripped_birch_wood": { + "protocol_id": 126 + }, + "minecraft:stripped_crimson_hyphae": { + "protocol_id": 131 + }, + "minecraft:stripped_crimson_stem": { + "protocol_id": 122 + }, + "minecraft:stripped_dark_oak_log": { + "protocol_id": 120 + }, + "minecraft:stripped_dark_oak_wood": { + "protocol_id": 129 + }, + "minecraft:stripped_jungle_log": { + "protocol_id": 118 + }, + "minecraft:stripped_jungle_wood": { + "protocol_id": 127 + }, + "minecraft:stripped_mangrove_log": { + "protocol_id": 121 + }, + "minecraft:stripped_mangrove_wood": { + "protocol_id": 130 + }, + "minecraft:stripped_oak_log": { + "protocol_id": 115 + }, + "minecraft:stripped_oak_wood": { + "protocol_id": 124 + }, + "minecraft:stripped_spruce_log": { + "protocol_id": 116 + }, + "minecraft:stripped_spruce_wood": { + "protocol_id": 125 + }, + "minecraft:stripped_warped_hyphae": { + "protocol_id": 132 + }, + "minecraft:stripped_warped_stem": { + "protocol_id": 123 + }, + "minecraft:structure_block": { + "protocol_id": 712 + }, + "minecraft:structure_void": { + "protocol_id": 473 + }, + "minecraft:sugar": { + "protocol_id": 867 + }, + "minecraft:sugar_cane": { + "protocol_id": 206 + }, + "minecraft:sunflower": { + "protocol_id": 417 + }, + "minecraft:suspicious_stew": { + "protocol_id": 1079 + }, + "minecraft:sweet_berries": { + "protocol_id": 1100 + }, + "minecraft:tadpole_bucket": { + "protocol_id": 825 + }, + "minecraft:tadpole_spawn_egg": { + "protocol_id": 966 + }, + "minecraft:tall_grass": { + "protocol_id": 421 + }, + "minecraft:target": { + "protocol_id": 622 + }, + "minecraft:terracotta": { + "protocol_id": 414 + }, + "minecraft:tinted_glass": { + "protocol_id": 154 + }, + "minecraft:tipped_arrow": { + "protocol_id": 1050 + }, + "minecraft:tnt": { + "protocol_id": 629 + }, + "minecraft:tnt_minecart": { + "protocol_id": 693 + }, + "minecraft:torch": { + "protocol_id": 248 + }, + "minecraft:totem_of_undying": { + "protocol_id": 1053 + }, + "minecraft:trader_llama_spawn_egg": { + "protocol_id": 967 + }, + "minecraft:trapped_chest": { + "protocol_id": 628 + }, + "minecraft:trident": { + "protocol_id": 1074 + }, + "minecraft:tripwire_hook": { + "protocol_id": 627 + }, + "minecraft:tropical_fish": { + "protocol_id": 842 + }, + "minecraft:tropical_fish_bucket": { + "protocol_id": 823 + }, + "minecraft:tropical_fish_spawn_egg": { + "protocol_id": 968 + }, + "minecraft:tube_coral": { + "protocol_id": 550 + }, + "minecraft:tube_coral_block": { + "protocol_id": 545 + }, + "minecraft:tube_coral_fan": { + "protocol_id": 560 + }, + "minecraft:tuff": { + "protocol_id": 12 + }, + "minecraft:turtle_egg": { + "protocol_id": 539 + }, + "minecraft:turtle_helmet": { + "protocol_id": 714 + }, + "minecraft:turtle_spawn_egg": { + "protocol_id": 969 + }, + "minecraft:twisting_vines": { + "protocol_id": 205 + }, + "minecraft:verdant_froglight": { + "protocol_id": 1148 + }, + "minecraft:vex_spawn_egg": { + "protocol_id": 970 + }, + "minecraft:villager_spawn_egg": { + "protocol_id": 971 + }, + "minecraft:vindicator_spawn_egg": { + "protocol_id": 972 + }, + "minecraft:vine": { + "protocol_id": 314 + }, + "minecraft:wandering_trader_spawn_egg": { + "protocol_id": 973 + }, + "minecraft:warden_spawn_egg": { + "protocol_id": 974 + }, + "minecraft:warped_button": { + "protocol_id": 642 + }, + "minecraft:warped_door": { + "protocol_id": 665 + }, + "minecraft:warped_fence": { + "protocol_id": 276 + }, + "minecraft:warped_fence_gate": { + "protocol_id": 684 + }, + "minecraft:warped_fungus": { + "protocol_id": 200 + }, + "minecraft:warped_fungus_on_a_stick": { + "protocol_id": 696 + }, + "minecraft:warped_hyphae": { + "protocol_id": 141 + }, + "minecraft:warped_nylium": { + "protocol_id": 21 + }, + "minecraft:warped_planks": { + "protocol_id": 31 + }, + "minecraft:warped_pressure_plate": { + "protocol_id": 655 + }, + "minecraft:warped_roots": { + "protocol_id": 202 + }, + "minecraft:warped_sign": { + "protocol_id": 812 + }, + "minecraft:warped_slab": { + "protocol_id": 222 + }, + "minecraft:warped_stairs": { + "protocol_id": 346 + }, + "minecraft:warped_stem": { + "protocol_id": 114 + }, + "minecraft:warped_trapdoor": { + "protocol_id": 675 + }, + "minecraft:warped_wart_block": { + "protocol_id": 470 + }, + "minecraft:water_bucket": { + "protocol_id": 814 + }, + "minecraft:waxed_copper_block": { + "protocol_id": 88 + }, + "minecraft:waxed_cut_copper": { + "protocol_id": 92 + }, + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 100 + }, + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 96 + }, + "minecraft:waxed_exposed_copper": { + "protocol_id": 89 + }, + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 93 + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 101 + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 97 + }, + "minecraft:waxed_oxidized_copper": { + "protocol_id": 91 + }, + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 95 + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 103 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 99 + }, + "minecraft:waxed_weathered_copper": { + "protocol_id": 90 + }, + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 94 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 102 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 98 + }, + "minecraft:weathered_copper": { + "protocol_id": 74 + }, + "minecraft:weathered_cut_copper": { + "protocol_id": 78 + }, + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 86 + }, + "minecraft:weathered_cut_copper_stairs": { + "protocol_id": 82 + }, + "minecraft:weeping_vines": { + "protocol_id": 204 + }, + "minecraft:wet_sponge": { + "protocol_id": 152 + }, + "minecraft:wheat": { + "protocol_id": 772 + }, + "minecraft:wheat_seeds": { + "protocol_id": 771 + }, + "minecraft:white_banner": { + "protocol_id": 1025 + }, + "minecraft:white_bed": { + "protocol_id": 869 + }, + "minecraft:white_candle": { + "protocol_id": 1126 + }, + "minecraft:white_carpet": { + "protocol_id": 398 + }, + "minecraft:white_concrete": { + "protocol_id": 507 + }, + "minecraft:white_concrete_powder": { + "protocol_id": 523 + }, + "minecraft:white_dye": { + "protocol_id": 849 + }, + "minecraft:white_glazed_terracotta": { + "protocol_id": 491 + }, + "minecraft:white_shulker_box": { + "protocol_id": 475 + }, + "minecraft:white_stained_glass": { + "protocol_id": 423 + }, + "minecraft:white_stained_glass_pane": { + "protocol_id": 439 + }, + "minecraft:white_terracotta": { + "protocol_id": 379 + }, + "minecraft:white_tulip": { + "protocol_id": 190 + }, + "minecraft:white_wool": { + "protocol_id": 167 + }, + "minecraft:witch_spawn_egg": { + "protocol_id": 975 + }, + "minecraft:wither_rose": { + "protocol_id": 195 + }, + "minecraft:wither_skeleton_skull": { + "protocol_id": 997 + }, + "minecraft:wither_skeleton_spawn_egg": { + "protocol_id": 976 + }, + "minecraft:wolf_spawn_egg": { + "protocol_id": 977 + }, + "minecraft:wooden_axe": { + "protocol_id": 738 + }, + "minecraft:wooden_hoe": { + "protocol_id": 739 + }, + "minecraft:wooden_pickaxe": { + "protocol_id": 737 + }, + "minecraft:wooden_shovel": { + "protocol_id": 736 + }, + "minecraft:wooden_sword": { + "protocol_id": 735 + }, + "minecraft:writable_book": { + "protocol_id": 985 + }, + "minecraft:written_book": { + "protocol_id": 986 + }, + "minecraft:yellow_banner": { + "protocol_id": 1029 + }, + "minecraft:yellow_bed": { + "protocol_id": 873 + }, + "minecraft:yellow_candle": { + "protocol_id": 1130 + }, + "minecraft:yellow_carpet": { + "protocol_id": 402 + }, + "minecraft:yellow_concrete": { + "protocol_id": 511 + }, + "minecraft:yellow_concrete_powder": { + "protocol_id": 527 + }, + "minecraft:yellow_dye": { + "protocol_id": 853 + }, + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 495 + }, + "minecraft:yellow_shulker_box": { + "protocol_id": 479 + }, + "minecraft:yellow_stained_glass": { + "protocol_id": 427 + }, + "minecraft:yellow_stained_glass_pane": { + "protocol_id": 443 + }, + "minecraft:yellow_terracotta": { + "protocol_id": 383 + }, + "minecraft:yellow_wool": { + "protocol_id": 171 + }, + "minecraft:zoglin_spawn_egg": { + "protocol_id": 978 + }, + "minecraft:zombie_head": { + "protocol_id": 999 + }, + "minecraft:zombie_horse_spawn_egg": { + "protocol_id": 980 + }, + "minecraft:zombie_spawn_egg": { + "protocol_id": 979 + }, + "minecraft:zombie_villager_spawn_egg": { + "protocol_id": 981 + }, + "minecraft:zombified_piglin_spawn_egg": { + "protocol_id": 982 + } + }, + "protocol_id": 7 + }, + "minecraft:loot_condition_type": { + "entries": { + "minecraft:alternative": { + "protocol_id": 1 + }, + "minecraft:block_state_property": { + "protocol_id": 7 + }, + "minecraft:damage_source_properties": { + "protocol_id": 11 + }, + "minecraft:entity_properties": { + "protocol_id": 4 + }, + "minecraft:entity_scores": { + "protocol_id": 6 + }, + "minecraft:inverted": { + "protocol_id": 0 + }, + "minecraft:killed_by_player": { + "protocol_id": 5 + }, + "minecraft:location_check": { + "protocol_id": 12 + }, + "minecraft:match_tool": { + "protocol_id": 8 + }, + "minecraft:random_chance": { + "protocol_id": 2 + }, + "minecraft:random_chance_with_looting": { + "protocol_id": 3 + }, + "minecraft:reference": { + "protocol_id": 14 + }, + "minecraft:survives_explosion": { + "protocol_id": 10 + }, + "minecraft:table_bonus": { + "protocol_id": 9 + }, + "minecraft:time_check": { + "protocol_id": 15 + }, + "minecraft:value_check": { + "protocol_id": 16 + }, + "minecraft:weather_check": { + "protocol_id": 13 + } + }, + "protocol_id": 32 + }, + "minecraft:loot_function_type": { + "entries": { + "minecraft:apply_bonus": { + "protocol_id": 15 + }, + "minecraft:copy_name": { + "protocol_id": 12 + }, + "minecraft:copy_nbt": { + "protocol_id": 20 + }, + "minecraft:copy_state": { + "protocol_id": 21 + }, + "minecraft:enchant_randomly": { + "protocol_id": 2 + }, + "minecraft:enchant_with_levels": { + "protocol_id": 1 + }, + "minecraft:exploration_map": { + "protocol_id": 10 + }, + "minecraft:explosion_decay": { + "protocol_id": 17 + }, + "minecraft:fill_player_head": { + "protocol_id": 19 + }, + "minecraft:furnace_smelt": { + "protocol_id": 5 + }, + "minecraft:limit_count": { + "protocol_id": 14 + }, + "minecraft:looting_enchant": { + "protocol_id": 6 + }, + "minecraft:set_attributes": { + "protocol_id": 8 + }, + "minecraft:set_banner_pattern": { + "protocol_id": 22 + }, + "minecraft:set_contents": { + "protocol_id": 13 + }, + "minecraft:set_count": { + "protocol_id": 0 + }, + "minecraft:set_damage": { + "protocol_id": 7 + }, + "minecraft:set_enchantments": { + "protocol_id": 3 + }, + "minecraft:set_instrument": { + "protocol_id": 24 + }, + "minecraft:set_loot_table": { + "protocol_id": 16 + }, + "minecraft:set_lore": { + "protocol_id": 18 + }, + "minecraft:set_name": { + "protocol_id": 9 + }, + "minecraft:set_nbt": { + "protocol_id": 4 + }, + "minecraft:set_potion": { + "protocol_id": 23 + }, + "minecraft:set_stew_effect": { + "protocol_id": 11 + } + }, + "protocol_id": 31 + }, + "minecraft:loot_nbt_provider_type": { + "entries": { + "minecraft:context": { + "protocol_id": 1 + }, + "minecraft:storage": { + "protocol_id": 0 + } + }, + "protocol_id": 34 + }, + "minecraft:loot_number_provider_type": { + "entries": { + "minecraft:binomial": { + "protocol_id": 2 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:score": { + "protocol_id": 3 + }, + "minecraft:uniform": { + "protocol_id": 1 + } + }, + "protocol_id": 33 + }, + "minecraft:loot_pool_entry_type": { + "entries": { + "minecraft:alternatives": { + "protocol_id": 5 + }, + "minecraft:dynamic": { + "protocol_id": 3 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:group": { + "protocol_id": 7 + }, + "minecraft:item": { + "protocol_id": 1 + }, + "minecraft:loot_table": { + "protocol_id": 2 + }, + "minecraft:sequence": { + "protocol_id": 6 + }, + "minecraft:tag": { + "protocol_id": 4 + } + }, + "protocol_id": 30 + }, + "minecraft:loot_score_provider_type": { + "entries": { + "minecraft:context": { + "protocol_id": 1 + }, + "minecraft:fixed": { + "protocol_id": 0 + } + }, + "protocol_id": 35 + }, + "minecraft:memory_module_type": { + "default": "minecraft:dummy", + "entries": { + "minecraft:admiring_disabled": { + "protocol_id": 56 + }, + "minecraft:admiring_item": { + "protocol_id": 53 + }, + "minecraft:angry_at": { + "protocol_id": 51 + }, + "minecraft:ate_recently": { + "protocol_id": 71 + }, + "minecraft:attack_cooling_down": { + "protocol_id": 15 + }, + "minecraft:attack_target": { + "protocol_id": 14 + }, + "minecraft:avoid_target": { + "protocol_id": 25 + }, + "minecraft:breed_target": { + "protocol_id": 17 + }, + "minecraft:cant_reach_walk_target_since": { + "protocol_id": 30 + }, + "minecraft:celebrate_location": { + "protocol_id": 58 + }, + "minecraft:dancing": { + "protocol_id": 59 + }, + "minecraft:dig_cooldown": { + "protocol_id": 80 + }, + "minecraft:disable_walk_to_admire_item": { + "protocol_id": 55 + }, + "minecraft:disturbance_location": { + "protocol_id": 75 + }, + "minecraft:doors_to_close": { + "protocol_id": 21 + }, + "minecraft:dummy": { + "protocol_id": 0 + }, + "minecraft:golem_detected_recently": { + "protocol_id": 31 + }, + "minecraft:has_hunting_cooldown": { + "protocol_id": 44 + }, + "minecraft:heard_bell_time": { + "protocol_id": 29 + }, + "minecraft:hiding_place": { + "protocol_id": 28 + }, + "minecraft:home": { + "protocol_id": 1 + }, + "minecraft:hunted_recently": { + "protocol_id": 57 + }, + "minecraft:hurt_by": { + "protocol_id": 23 + }, + "minecraft:hurt_by_entity": { + "protocol_id": 24 + }, + "minecraft:interactable_doors": { + "protocol_id": 20 + }, + "minecraft:interaction_target": { + "protocol_id": 16 + }, + "minecraft:is_emerging": { + "protocol_id": 78 + }, + "minecraft:is_in_water": { + "protocol_id": 47 + }, + "minecraft:is_panicking": { + "protocol_id": 49 + }, + "minecraft:is_pregnant": { + "protocol_id": 48 + }, + "minecraft:is_sniffing": { + "protocol_id": 77 + }, + "minecraft:is_tempted": { + "protocol_id": 41 + }, + "minecraft:item_pickup_cooldown_ticks": { + "protocol_id": 91 + }, + "minecraft:job_site": { + "protocol_id": 2 + }, + "minecraft:last_slept": { + "protocol_id": 32 + }, + "minecraft:last_woken": { + "protocol_id": 33 + }, + "minecraft:last_worked_at_poi": { + "protocol_id": 34 + }, + "minecraft:liked_noteblock": { + "protocol_id": 89 + }, + "minecraft:liked_noteblock_cooldown_ticks": { + "protocol_id": 90 + }, + "minecraft:liked_player": { + "protocol_id": 88 + }, + "minecraft:long_jump_cooling_down": { + "protocol_id": 42 + }, + "minecraft:long_jump_mid_jump": { + "protocol_id": 43 + }, + "minecraft:look_target": { + "protocol_id": 13 + }, + "minecraft:meeting_point": { + "protocol_id": 4 + }, + "minecraft:mobs": { + "protocol_id": 6 + }, + "minecraft:nearby_adult_piglins": { + "protocol_id": 63 + }, + "minecraft:nearest_attackable": { + "protocol_id": 27 + }, + "minecraft:nearest_bed": { + "protocol_id": 22 + }, + "minecraft:nearest_hostile": { + "protocol_id": 26 + }, + "minecraft:nearest_player_holding_wanted_item": { + "protocol_id": 70 + }, + "minecraft:nearest_players": { + "protocol_id": 9 + }, + "minecraft:nearest_repellent": { + "protocol_id": 72 + }, + "minecraft:nearest_targetable_player_not_wearing_gold": { + "protocol_id": 62 + }, + "minecraft:nearest_visible_adult": { + "protocol_id": 35 + }, + "minecraft:nearest_visible_adult_hoglins": { + "protocol_id": 65 + }, + "minecraft:nearest_visible_adult_piglin": { + "protocol_id": 66 + }, + "minecraft:nearest_visible_adult_piglins": { + "protocol_id": 64 + }, + "minecraft:nearest_visible_baby_hoglin": { + "protocol_id": 61 + }, + "minecraft:nearest_visible_huntable_hoglin": { + "protocol_id": 60 + }, + "minecraft:nearest_visible_nemesis": { + "protocol_id": 37 + }, + "minecraft:nearest_visible_player": { + "protocol_id": 10 + }, + "minecraft:nearest_visible_targetable_player": { + "protocol_id": 11 + }, + "minecraft:nearest_visible_wanted_item": { + "protocol_id": 36 + }, + "minecraft:nearest_visible_zombified": { + "protocol_id": 67 + }, + "minecraft:pacified": { + "protocol_id": 73 + }, + "minecraft:path": { + "protocol_id": 19 + }, + "minecraft:play_dead_ticks": { + "protocol_id": 38 + }, + "minecraft:potential_job_site": { + "protocol_id": 3 + }, + "minecraft:ram_cooldown_ticks": { + "protocol_id": 45 + }, + "minecraft:ram_target": { + "protocol_id": 46 + }, + "minecraft:recent_projectile": { + "protocol_id": 76 + }, + "minecraft:ride_target": { + "protocol_id": 18 + }, + "minecraft:roar_sound_cooldown": { + "protocol_id": 81 + }, + "minecraft:roar_sound_delay": { + "protocol_id": 79 + }, + "minecraft:roar_target": { + "protocol_id": 74 + }, + "minecraft:secondary_job_site": { + "protocol_id": 5 + }, + "minecraft:sniff_cooldown": { + "protocol_id": 82 + }, + "minecraft:sonic_boom_cooldown": { + "protocol_id": 85 + }, + "minecraft:sonic_boom_sound_cooldown": { + "protocol_id": 86 + }, + "minecraft:sonic_boom_sound_delay": { + "protocol_id": 87 + }, + "minecraft:temptation_cooldown_ticks": { + "protocol_id": 40 + }, + "minecraft:tempting_player": { + "protocol_id": 39 + }, + "minecraft:time_trying_to_reach_admire_item": { + "protocol_id": 54 + }, + "minecraft:touch_cooldown": { + "protocol_id": 83 + }, + "minecraft:universal_anger": { + "protocol_id": 52 + }, + "minecraft:unreachable_tongue_targets": { + "protocol_id": 50 + }, + "minecraft:vibration_cooldown": { + "protocol_id": 84 + }, + "minecraft:visible_adult_hoglin_count": { + "protocol_id": 69 + }, + "minecraft:visible_adult_piglin_count": { + "protocol_id": 68 + }, + "minecraft:visible_mobs": { + "protocol_id": 7 + }, + "minecraft:visible_villager_babies": { + "protocol_id": 8 + }, + "minecraft:walk_target": { + "protocol_id": 12 + } + }, + "protocol_id": 26 }, "minecraft:menu": { - "protocol_id": 16, "entries": { + "minecraft:anvil": { + "protocol_id": 7 + }, + "minecraft:beacon": { + "protocol_id": 8 + }, + "minecraft:blast_furnace": { + "protocol_id": 9 + }, + "minecraft:brewing_stand": { + "protocol_id": 10 + }, + "minecraft:cartography_table": { + "protocol_id": 22 + }, + "minecraft:crafting": { + "protocol_id": 11 + }, + "minecraft:enchantment": { + "protocol_id": 12 + }, + "minecraft:furnace": { + "protocol_id": 13 + }, + "minecraft:generic_3x3": { + "protocol_id": 6 + }, "minecraft:generic_9x1": { "protocol_id": 0 }, @@ -11277,30 +8417,6 @@ "minecraft:generic_9x6": { "protocol_id": 5 }, - "minecraft:generic_3x3": { - "protocol_id": 6 - }, - "minecraft:anvil": { - "protocol_id": 7 - }, - "minecraft:beacon": { - "protocol_id": 8 - }, - "minecraft:blast_furnace": { - "protocol_id": 9 - }, - "minecraft:brewing_stand": { - "protocol_id": 10 - }, - "minecraft:crafting": { - "protocol_id": 11 - }, - "minecraft:enchantment": { - "protocol_id": 12 - }, - "minecraft:furnace": { - "protocol_id": 13 - }, "minecraft:grindstone": { "protocol_id": 14 }, @@ -11325,43 +8441,729 @@ "minecraft:smoker": { "protocol_id": 21 }, - "minecraft:cartography_table": { - "protocol_id": 22 - }, "minecraft:stonecutter": { "protocol_id": 23 } - } + }, + "protocol_id": 16 }, - "minecraft:recipe_type": { - "protocol_id": 17, + "minecraft:mob_effect": { "entries": { - "minecraft:crafting": { - "protocol_id": 0 + "minecraft:absorption": { + "protocol_id": 22 }, - "minecraft:smelting": { - "protocol_id": 1 + "minecraft:bad_omen": { + "protocol_id": 31 }, - "minecraft:blasting": { - "protocol_id": 2 + "minecraft:blindness": { + "protocol_id": 15 }, - "minecraft:smoking": { + "minecraft:conduit_power": { + "protocol_id": 29 + }, + "minecraft:darkness": { + "protocol_id": 33 + }, + "minecraft:dolphins_grace": { + "protocol_id": 30 + }, + "minecraft:fire_resistance": { + "protocol_id": 12 + }, + "minecraft:glowing": { + "protocol_id": 24 + }, + "minecraft:haste": { "protocol_id": 3 }, - "minecraft:campfire_cooking": { + "minecraft:health_boost": { + "protocol_id": 21 + }, + "minecraft:hero_of_the_village": { + "protocol_id": 32 + }, + "minecraft:hunger": { + "protocol_id": 17 + }, + "minecraft:instant_damage": { + "protocol_id": 7 + }, + "minecraft:instant_health": { + "protocol_id": 6 + }, + "minecraft:invisibility": { + "protocol_id": 14 + }, + "minecraft:jump_boost": { + "protocol_id": 8 + }, + "minecraft:levitation": { + "protocol_id": 25 + }, + "minecraft:luck": { + "protocol_id": 26 + }, + "minecraft:mining_fatigue": { "protocol_id": 4 }, - "minecraft:stonecutting": { + "minecraft:nausea": { + "protocol_id": 9 + }, + "minecraft:night_vision": { + "protocol_id": 16 + }, + "minecraft:poison": { + "protocol_id": 19 + }, + "minecraft:regeneration": { + "protocol_id": 10 + }, + "minecraft:resistance": { + "protocol_id": 11 + }, + "minecraft:saturation": { + "protocol_id": 23 + }, + "minecraft:slow_falling": { + "protocol_id": 28 + }, + "minecraft:slowness": { + "protocol_id": 2 + }, + "minecraft:speed": { + "protocol_id": 1 + }, + "minecraft:strength": { "protocol_id": 5 }, - "minecraft:smithing": { - "protocol_id": 6 + "minecraft:unluck": { + "protocol_id": 27 + }, + "minecraft:water_breathing": { + "protocol_id": 13 + }, + "minecraft:weakness": { + "protocol_id": 18 + }, + "minecraft:wither": { + "protocol_id": 20 } - } + }, + "protocol_id": 3 + }, + "minecraft:painting_variant": { + "default": "minecraft:kebab", + "entries": { + "minecraft:alban": { + "protocol_id": 2 + }, + "minecraft:aztec": { + "protocol_id": 1 + }, + "minecraft:aztec2": { + "protocol_id": 3 + }, + "minecraft:bomb": { + "protocol_id": 4 + }, + "minecraft:burning_skull": { + "protocol_id": 23 + }, + "minecraft:bust": { + "protocol_id": 15 + }, + "minecraft:courbet": { + "protocol_id": 8 + }, + "minecraft:creebet": { + "protocol_id": 11 + }, + "minecraft:donkey_kong": { + "protocol_id": 29 + }, + "minecraft:earth": { + "protocol_id": 25 + }, + "minecraft:fighters": { + "protocol_id": 20 + }, + "minecraft:fire": { + "protocol_id": 28 + }, + "minecraft:graham": { + "protocol_id": 13 + }, + "minecraft:kebab": { + "protocol_id": 0 + }, + "minecraft:match": { + "protocol_id": 14 + }, + "minecraft:pigscene": { + "protocol_id": 22 + }, + "minecraft:plant": { + "protocol_id": 5 + }, + "minecraft:pointer": { + "protocol_id": 21 + }, + "minecraft:pool": { + "protocol_id": 7 + }, + "minecraft:sea": { + "protocol_id": 9 + }, + "minecraft:skeleton": { + "protocol_id": 24 + }, + "minecraft:skull_and_roses": { + "protocol_id": 18 + }, + "minecraft:stage": { + "protocol_id": 16 + }, + "minecraft:sunset": { + "protocol_id": 10 + }, + "minecraft:void": { + "protocol_id": 17 + }, + "minecraft:wanderer": { + "protocol_id": 12 + }, + "minecraft:wasteland": { + "protocol_id": 6 + }, + "minecraft:water": { + "protocol_id": 27 + }, + "minecraft:wind": { + "protocol_id": 26 + }, + "minecraft:wither": { + "protocol_id": 19 + } + }, + "protocol_id": 11 + }, + "minecraft:particle_type": { + "entries": { + "minecraft:ambient_entity_effect": { + "protocol_id": 0 + }, + "minecraft:angry_villager": { + "protocol_id": 1 + }, + "minecraft:ash": { + "protocol_id": 71 + }, + "minecraft:block": { + "protocol_id": 2 + }, + "minecraft:block_marker": { + "protocol_id": 3 + }, + "minecraft:bubble": { + "protocol_id": 4 + }, + "minecraft:bubble_column_up": { + "protocol_id": 61 + }, + "minecraft:bubble_pop": { + "protocol_id": 59 + }, + "minecraft:campfire_cosy_smoke": { + "protocol_id": 64 + }, + "minecraft:campfire_signal_smoke": { + "protocol_id": 65 + }, + "minecraft:cloud": { + "protocol_id": 5 + }, + "minecraft:composter": { + "protocol_id": 36 + }, + "minecraft:crimson_spore": { + "protocol_id": 72 + }, + "minecraft:crit": { + "protocol_id": 6 + }, + "minecraft:current_down": { + "protocol_id": 60 + }, + "minecraft:damage_indicator": { + "protocol_id": 7 + }, + "minecraft:dolphin": { + "protocol_id": 63 + }, + "minecraft:dragon_breath": { + "protocol_id": 8 + }, + "minecraft:dripping_dripstone_lava": { + "protocol_id": 82 + }, + "minecraft:dripping_dripstone_water": { + "protocol_id": 84 + }, + "minecraft:dripping_honey": { + "protocol_id": 66 + }, + "minecraft:dripping_lava": { + "protocol_id": 9 + }, + "minecraft:dripping_obsidian_tear": { + "protocol_id": 75 + }, + "minecraft:dripping_water": { + "protocol_id": 12 + }, + "minecraft:dust": { + "protocol_id": 14 + }, + "minecraft:dust_color_transition": { + "protocol_id": 15 + }, + "minecraft:effect": { + "protocol_id": 16 + }, + "minecraft:elder_guardian": { + "protocol_id": 17 + }, + "minecraft:electric_spark": { + "protocol_id": 90 + }, + "minecraft:enchant": { + "protocol_id": 19 + }, + "minecraft:enchanted_hit": { + "protocol_id": 18 + }, + "minecraft:end_rod": { + "protocol_id": 20 + }, + "minecraft:entity_effect": { + "protocol_id": 21 + }, + "minecraft:explosion": { + "protocol_id": 23 + }, + "minecraft:explosion_emitter": { + "protocol_id": 22 + }, + "minecraft:falling_dripstone_lava": { + "protocol_id": 83 + }, + "minecraft:falling_dripstone_water": { + "protocol_id": 85 + }, + "minecraft:falling_dust": { + "protocol_id": 25 + }, + "minecraft:falling_honey": { + "protocol_id": 67 + }, + "minecraft:falling_lava": { + "protocol_id": 10 + }, + "minecraft:falling_nectar": { + "protocol_id": 69 + }, + "minecraft:falling_obsidian_tear": { + "protocol_id": 76 + }, + "minecraft:falling_spore_blossom": { + "protocol_id": 70 + }, + "minecraft:falling_water": { + "protocol_id": 13 + }, + "minecraft:firework": { + "protocol_id": 26 + }, + "minecraft:fishing": { + "protocol_id": 27 + }, + "minecraft:flame": { + "protocol_id": 28 + }, + "minecraft:flash": { + "protocol_id": 34 + }, + "minecraft:glow": { + "protocol_id": 87 + }, + "minecraft:glow_squid_ink": { + "protocol_id": 86 + }, + "minecraft:happy_villager": { + "protocol_id": 35 + }, + "minecraft:heart": { + "protocol_id": 37 + }, + "minecraft:instant_effect": { + "protocol_id": 38 + }, + "minecraft:item": { + "protocol_id": 39 + }, + "minecraft:item_slime": { + "protocol_id": 41 + }, + "minecraft:item_snowball": { + "protocol_id": 42 + }, + "minecraft:landing_honey": { + "protocol_id": 68 + }, + "minecraft:landing_lava": { + "protocol_id": 11 + }, + "minecraft:landing_obsidian_tear": { + "protocol_id": 77 + }, + "minecraft:large_smoke": { + "protocol_id": 43 + }, + "minecraft:lava": { + "protocol_id": 44 + }, + "minecraft:mycelium": { + "protocol_id": 45 + }, + "minecraft:nautilus": { + "protocol_id": 62 + }, + "minecraft:note": { + "protocol_id": 46 + }, + "minecraft:poof": { + "protocol_id": 47 + }, + "minecraft:portal": { + "protocol_id": 48 + }, + "minecraft:rain": { + "protocol_id": 49 + }, + "minecraft:reverse_portal": { + "protocol_id": 78 + }, + "minecraft:scrape": { + "protocol_id": 91 + }, + "minecraft:sculk_charge": { + "protocol_id": 30 + }, + "minecraft:sculk_charge_pop": { + "protocol_id": 31 + }, + "minecraft:sculk_soul": { + "protocol_id": 29 + }, + "minecraft:shriek": { + "protocol_id": 92 + }, + "minecraft:small_flame": { + "protocol_id": 80 + }, + "minecraft:smoke": { + "protocol_id": 50 + }, + "minecraft:sneeze": { + "protocol_id": 51 + }, + "minecraft:snowflake": { + "protocol_id": 81 + }, + "minecraft:sonic_boom": { + "protocol_id": 24 + }, + "minecraft:soul": { + "protocol_id": 33 + }, + "minecraft:soul_fire_flame": { + "protocol_id": 32 + }, + "minecraft:spit": { + "protocol_id": 52 + }, + "minecraft:splash": { + "protocol_id": 57 + }, + "minecraft:spore_blossom_air": { + "protocol_id": 74 + }, + "minecraft:squid_ink": { + "protocol_id": 53 + }, + "minecraft:sweep_attack": { + "protocol_id": 54 + }, + "minecraft:totem_of_undying": { + "protocol_id": 55 + }, + "minecraft:underwater": { + "protocol_id": 56 + }, + "minecraft:vibration": { + "protocol_id": 40 + }, + "minecraft:warped_spore": { + "protocol_id": 73 + }, + "minecraft:wax_off": { + "protocol_id": 89 + }, + "minecraft:wax_on": { + "protocol_id": 88 + }, + "minecraft:white_ash": { + "protocol_id": 79 + }, + "minecraft:witch": { + "protocol_id": 58 + } + }, + "protocol_id": 9 + }, + "minecraft:point_of_interest_type": { + "entries": { + "minecraft:armorer": { + "protocol_id": 0 + }, + "minecraft:bee_nest": { + "protocol_id": 16 + }, + "minecraft:beehive": { + "protocol_id": 15 + }, + "minecraft:butcher": { + "protocol_id": 1 + }, + "minecraft:cartographer": { + "protocol_id": 2 + }, + "minecraft:cleric": { + "protocol_id": 3 + }, + "minecraft:farmer": { + "protocol_id": 4 + }, + "minecraft:fisherman": { + "protocol_id": 5 + }, + "minecraft:fletcher": { + "protocol_id": 6 + }, + "minecraft:home": { + "protocol_id": 13 + }, + "minecraft:leatherworker": { + "protocol_id": 7 + }, + "minecraft:librarian": { + "protocol_id": 8 + }, + "minecraft:lightning_rod": { + "protocol_id": 19 + }, + "minecraft:lodestone": { + "protocol_id": 18 + }, + "minecraft:mason": { + "protocol_id": 9 + }, + "minecraft:meeting": { + "protocol_id": 14 + }, + "minecraft:nether_portal": { + "protocol_id": 17 + }, + "minecraft:shepherd": { + "protocol_id": 10 + }, + "minecraft:toolsmith": { + "protocol_id": 11 + }, + "minecraft:weaponsmith": { + "protocol_id": 12 + } + }, + "protocol_id": 25 + }, + "minecraft:pos_rule_test": { + "entries": { + "minecraft:always_true": { + "protocol_id": 0 + }, + "minecraft:axis_aligned_linear_pos": { + "protocol_id": 2 + }, + "minecraft:linear_pos": { + "protocol_id": 1 + } + }, + "protocol_id": 15 + }, + "minecraft:position_source_type": { + "entries": { + "minecraft:block": { + "protocol_id": 0 + }, + "minecraft:entity": { + "protocol_id": 1 + } + }, + "protocol_id": 20 + }, + "minecraft:potion": { + "default": "minecraft:empty", + "entries": { + "minecraft:awkward": { + "protocol_id": 4 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:fire_resistance": { + "protocol_id": 12 + }, + "minecraft:harming": { + "protocol_id": 27 + }, + "minecraft:healing": { + "protocol_id": 25 + }, + "minecraft:invisibility": { + "protocol_id": 7 + }, + "minecraft:leaping": { + "protocol_id": 9 + }, + "minecraft:long_fire_resistance": { + "protocol_id": 13 + }, + "minecraft:long_invisibility": { + "protocol_id": 8 + }, + "minecraft:long_leaping": { + "protocol_id": 10 + }, + "minecraft:long_night_vision": { + "protocol_id": 6 + }, + "minecraft:long_poison": { + "protocol_id": 30 + }, + "minecraft:long_regeneration": { + "protocol_id": 33 + }, + "minecraft:long_slow_falling": { + "protocol_id": 42 + }, + "minecraft:long_slowness": { + "protocol_id": 18 + }, + "minecraft:long_strength": { + "protocol_id": 36 + }, + "minecraft:long_swiftness": { + "protocol_id": 15 + }, + "minecraft:long_turtle_master": { + "protocol_id": 21 + }, + "minecraft:long_water_breathing": { + "protocol_id": 24 + }, + "minecraft:long_weakness": { + "protocol_id": 39 + }, + "minecraft:luck": { + "protocol_id": 40 + }, + "minecraft:mundane": { + "protocol_id": 2 + }, + "minecraft:night_vision": { + "protocol_id": 5 + }, + "minecraft:poison": { + "protocol_id": 29 + }, + "minecraft:regeneration": { + "protocol_id": 32 + }, + "minecraft:slow_falling": { + "protocol_id": 41 + }, + "minecraft:slowness": { + "protocol_id": 17 + }, + "minecraft:strength": { + "protocol_id": 35 + }, + "minecraft:strong_harming": { + "protocol_id": 28 + }, + "minecraft:strong_healing": { + "protocol_id": 26 + }, + "minecraft:strong_leaping": { + "protocol_id": 11 + }, + "minecraft:strong_poison": { + "protocol_id": 31 + }, + "minecraft:strong_regeneration": { + "protocol_id": 34 + }, + "minecraft:strong_slowness": { + "protocol_id": 19 + }, + "minecraft:strong_strength": { + "protocol_id": 37 + }, + "minecraft:strong_swiftness": { + "protocol_id": 16 + }, + "minecraft:strong_turtle_master": { + "protocol_id": 22 + }, + "minecraft:swiftness": { + "protocol_id": 14 + }, + "minecraft:thick": { + "protocol_id": 3 + }, + "minecraft:turtle_master": { + "protocol_id": 20 + }, + "minecraft:water": { + "protocol_id": 1 + }, + "minecraft:water_breathing": { + "protocol_id": 23 + }, + "minecraft:weakness": { + "protocol_id": 38 + } + }, + "protocol_id": 8 }, "minecraft:recipe_serializer": { - "protocol_id": 18, "entries": { + "minecraft:blasting": { + "protocol_id": 16 + }, + "minecraft:campfire_cooking": { + "protocol_id": 18 + }, "minecraft:crafting_shaped": { "protocol_id": 0 }, @@ -11371,15 +9173,12 @@ "minecraft:crafting_special_armordye": { "protocol_id": 2 }, + "minecraft:crafting_special_bannerduplicate": { + "protocol_id": 10 + }, "minecraft:crafting_special_bookcloning": { "protocol_id": 3 }, - "minecraft:crafting_special_mapcloning": { - "protocol_id": 4 - }, - "minecraft:crafting_special_mapextending": { - "protocol_id": 5 - }, "minecraft:crafting_special_firework_rocket": { "protocol_id": 6 }, @@ -11389,11 +9188,14 @@ "minecraft:crafting_special_firework_star_fade": { "protocol_id": 8 }, - "minecraft:crafting_special_tippedarrow": { - "protocol_id": 9 + "minecraft:crafting_special_mapcloning": { + "protocol_id": 4 }, - "minecraft:crafting_special_bannerduplicate": { - "protocol_id": 10 + "minecraft:crafting_special_mapextending": { + "protocol_id": 5 + }, + "minecraft:crafting_special_repairitem": { + "protocol_id": 14 }, "minecraft:crafting_special_shielddecoration": { "protocol_id": 11 @@ -11404,101 +9206,4137 @@ "minecraft:crafting_special_suspiciousstew": { "protocol_id": 13 }, - "minecraft:crafting_special_repairitem": { - "protocol_id": 14 + "minecraft:crafting_special_tippedarrow": { + "protocol_id": 9 }, "minecraft:smelting": { "protocol_id": 15 }, - "minecraft:blasting": { - "protocol_id": 16 + "minecraft:smithing": { + "protocol_id": 20 }, "minecraft:smoking": { "protocol_id": 17 }, - "minecraft:campfire_cooking": { - "protocol_id": 18 - }, "minecraft:stonecutting": { "protocol_id": 19 - }, - "minecraft:smithing": { - "protocol_id": 20 } - } + }, + "protocol_id": 18 }, - "minecraft:attribute": { - "protocol_id": 19, + "minecraft:recipe_type": { "entries": { - "minecraft:generic.max_health": { - "protocol_id": 0 - }, - "minecraft:generic.follow_range": { - "protocol_id": 1 - }, - "minecraft:generic.knockback_resistance": { + "minecraft:blasting": { "protocol_id": 2 }, - "minecraft:generic.movement_speed": { - "protocol_id": 3 - }, - "minecraft:generic.flying_speed": { + "minecraft:campfire_cooking": { "protocol_id": 4 }, - "minecraft:generic.attack_damage": { - "protocol_id": 5 + "minecraft:crafting": { + "protocol_id": 0 }, - "minecraft:generic.attack_knockback": { + "minecraft:smelting": { + "protocol_id": 1 + }, + "minecraft:smithing": { "protocol_id": 6 }, - "minecraft:generic.attack_speed": { - "protocol_id": 7 + "minecraft:smoking": { + "protocol_id": 3 }, - "minecraft:generic.armor": { - "protocol_id": 8 + "minecraft:stonecutting": { + "protocol_id": 5 + } + }, + "protocol_id": 17 + }, + "minecraft:rule_test": { + "entries": { + "minecraft:always_true": { + "protocol_id": 0 }, - "minecraft:generic.armor_toughness": { + "minecraft:block_match": { + "protocol_id": 1 + }, + "minecraft:blockstate_match": { + "protocol_id": 2 + }, + "minecraft:random_block_match": { + "protocol_id": 4 + }, + "minecraft:random_blockstate_match": { + "protocol_id": 5 + }, + "minecraft:tag_match": { + "protocol_id": 3 + } + }, + "protocol_id": 14 + }, + "minecraft:schedule": { + "entries": { + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:simple": { + "protocol_id": 1 + }, + "minecraft:villager_baby": { + "protocol_id": 2 + }, + "minecraft:villager_default": { + "protocol_id": 3 + } + }, + "protocol_id": 28 + }, + "minecraft:sensor_type": { + "default": "minecraft:dummy", + "entries": { + "minecraft:axolotl_attackables": { + "protocol_id": 14 + }, + "minecraft:axolotl_temptations": { + "protocol_id": 15 + }, + "minecraft:dummy": { + "protocol_id": 0 + }, + "minecraft:frog_attackables": { + "protocol_id": 18 + }, + "minecraft:frog_temptations": { + "protocol_id": 17 + }, + "minecraft:goat_temptations": { + "protocol_id": 16 + }, + "minecraft:golem_detected": { "protocol_id": 9 }, - "minecraft:generic.luck": { - "protocol_id": 10 + "minecraft:hoglin_specific_sensor": { + "protocol_id": 12 }, - "minecraft:zombie.spawn_reinforcements": { + "minecraft:hurt_by": { + "protocol_id": 5 + }, + "minecraft:is_in_water": { + "protocol_id": 19 + }, + "minecraft:nearest_adult": { + "protocol_id": 13 + }, + "minecraft:nearest_bed": { + "protocol_id": 4 + }, + "minecraft:nearest_items": { + "protocol_id": 1 + }, + "minecraft:nearest_living_entities": { + "protocol_id": 2 + }, + "minecraft:nearest_players": { + "protocol_id": 3 + }, + "minecraft:piglin_brute_specific_sensor": { "protocol_id": 11 }, - "minecraft:horse.jump_strength": { - "protocol_id": 12 + "minecraft:piglin_specific_sensor": { + "protocol_id": 10 + }, + "minecraft:secondary_pois": { + "protocol_id": 8 + }, + "minecraft:villager_babies": { + "protocol_id": 7 + }, + "minecraft:villager_hostiles": { + "protocol_id": 6 + }, + "minecraft:warden_entity_sensor": { + "protocol_id": 20 } - } + }, + "protocol_id": 27 }, - "minecraft:position_source_type": { - "protocol_id": 20, + "minecraft:sound_event": { "entries": { - "minecraft:block": { + "minecraft:ambient.basalt_deltas.additions": { + "protocol_id": 8 + }, + "minecraft:ambient.basalt_deltas.loop": { + "protocol_id": 9 + }, + "minecraft:ambient.basalt_deltas.mood": { + "protocol_id": 10 + }, + "minecraft:ambient.cave": { + "protocol_id": 7 + }, + "minecraft:ambient.crimson_forest.additions": { + "protocol_id": 11 + }, + "minecraft:ambient.crimson_forest.loop": { + "protocol_id": 12 + }, + "minecraft:ambient.crimson_forest.mood": { + "protocol_id": 13 + }, + "minecraft:ambient.nether_wastes.additions": { + "protocol_id": 14 + }, + "minecraft:ambient.nether_wastes.loop": { + "protocol_id": 15 + }, + "minecraft:ambient.nether_wastes.mood": { + "protocol_id": 16 + }, + "minecraft:ambient.soul_sand_valley.additions": { + "protocol_id": 17 + }, + "minecraft:ambient.soul_sand_valley.loop": { + "protocol_id": 18 + }, + "minecraft:ambient.soul_sand_valley.mood": { + "protocol_id": 19 + }, + "minecraft:ambient.underwater.enter": { + "protocol_id": 23 + }, + "minecraft:ambient.underwater.exit": { + "protocol_id": 24 + }, + "minecraft:ambient.underwater.loop": { + "protocol_id": 25 + }, + "minecraft:ambient.underwater.loop.additions": { + "protocol_id": 26 + }, + "minecraft:ambient.underwater.loop.additions.rare": { + "protocol_id": 27 + }, + "minecraft:ambient.underwater.loop.additions.ultra_rare": { + "protocol_id": 28 + }, + "minecraft:ambient.warped_forest.additions": { + "protocol_id": 20 + }, + "minecraft:ambient.warped_forest.loop": { + "protocol_id": 21 + }, + "minecraft:ambient.warped_forest.mood": { + "protocol_id": 22 + }, + "minecraft:block.amethyst_block.break": { + "protocol_id": 29 + }, + "minecraft:block.amethyst_block.chime": { + "protocol_id": 30 + }, + "minecraft:block.amethyst_block.fall": { + "protocol_id": 31 + }, + "minecraft:block.amethyst_block.hit": { + "protocol_id": 32 + }, + "minecraft:block.amethyst_block.place": { + "protocol_id": 33 + }, + "minecraft:block.amethyst_block.step": { + "protocol_id": 34 + }, + "minecraft:block.amethyst_cluster.break": { + "protocol_id": 35 + }, + "minecraft:block.amethyst_cluster.fall": { + "protocol_id": 36 + }, + "minecraft:block.amethyst_cluster.hit": { + "protocol_id": 37 + }, + "minecraft:block.amethyst_cluster.place": { + "protocol_id": 38 + }, + "minecraft:block.amethyst_cluster.step": { + "protocol_id": 39 + }, + "minecraft:block.ancient_debris.break": { + "protocol_id": 40 + }, + "minecraft:block.ancient_debris.fall": { + "protocol_id": 44 + }, + "minecraft:block.ancient_debris.hit": { + "protocol_id": 43 + }, + "minecraft:block.ancient_debris.place": { + "protocol_id": 42 + }, + "minecraft:block.ancient_debris.step": { + "protocol_id": 41 + }, + "minecraft:block.anvil.break": { + "protocol_id": 45 + }, + "minecraft:block.anvil.destroy": { + "protocol_id": 46 + }, + "minecraft:block.anvil.fall": { + "protocol_id": 47 + }, + "minecraft:block.anvil.hit": { + "protocol_id": 48 + }, + "minecraft:block.anvil.land": { + "protocol_id": 49 + }, + "minecraft:block.anvil.place": { + "protocol_id": 50 + }, + "minecraft:block.anvil.step": { + "protocol_id": 51 + }, + "minecraft:block.anvil.use": { + "protocol_id": 52 + }, + "minecraft:block.azalea.break": { + "protocol_id": 79 + }, + "minecraft:block.azalea.fall": { + "protocol_id": 80 + }, + "minecraft:block.azalea.hit": { + "protocol_id": 81 + }, + "minecraft:block.azalea.place": { + "protocol_id": 82 + }, + "minecraft:block.azalea.step": { + "protocol_id": 83 + }, + "minecraft:block.azalea_leaves.break": { + "protocol_id": 84 + }, + "minecraft:block.azalea_leaves.fall": { + "protocol_id": 85 + }, + "minecraft:block.azalea_leaves.hit": { + "protocol_id": 86 + }, + "minecraft:block.azalea_leaves.place": { + "protocol_id": 87 + }, + "minecraft:block.azalea_leaves.step": { + "protocol_id": 88 + }, + "minecraft:block.bamboo.break": { + "protocol_id": 89 + }, + "minecraft:block.bamboo.fall": { + "protocol_id": 90 + }, + "minecraft:block.bamboo.hit": { + "protocol_id": 91 + }, + "minecraft:block.bamboo.place": { + "protocol_id": 92 + }, + "minecraft:block.bamboo.step": { + "protocol_id": 93 + }, + "minecraft:block.bamboo_sapling.break": { + "protocol_id": 94 + }, + "minecraft:block.bamboo_sapling.hit": { + "protocol_id": 95 + }, + "minecraft:block.bamboo_sapling.place": { + "protocol_id": 96 + }, + "minecraft:block.barrel.close": { + "protocol_id": 97 + }, + "minecraft:block.barrel.open": { + "protocol_id": 98 + }, + "minecraft:block.basalt.break": { + "protocol_id": 99 + }, + "minecraft:block.basalt.fall": { + "protocol_id": 103 + }, + "minecraft:block.basalt.hit": { + "protocol_id": 102 + }, + "minecraft:block.basalt.place": { + "protocol_id": 101 + }, + "minecraft:block.basalt.step": { + "protocol_id": 100 + }, + "minecraft:block.beacon.activate": { + "protocol_id": 109 + }, + "minecraft:block.beacon.ambient": { + "protocol_id": 110 + }, + "minecraft:block.beacon.deactivate": { + "protocol_id": 111 + }, + "minecraft:block.beacon.power_select": { + "protocol_id": 112 + }, + "minecraft:block.beehive.drip": { + "protocol_id": 119 + }, + "minecraft:block.beehive.enter": { + "protocol_id": 120 + }, + "minecraft:block.beehive.exit": { + "protocol_id": 121 + }, + "minecraft:block.beehive.shear": { + "protocol_id": 122 + }, + "minecraft:block.beehive.work": { + "protocol_id": 123 + }, + "minecraft:block.bell.resonate": { + "protocol_id": 125 + }, + "minecraft:block.bell.use": { + "protocol_id": 124 + }, + "minecraft:block.big_dripleaf.break": { + "protocol_id": 126 + }, + "minecraft:block.big_dripleaf.fall": { + "protocol_id": 127 + }, + "minecraft:block.big_dripleaf.hit": { + "protocol_id": 128 + }, + "minecraft:block.big_dripleaf.place": { + "protocol_id": 129 + }, + "minecraft:block.big_dripleaf.step": { + "protocol_id": 130 + }, + "minecraft:block.big_dripleaf.tilt_down": { + "protocol_id": 307 + }, + "minecraft:block.big_dripleaf.tilt_up": { + "protocol_id": 308 + }, + "minecraft:block.blastfurnace.fire_crackle": { + "protocol_id": 146 + }, + "minecraft:block.bone_block.break": { + "protocol_id": 138 + }, + "minecraft:block.bone_block.fall": { + "protocol_id": 139 + }, + "minecraft:block.bone_block.hit": { + "protocol_id": 140 + }, + "minecraft:block.bone_block.place": { + "protocol_id": 141 + }, + "minecraft:block.bone_block.step": { + "protocol_id": 142 + }, + "minecraft:block.brewing_stand.brew": { + "protocol_id": 150 + }, + "minecraft:block.bubble_column.bubble_pop": { + "protocol_id": 151 + }, + "minecraft:block.bubble_column.upwards_ambient": { + "protocol_id": 152 + }, + "minecraft:block.bubble_column.upwards_inside": { + "protocol_id": 153 + }, + "minecraft:block.bubble_column.whirlpool_ambient": { + "protocol_id": 154 + }, + "minecraft:block.bubble_column.whirlpool_inside": { + "protocol_id": 155 + }, + "minecraft:block.cake.add_candle": { + "protocol_id": 171 + }, + "minecraft:block.calcite.break": { + "protocol_id": 172 + }, + "minecraft:block.calcite.fall": { + "protocol_id": 176 + }, + "minecraft:block.calcite.hit": { + "protocol_id": 175 + }, + "minecraft:block.calcite.place": { + "protocol_id": 174 + }, + "minecraft:block.calcite.step": { + "protocol_id": 173 + }, + "minecraft:block.campfire.crackle": { + "protocol_id": 177 + }, + "minecraft:block.candle.ambient": { + "protocol_id": 178 + }, + "minecraft:block.candle.break": { + "protocol_id": 179 + }, + "minecraft:block.candle.extinguish": { + "protocol_id": 180 + }, + "minecraft:block.candle.fall": { + "protocol_id": 181 + }, + "minecraft:block.candle.hit": { + "protocol_id": 182 + }, + "minecraft:block.candle.place": { + "protocol_id": 183 + }, + "minecraft:block.candle.step": { + "protocol_id": 184 + }, + "minecraft:block.cave_vines.break": { + "protocol_id": 194 + }, + "minecraft:block.cave_vines.fall": { + "protocol_id": 195 + }, + "minecraft:block.cave_vines.hit": { + "protocol_id": 196 + }, + "minecraft:block.cave_vines.pick_berries": { + "protocol_id": 199 + }, + "minecraft:block.cave_vines.place": { + "protocol_id": 197 + }, + "minecraft:block.cave_vines.step": { + "protocol_id": 198 + }, + "minecraft:block.chain.break": { + "protocol_id": 200 + }, + "minecraft:block.chain.fall": { + "protocol_id": 201 + }, + "minecraft:block.chain.hit": { + "protocol_id": 202 + }, + "minecraft:block.chain.place": { + "protocol_id": 203 + }, + "minecraft:block.chain.step": { + "protocol_id": 204 + }, + "minecraft:block.chest.close": { + "protocol_id": 205 + }, + "minecraft:block.chest.locked": { + "protocol_id": 206 + }, + "minecraft:block.chest.open": { + "protocol_id": 207 + }, + "minecraft:block.chorus_flower.death": { + "protocol_id": 213 + }, + "minecraft:block.chorus_flower.grow": { + "protocol_id": 214 + }, + "minecraft:block.comparator.click": { + "protocol_id": 220 + }, + "minecraft:block.composter.empty": { + "protocol_id": 221 + }, + "minecraft:block.composter.fill": { + "protocol_id": 222 + }, + "minecraft:block.composter.fill_success": { + "protocol_id": 223 + }, + "minecraft:block.composter.ready": { + "protocol_id": 224 + }, + "minecraft:block.conduit.activate": { + "protocol_id": 225 + }, + "minecraft:block.conduit.ambient": { + "protocol_id": 226 + }, + "minecraft:block.conduit.ambient.short": { + "protocol_id": 227 + }, + "minecraft:block.conduit.attack.target": { + "protocol_id": 228 + }, + "minecraft:block.conduit.deactivate": { + "protocol_id": 229 + }, + "minecraft:block.copper.break": { + "protocol_id": 230 + }, + "minecraft:block.copper.fall": { + "protocol_id": 234 + }, + "minecraft:block.copper.hit": { + "protocol_id": 233 + }, + "minecraft:block.copper.place": { + "protocol_id": 232 + }, + "minecraft:block.copper.step": { + "protocol_id": 231 + }, + "minecraft:block.coral_block.break": { + "protocol_id": 235 + }, + "minecraft:block.coral_block.fall": { + "protocol_id": 236 + }, + "minecraft:block.coral_block.hit": { + "protocol_id": 237 + }, + "minecraft:block.coral_block.place": { + "protocol_id": 238 + }, + "minecraft:block.coral_block.step": { + "protocol_id": 239 + }, + "minecraft:block.crop.break": { + "protocol_id": 248 + }, + "minecraft:block.deepslate.break": { + "protocol_id": 263 + }, + "minecraft:block.deepslate.fall": { + "protocol_id": 264 + }, + "minecraft:block.deepslate.hit": { + "protocol_id": 265 + }, + "minecraft:block.deepslate.place": { + "protocol_id": 266 + }, + "minecraft:block.deepslate.step": { + "protocol_id": 267 + }, + "minecraft:block.deepslate_bricks.break": { + "protocol_id": 258 + }, + "minecraft:block.deepslate_bricks.fall": { + "protocol_id": 259 + }, + "minecraft:block.deepslate_bricks.hit": { + "protocol_id": 260 + }, + "minecraft:block.deepslate_bricks.place": { + "protocol_id": 261 + }, + "minecraft:block.deepslate_bricks.step": { + "protocol_id": 262 + }, + "minecraft:block.deepslate_tiles.break": { + "protocol_id": 268 + }, + "minecraft:block.deepslate_tiles.fall": { + "protocol_id": 269 + }, + "minecraft:block.deepslate_tiles.hit": { + "protocol_id": 270 + }, + "minecraft:block.deepslate_tiles.place": { + "protocol_id": 271 + }, + "minecraft:block.deepslate_tiles.step": { + "protocol_id": 272 + }, + "minecraft:block.dispenser.dispense": { + "protocol_id": 273 + }, + "minecraft:block.dispenser.fail": { + "protocol_id": 274 + }, + "minecraft:block.dispenser.launch": { + "protocol_id": 275 + }, + "minecraft:block.dripstone_block.break": { + "protocol_id": 292 + }, + "minecraft:block.dripstone_block.fall": { + "protocol_id": 296 + }, + "minecraft:block.dripstone_block.hit": { + "protocol_id": 295 + }, + "minecraft:block.dripstone_block.place": { + "protocol_id": 294 + }, + "minecraft:block.dripstone_block.step": { + "protocol_id": 293 + }, + "minecraft:block.enchantment_table.use": { + "protocol_id": 329 + }, + "minecraft:block.end_gateway.spawn": { + "protocol_id": 352 + }, + "minecraft:block.end_portal.spawn": { + "protocol_id": 354 + }, + "minecraft:block.end_portal_frame.fill": { + "protocol_id": 353 + }, + "minecraft:block.ender_chest.close": { + "protocol_id": 330 + }, + "minecraft:block.ender_chest.open": { + "protocol_id": 331 + }, + "minecraft:block.fence_gate.close": { + "protocol_id": 366 + }, + "minecraft:block.fence_gate.open": { + "protocol_id": 367 + }, + "minecraft:block.fire.ambient": { + "protocol_id": 377 + }, + "minecraft:block.fire.extinguish": { + "protocol_id": 378 + }, + "minecraft:block.flowering_azalea.break": { + "protocol_id": 384 + }, + "minecraft:block.flowering_azalea.fall": { + "protocol_id": 385 + }, + "minecraft:block.flowering_azalea.hit": { + "protocol_id": 386 + }, + "minecraft:block.flowering_azalea.place": { + "protocol_id": 387 + }, + "minecraft:block.flowering_azalea.step": { + "protocol_id": 388 + }, + "minecraft:block.froglight.break": { + "protocol_id": 400 + }, + "minecraft:block.froglight.fall": { + "protocol_id": 401 + }, + "minecraft:block.froglight.hit": { + "protocol_id": 402 + }, + "minecraft:block.froglight.place": { + "protocol_id": 403 + }, + "minecraft:block.froglight.step": { + "protocol_id": 404 + }, + "minecraft:block.frogspawn.break": { + "protocol_id": 406 + }, + "minecraft:block.frogspawn.fall": { + "protocol_id": 407 + }, + "minecraft:block.frogspawn.hatch": { + "protocol_id": 408 + }, + "minecraft:block.frogspawn.hit": { + "protocol_id": 409 + }, + "minecraft:block.frogspawn.place": { + "protocol_id": 410 + }, + "minecraft:block.frogspawn.step": { + "protocol_id": 405 + }, + "minecraft:block.fungus.break": { + "protocol_id": 743 + }, + "minecraft:block.fungus.fall": { + "protocol_id": 747 + }, + "minecraft:block.fungus.hit": { + "protocol_id": 746 + }, + "minecraft:block.fungus.place": { + "protocol_id": 745 + }, + "minecraft:block.fungus.step": { + "protocol_id": 744 + }, + "minecraft:block.furnace.fire_crackle": { + "protocol_id": 424 + }, + "minecraft:block.gilded_blackstone.break": { + "protocol_id": 442 + }, + "minecraft:block.gilded_blackstone.fall": { + "protocol_id": 443 + }, + "minecraft:block.gilded_blackstone.hit": { + "protocol_id": 444 + }, + "minecraft:block.gilded_blackstone.place": { + "protocol_id": 445 + }, + "minecraft:block.gilded_blackstone.step": { + "protocol_id": 446 + }, + "minecraft:block.glass.break": { + "protocol_id": 447 + }, + "minecraft:block.glass.fall": { + "protocol_id": 448 + }, + "minecraft:block.glass.hit": { + "protocol_id": 449 + }, + "minecraft:block.glass.place": { + "protocol_id": 450 + }, + "minecraft:block.glass.step": { + "protocol_id": 451 + }, + "minecraft:block.grass.break": { + "protocol_id": 482 + }, + "minecraft:block.grass.fall": { + "protocol_id": 483 + }, + "minecraft:block.grass.hit": { + "protocol_id": 484 + }, + "minecraft:block.grass.place": { + "protocol_id": 485 + }, + "minecraft:block.grass.step": { + "protocol_id": 486 + }, + "minecraft:block.gravel.break": { + "protocol_id": 487 + }, + "minecraft:block.gravel.fall": { + "protocol_id": 488 + }, + "minecraft:block.gravel.hit": { + "protocol_id": 489 + }, + "minecraft:block.gravel.place": { + "protocol_id": 490 + }, + "minecraft:block.gravel.step": { + "protocol_id": 491 + }, + "minecraft:block.grindstone.use": { + "protocol_id": 492 + }, + "minecraft:block.growing_plant.crop": { + "protocol_id": 493 + }, + "minecraft:block.hanging_roots.break": { + "protocol_id": 502 + }, + "minecraft:block.hanging_roots.fall": { + "protocol_id": 503 + }, + "minecraft:block.hanging_roots.hit": { + "protocol_id": 504 + }, + "minecraft:block.hanging_roots.place": { + "protocol_id": 505 + }, + "minecraft:block.hanging_roots.step": { + "protocol_id": 506 + }, + "minecraft:block.honey_block.break": { + "protocol_id": 516 + }, + "minecraft:block.honey_block.fall": { + "protocol_id": 517 + }, + "minecraft:block.honey_block.hit": { + "protocol_id": 518 + }, + "minecraft:block.honey_block.place": { + "protocol_id": 519 + }, + "minecraft:block.honey_block.slide": { + "protocol_id": 520 + }, + "minecraft:block.honey_block.step": { + "protocol_id": 521 + }, + "minecraft:block.iron_door.close": { + "protocol_id": 564 + }, + "minecraft:block.iron_door.open": { + "protocol_id": 565 + }, + "minecraft:block.iron_trapdoor.close": { + "protocol_id": 572 + }, + "minecraft:block.iron_trapdoor.open": { + "protocol_id": 573 + }, + "minecraft:block.ladder.break": { + "protocol_id": 581 + }, + "minecraft:block.ladder.fall": { + "protocol_id": 582 + }, + "minecraft:block.ladder.hit": { + "protocol_id": 583 + }, + "minecraft:block.ladder.place": { + "protocol_id": 584 + }, + "minecraft:block.ladder.step": { + "protocol_id": 585 + }, + "minecraft:block.lantern.break": { + "protocol_id": 586 + }, + "minecraft:block.lantern.fall": { + "protocol_id": 587 + }, + "minecraft:block.lantern.hit": { + "protocol_id": 588 + }, + "minecraft:block.lantern.place": { + "protocol_id": 589 + }, + "minecraft:block.lantern.step": { + "protocol_id": 590 + }, + "minecraft:block.large_amethyst_bud.break": { + "protocol_id": 591 + }, + "minecraft:block.large_amethyst_bud.place": { + "protocol_id": 592 + }, + "minecraft:block.lava.ambient": { + "protocol_id": 593 + }, + "minecraft:block.lava.extinguish": { + "protocol_id": 594 + }, + "minecraft:block.lava.pop": { + "protocol_id": 595 + }, + "minecraft:block.lever.click": { + "protocol_id": 598 + }, + "minecraft:block.lily_pad.place": { + "protocol_id": 1210 + }, + "minecraft:block.lodestone.break": { + "protocol_id": 612 + }, + "minecraft:block.lodestone.fall": { + "protocol_id": 616 + }, + "minecraft:block.lodestone.hit": { + "protocol_id": 615 + }, + "minecraft:block.lodestone.place": { + "protocol_id": 614 + }, + "minecraft:block.lodestone.step": { + "protocol_id": 613 + }, + "minecraft:block.mangrove_roots.break": { + "protocol_id": 624 + }, + "minecraft:block.mangrove_roots.fall": { + "protocol_id": 625 + }, + "minecraft:block.mangrove_roots.hit": { + "protocol_id": 626 + }, + "minecraft:block.mangrove_roots.place": { + "protocol_id": 627 + }, + "minecraft:block.mangrove_roots.step": { + "protocol_id": 628 + }, + "minecraft:block.medium_amethyst_bud.break": { + "protocol_id": 629 + }, + "minecraft:block.medium_amethyst_bud.place": { + "protocol_id": 630 + }, + "minecraft:block.metal.break": { + "protocol_id": 631 + }, + "minecraft:block.metal.fall": { + "protocol_id": 632 + }, + "minecraft:block.metal.hit": { + "protocol_id": 633 + }, + "minecraft:block.metal.place": { + "protocol_id": 634 + }, + "minecraft:block.metal.step": { + "protocol_id": 637 + }, + "minecraft:block.metal_pressure_plate.click_off": { + "protocol_id": 635 + }, + "minecraft:block.metal_pressure_plate.click_on": { + "protocol_id": 636 + }, + "minecraft:block.moss.break": { + "protocol_id": 651 + }, + "minecraft:block.moss.fall": { + "protocol_id": 652 + }, + "minecraft:block.moss.hit": { + "protocol_id": 653 + }, + "minecraft:block.moss.place": { + "protocol_id": 654 + }, + "minecraft:block.moss.step": { + "protocol_id": 655 + }, + "minecraft:block.moss_carpet.break": { + "protocol_id": 646 + }, + "minecraft:block.moss_carpet.fall": { + "protocol_id": 647 + }, + "minecraft:block.moss_carpet.hit": { + "protocol_id": 648 + }, + "minecraft:block.moss_carpet.place": { + "protocol_id": 649 + }, + "minecraft:block.moss_carpet.step": { + "protocol_id": 650 + }, + "minecraft:block.mud.break": { + "protocol_id": 656 + }, + "minecraft:block.mud.fall": { + "protocol_id": 657 + }, + "minecraft:block.mud.hit": { + "protocol_id": 658 + }, + "minecraft:block.mud.place": { + "protocol_id": 659 + }, + "minecraft:block.mud.step": { + "protocol_id": 660 + }, + "minecraft:block.mud_bricks.break": { + "protocol_id": 661 + }, + "minecraft:block.mud_bricks.fall": { + "protocol_id": 662 + }, + "minecraft:block.mud_bricks.hit": { + "protocol_id": 663 + }, + "minecraft:block.mud_bricks.place": { + "protocol_id": 664 + }, + "minecraft:block.mud_bricks.step": { + "protocol_id": 665 + }, + "minecraft:block.muddy_mangrove_roots.break": { + "protocol_id": 666 + }, + "minecraft:block.muddy_mangrove_roots.fall": { + "protocol_id": 667 + }, + "minecraft:block.muddy_mangrove_roots.hit": { + "protocol_id": 668 + }, + "minecraft:block.muddy_mangrove_roots.place": { + "protocol_id": 669 + }, + "minecraft:block.muddy_mangrove_roots.step": { + "protocol_id": 670 + }, + "minecraft:block.nether_bricks.break": { + "protocol_id": 716 + }, + "minecraft:block.nether_bricks.fall": { + "protocol_id": 720 + }, + "minecraft:block.nether_bricks.hit": { + "protocol_id": 719 + }, + "minecraft:block.nether_bricks.place": { + "protocol_id": 718 + }, + "minecraft:block.nether_bricks.step": { + "protocol_id": 717 + }, + "minecraft:block.nether_gold_ore.break": { + "protocol_id": 933 + }, + "minecraft:block.nether_gold_ore.fall": { + "protocol_id": 934 + }, + "minecraft:block.nether_gold_ore.hit": { + "protocol_id": 935 + }, + "minecraft:block.nether_gold_ore.place": { + "protocol_id": 936 + }, + "minecraft:block.nether_gold_ore.step": { + "protocol_id": 937 + }, + "minecraft:block.nether_ore.break": { + "protocol_id": 938 + }, + "minecraft:block.nether_ore.fall": { + "protocol_id": 939 + }, + "minecraft:block.nether_ore.hit": { + "protocol_id": 940 + }, + "minecraft:block.nether_ore.place": { + "protocol_id": 941 + }, + "minecraft:block.nether_ore.step": { + "protocol_id": 942 + }, + "minecraft:block.nether_sprouts.break": { + "protocol_id": 738 + }, + "minecraft:block.nether_sprouts.fall": { + "protocol_id": 742 + }, + "minecraft:block.nether_sprouts.hit": { + "protocol_id": 741 + }, + "minecraft:block.nether_sprouts.place": { + "protocol_id": 740 + }, + "minecraft:block.nether_sprouts.step": { + "protocol_id": 739 + }, + "minecraft:block.nether_wart.break": { + "protocol_id": 721 + }, + "minecraft:block.netherite_block.break": { + "protocol_id": 758 + }, + "minecraft:block.netherite_block.fall": { + "protocol_id": 762 + }, + "minecraft:block.netherite_block.hit": { + "protocol_id": 761 + }, + "minecraft:block.netherite_block.place": { + "protocol_id": 760 + }, + "minecraft:block.netherite_block.step": { + "protocol_id": 759 + }, + "minecraft:block.netherrack.break": { + "protocol_id": 763 + }, + "minecraft:block.netherrack.fall": { + "protocol_id": 767 + }, + "minecraft:block.netherrack.hit": { + "protocol_id": 766 + }, + "minecraft:block.netherrack.place": { + "protocol_id": 765 + }, + "minecraft:block.netherrack.step": { + "protocol_id": 764 + }, + "minecraft:block.note_block.banjo": { + "protocol_id": 783 + }, + "minecraft:block.note_block.basedrum": { + "protocol_id": 768 + }, + "minecraft:block.note_block.bass": { + "protocol_id": 769 + }, + "minecraft:block.note_block.bell": { + "protocol_id": 770 + }, + "minecraft:block.note_block.bit": { + "protocol_id": 782 + }, + "minecraft:block.note_block.chime": { + "protocol_id": 771 + }, + "minecraft:block.note_block.cow_bell": { + "protocol_id": 780 + }, + "minecraft:block.note_block.didgeridoo": { + "protocol_id": 781 + }, + "minecraft:block.note_block.flute": { + "protocol_id": 772 + }, + "minecraft:block.note_block.guitar": { + "protocol_id": 773 + }, + "minecraft:block.note_block.harp": { + "protocol_id": 774 + }, + "minecraft:block.note_block.hat": { + "protocol_id": 775 + }, + "minecraft:block.note_block.iron_xylophone": { + "protocol_id": 779 + }, + "minecraft:block.note_block.pling": { + "protocol_id": 776 + }, + "minecraft:block.note_block.snare": { + "protocol_id": 777 + }, + "minecraft:block.note_block.xylophone": { + "protocol_id": 778 + }, + "minecraft:block.nylium.break": { + "protocol_id": 733 + }, + "minecraft:block.nylium.fall": { + "protocol_id": 737 + }, + "minecraft:block.nylium.hit": { + "protocol_id": 736 + }, + "minecraft:block.nylium.place": { + "protocol_id": 735 + }, + "minecraft:block.nylium.step": { + "protocol_id": 734 + }, + "minecraft:block.packed_mud.break": { + "protocol_id": 723 + }, + "minecraft:block.packed_mud.fall": { + "protocol_id": 724 + }, + "minecraft:block.packed_mud.hit": { + "protocol_id": 725 + }, + "minecraft:block.packed_mud.place": { + "protocol_id": 726 + }, + "minecraft:block.packed_mud.step": { + "protocol_id": 727 + }, + "minecraft:block.piston.contract": { + "protocol_id": 870 + }, + "minecraft:block.piston.extend": { + "protocol_id": 871 + }, + "minecraft:block.pointed_dripstone.break": { + "protocol_id": 297 + }, + "minecraft:block.pointed_dripstone.drip_lava": { + "protocol_id": 303 + }, + "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { + "protocol_id": 305 + }, + "minecraft:block.pointed_dripstone.drip_water": { + "protocol_id": 304 + }, + "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { + "protocol_id": 306 + }, + "minecraft:block.pointed_dripstone.fall": { + "protocol_id": 301 + }, + "minecraft:block.pointed_dripstone.hit": { + "protocol_id": 300 + }, + "minecraft:block.pointed_dripstone.land": { + "protocol_id": 302 + }, + "minecraft:block.pointed_dripstone.place": { + "protocol_id": 299 + }, + "minecraft:block.pointed_dripstone.step": { + "protocol_id": 298 + }, + "minecraft:block.polished_deepslate.break": { + "protocol_id": 898 + }, + "minecraft:block.polished_deepslate.fall": { + "protocol_id": 899 + }, + "minecraft:block.polished_deepslate.hit": { + "protocol_id": 900 + }, + "minecraft:block.polished_deepslate.place": { + "protocol_id": 901 + }, + "minecraft:block.polished_deepslate.step": { + "protocol_id": 902 + }, + "minecraft:block.portal.ambient": { + "protocol_id": 903 + }, + "minecraft:block.portal.travel": { + "protocol_id": 904 + }, + "minecraft:block.portal.trigger": { + "protocol_id": 905 + }, + "minecraft:block.powder_snow.break": { + "protocol_id": 906 + }, + "minecraft:block.powder_snow.fall": { + "protocol_id": 907 + }, + "minecraft:block.powder_snow.hit": { + "protocol_id": 908 + }, + "minecraft:block.powder_snow.place": { + "protocol_id": 909 + }, + "minecraft:block.powder_snow.step": { + "protocol_id": 910 + }, + "minecraft:block.pumpkin.carve": { + "protocol_id": 918 + }, + "minecraft:block.redstone_torch.burnout": { + "protocol_id": 943 + }, + "minecraft:block.respawn_anchor.ambient": { + "protocol_id": 944 + }, + "minecraft:block.respawn_anchor.charge": { + "protocol_id": 945 + }, + "minecraft:block.respawn_anchor.deplete": { + "protocol_id": 946 + }, + "minecraft:block.respawn_anchor.set_spawn": { + "protocol_id": 947 + }, + "minecraft:block.rooted_dirt.break": { + "protocol_id": 948 + }, + "minecraft:block.rooted_dirt.fall": { + "protocol_id": 949 + }, + "minecraft:block.rooted_dirt.hit": { + "protocol_id": 950 + }, + "minecraft:block.rooted_dirt.place": { + "protocol_id": 951 + }, + "minecraft:block.rooted_dirt.step": { + "protocol_id": 952 + }, + "minecraft:block.roots.break": { + "protocol_id": 419 + }, + "minecraft:block.roots.fall": { + "protocol_id": 423 + }, + "minecraft:block.roots.hit": { + "protocol_id": 422 + }, + "minecraft:block.roots.place": { + "protocol_id": 421 + }, + "minecraft:block.roots.step": { + "protocol_id": 420 + }, + "minecraft:block.sand.break": { + "protocol_id": 957 + }, + "minecraft:block.sand.fall": { + "protocol_id": 958 + }, + "minecraft:block.sand.hit": { + "protocol_id": 959 + }, + "minecraft:block.sand.place": { + "protocol_id": 960 + }, + "minecraft:block.sand.step": { + "protocol_id": 961 + }, + "minecraft:block.scaffolding.break": { + "protocol_id": 962 + }, + "minecraft:block.scaffolding.fall": { + "protocol_id": 963 + }, + "minecraft:block.scaffolding.hit": { + "protocol_id": 964 + }, + "minecraft:block.scaffolding.place": { + "protocol_id": 965 + }, + "minecraft:block.scaffolding.step": { + "protocol_id": 966 + }, + "minecraft:block.sculk.break": { + "protocol_id": 969 + }, + "minecraft:block.sculk.charge": { + "protocol_id": 968 + }, + "minecraft:block.sculk.fall": { + "protocol_id": 970 + }, + "minecraft:block.sculk.hit": { + "protocol_id": 971 + }, + "minecraft:block.sculk.place": { + "protocol_id": 972 + }, + "minecraft:block.sculk.spread": { + "protocol_id": 967 + }, + "minecraft:block.sculk.step": { + "protocol_id": 973 + }, + "minecraft:block.sculk_catalyst.bloom": { + "protocol_id": 974 + }, + "minecraft:block.sculk_catalyst.break": { + "protocol_id": 975 + }, + "minecraft:block.sculk_catalyst.fall": { + "protocol_id": 976 + }, + "minecraft:block.sculk_catalyst.hit": { + "protocol_id": 977 + }, + "minecraft:block.sculk_catalyst.place": { + "protocol_id": 978 + }, + "minecraft:block.sculk_catalyst.step": { + "protocol_id": 979 + }, + "minecraft:block.sculk_sensor.break": { + "protocol_id": 982 + }, + "minecraft:block.sculk_sensor.clicking": { + "protocol_id": 980 + }, + "minecraft:block.sculk_sensor.clicking_stop": { + "protocol_id": 981 + }, + "minecraft:block.sculk_sensor.fall": { + "protocol_id": 983 + }, + "minecraft:block.sculk_sensor.hit": { + "protocol_id": 984 + }, + "minecraft:block.sculk_sensor.place": { + "protocol_id": 985 + }, + "minecraft:block.sculk_sensor.step": { + "protocol_id": 986 + }, + "minecraft:block.sculk_shrieker.break": { + "protocol_id": 987 + }, + "minecraft:block.sculk_shrieker.fall": { + "protocol_id": 988 + }, + "minecraft:block.sculk_shrieker.hit": { + "protocol_id": 989 + }, + "minecraft:block.sculk_shrieker.place": { + "protocol_id": 990 + }, + "minecraft:block.sculk_shrieker.shriek": { + "protocol_id": 991 + }, + "minecraft:block.sculk_shrieker.step": { + "protocol_id": 992 + }, + "minecraft:block.sculk_vein.break": { + "protocol_id": 993 + }, + "minecraft:block.sculk_vein.fall": { + "protocol_id": 994 + }, + "minecraft:block.sculk_vein.hit": { + "protocol_id": 995 + }, + "minecraft:block.sculk_vein.place": { + "protocol_id": 996 + }, + "minecraft:block.sculk_vein.step": { + "protocol_id": 997 + }, + "minecraft:block.shroomlight.break": { + "protocol_id": 1005 + }, + "minecraft:block.shroomlight.fall": { + "protocol_id": 1009 + }, + "minecraft:block.shroomlight.hit": { + "protocol_id": 1008 + }, + "minecraft:block.shroomlight.place": { + "protocol_id": 1007 + }, + "minecraft:block.shroomlight.step": { + "protocol_id": 1006 + }, + "minecraft:block.shulker_box.close": { + "protocol_id": 1012 + }, + "minecraft:block.shulker_box.open": { + "protocol_id": 1013 + }, + "minecraft:block.slime_block.break": { + "protocol_id": 1046 + }, + "minecraft:block.slime_block.fall": { + "protocol_id": 1047 + }, + "minecraft:block.slime_block.hit": { + "protocol_id": 1048 + }, + "minecraft:block.slime_block.place": { + "protocol_id": 1049 + }, + "minecraft:block.slime_block.step": { + "protocol_id": 1050 + }, + "minecraft:block.small_amethyst_bud.break": { + "protocol_id": 1051 + }, + "minecraft:block.small_amethyst_bud.place": { + "protocol_id": 1052 + }, + "minecraft:block.small_dripleaf.break": { + "protocol_id": 1053 + }, + "minecraft:block.small_dripleaf.fall": { + "protocol_id": 1054 + }, + "minecraft:block.small_dripleaf.hit": { + "protocol_id": 1055 + }, + "minecraft:block.small_dripleaf.place": { + "protocol_id": 1056 + }, + "minecraft:block.small_dripleaf.step": { + "protocol_id": 1057 + }, + "minecraft:block.smithing_table.use": { + "protocol_id": 1087 + }, + "minecraft:block.smoker.smoke": { + "protocol_id": 1088 + }, + "minecraft:block.snow.break": { + "protocol_id": 1090 + }, + "minecraft:block.snow.fall": { + "protocol_id": 1091 + }, + "minecraft:block.snow.hit": { + "protocol_id": 1097 + }, + "minecraft:block.snow.place": { + "protocol_id": 1098 + }, + "minecraft:block.snow.step": { + "protocol_id": 1099 + }, + "minecraft:block.soul_sand.break": { + "protocol_id": 1058 + }, + "minecraft:block.soul_sand.fall": { + "protocol_id": 1062 + }, + "minecraft:block.soul_sand.hit": { + "protocol_id": 1061 + }, + "minecraft:block.soul_sand.place": { + "protocol_id": 1060 + }, + "minecraft:block.soul_sand.step": { + "protocol_id": 1059 + }, + "minecraft:block.soul_soil.break": { + "protocol_id": 1063 + }, + "minecraft:block.soul_soil.fall": { + "protocol_id": 1067 + }, + "minecraft:block.soul_soil.hit": { + "protocol_id": 1066 + }, + "minecraft:block.soul_soil.place": { + "protocol_id": 1065 + }, + "minecraft:block.soul_soil.step": { + "protocol_id": 1064 + }, + "minecraft:block.spore_blossom.break": { + "protocol_id": 1069 + }, + "minecraft:block.spore_blossom.fall": { + "protocol_id": 1070 + }, + "minecraft:block.spore_blossom.hit": { + "protocol_id": 1071 + }, + "minecraft:block.spore_blossom.place": { + "protocol_id": 1072 + }, + "minecraft:block.spore_blossom.step": { + "protocol_id": 1073 + }, + "minecraft:block.stem.break": { + "protocol_id": 728 + }, + "minecraft:block.stem.fall": { + "protocol_id": 732 + }, + "minecraft:block.stem.hit": { + "protocol_id": 731 + }, + "minecraft:block.stem.place": { + "protocol_id": 730 + }, + "minecraft:block.stem.step": { + "protocol_id": 729 + }, + "minecraft:block.stone.break": { + "protocol_id": 1112 + }, + "minecraft:block.stone.fall": { + "protocol_id": 1115 + }, + "minecraft:block.stone.hit": { + "protocol_id": 1116 + }, + "minecraft:block.stone.place": { + "protocol_id": 1117 + }, + "minecraft:block.stone.step": { + "protocol_id": 1120 + }, + "minecraft:block.stone_button.click_off": { + "protocol_id": 1113 + }, + "minecraft:block.stone_button.click_on": { + "protocol_id": 1114 + }, + "minecraft:block.stone_pressure_plate.click_off": { + "protocol_id": 1118 + }, + "minecraft:block.stone_pressure_plate.click_on": { + "protocol_id": 1119 + }, + "minecraft:block.sweet_berry_bush.break": { + "protocol_id": 1125 + }, + "minecraft:block.sweet_berry_bush.pick_berries": { + "protocol_id": 1127 + }, + "minecraft:block.sweet_berry_bush.place": { + "protocol_id": 1126 + }, + "minecraft:block.tripwire.attach": { + "protocol_id": 1143 + }, + "minecraft:block.tripwire.click_off": { + "protocol_id": 1144 + }, + "minecraft:block.tripwire.click_on": { + "protocol_id": 1145 + }, + "minecraft:block.tripwire.detach": { + "protocol_id": 1146 + }, + "minecraft:block.tuff.break": { + "protocol_id": 1151 + }, + "minecraft:block.tuff.fall": { + "protocol_id": 1155 + }, + "minecraft:block.tuff.hit": { + "protocol_id": 1154 + }, + "minecraft:block.tuff.place": { + "protocol_id": 1153 + }, + "minecraft:block.tuff.step": { + "protocol_id": 1152 + }, + "minecraft:block.vine.break": { + "protocol_id": 1205 + }, + "minecraft:block.vine.fall": { + "protocol_id": 1206 + }, + "minecraft:block.vine.hit": { + "protocol_id": 1207 + }, + "minecraft:block.vine.place": { + "protocol_id": 1208 + }, + "minecraft:block.vine.step": { + "protocol_id": 1209 + }, + "minecraft:block.wart_block.break": { + "protocol_id": 753 + }, + "minecraft:block.wart_block.fall": { + "protocol_id": 757 + }, + "minecraft:block.wart_block.hit": { + "protocol_id": 756 + }, + "minecraft:block.wart_block.place": { + "protocol_id": 755 + }, + "minecraft:block.wart_block.step": { + "protocol_id": 754 + }, + "minecraft:block.water.ambient": { + "protocol_id": 1241 + }, + "minecraft:block.weeping_vines.break": { + "protocol_id": 748 + }, + "minecraft:block.weeping_vines.fall": { + "protocol_id": 752 + }, + "minecraft:block.weeping_vines.hit": { + "protocol_id": 751 + }, + "minecraft:block.weeping_vines.place": { + "protocol_id": 750 + }, + "minecraft:block.weeping_vines.step": { + "protocol_id": 749 + }, + "minecraft:block.wet_grass.break": { + "protocol_id": 1244 + }, + "minecraft:block.wet_grass.fall": { + "protocol_id": 1245 + }, + "minecraft:block.wet_grass.hit": { + "protocol_id": 1246 + }, + "minecraft:block.wet_grass.place": { + "protocol_id": 1247 + }, + "minecraft:block.wet_grass.step": { + "protocol_id": 1248 + }, + "minecraft:block.wood.break": { + "protocol_id": 1278 + }, + "minecraft:block.wood.fall": { + "protocol_id": 1281 + }, + "minecraft:block.wood.hit": { + "protocol_id": 1282 + }, + "minecraft:block.wood.place": { + "protocol_id": 1283 + }, + "minecraft:block.wood.step": { + "protocol_id": 1286 + }, + "minecraft:block.wooden_button.click_off": { + "protocol_id": 1279 + }, + "minecraft:block.wooden_button.click_on": { + "protocol_id": 1280 + }, + "minecraft:block.wooden_door.close": { + "protocol_id": 1274 + }, + "minecraft:block.wooden_door.open": { + "protocol_id": 1275 + }, + "minecraft:block.wooden_pressure_plate.click_off": { + "protocol_id": 1284 + }, + "minecraft:block.wooden_pressure_plate.click_on": { + "protocol_id": 1285 + }, + "minecraft:block.wooden_trapdoor.close": { + "protocol_id": 1276 + }, + "minecraft:block.wooden_trapdoor.open": { + "protocol_id": 1277 + }, + "minecraft:block.wool.break": { + "protocol_id": 1287 + }, + "minecraft:block.wool.fall": { + "protocol_id": 1288 + }, + "minecraft:block.wool.hit": { + "protocol_id": 1289 + }, + "minecraft:block.wool.place": { + "protocol_id": 1290 + }, + "minecraft:block.wool.step": { + "protocol_id": 1291 + }, + "minecraft:enchant.thorns.hit": { + "protocol_id": 1132 + }, + "minecraft:entity.allay.ambient_with_item": { "protocol_id": 0 }, - "minecraft:entity": { + "minecraft:entity.allay.ambient_without_item": { "protocol_id": 1 + }, + "minecraft:entity.allay.death": { + "protocol_id": 2 + }, + "minecraft:entity.allay.hurt": { + "protocol_id": 3 + }, + "minecraft:entity.allay.item_given": { + "protocol_id": 4 + }, + "minecraft:entity.allay.item_taken": { + "protocol_id": 5 + }, + "minecraft:entity.allay.item_thrown": { + "protocol_id": 6 + }, + "minecraft:entity.armor_stand.break": { + "protocol_id": 62 + }, + "minecraft:entity.armor_stand.fall": { + "protocol_id": 63 + }, + "minecraft:entity.armor_stand.hit": { + "protocol_id": 64 + }, + "minecraft:entity.armor_stand.place": { + "protocol_id": 65 + }, + "minecraft:entity.arrow.hit": { + "protocol_id": 66 + }, + "minecraft:entity.arrow.hit_player": { + "protocol_id": 67 + }, + "minecraft:entity.arrow.shoot": { + "protocol_id": 68 + }, + "minecraft:entity.axolotl.attack": { + "protocol_id": 72 + }, + "minecraft:entity.axolotl.death": { + "protocol_id": 73 + }, + "minecraft:entity.axolotl.hurt": { + "protocol_id": 74 + }, + "minecraft:entity.axolotl.idle_air": { + "protocol_id": 75 + }, + "minecraft:entity.axolotl.idle_water": { + "protocol_id": 76 + }, + "minecraft:entity.axolotl.splash": { + "protocol_id": 77 + }, + "minecraft:entity.axolotl.swim": { + "protocol_id": 78 + }, + "minecraft:entity.bat.ambient": { + "protocol_id": 104 + }, + "minecraft:entity.bat.death": { + "protocol_id": 105 + }, + "minecraft:entity.bat.hurt": { + "protocol_id": 106 + }, + "minecraft:entity.bat.loop": { + "protocol_id": 107 + }, + "minecraft:entity.bat.takeoff": { + "protocol_id": 108 + }, + "minecraft:entity.bee.death": { + "protocol_id": 113 + }, + "minecraft:entity.bee.hurt": { + "protocol_id": 114 + }, + "minecraft:entity.bee.loop": { + "protocol_id": 116 + }, + "minecraft:entity.bee.loop_aggressive": { + "protocol_id": 115 + }, + "minecraft:entity.bee.pollinate": { + "protocol_id": 118 + }, + "minecraft:entity.bee.sting": { + "protocol_id": 117 + }, + "minecraft:entity.blaze.ambient": { + "protocol_id": 131 + }, + "minecraft:entity.blaze.burn": { + "protocol_id": 132 + }, + "minecraft:entity.blaze.death": { + "protocol_id": 133 + }, + "minecraft:entity.blaze.hurt": { + "protocol_id": 134 + }, + "minecraft:entity.blaze.shoot": { + "protocol_id": 135 + }, + "minecraft:entity.boat.paddle_land": { + "protocol_id": 136 + }, + "minecraft:entity.boat.paddle_water": { + "protocol_id": 137 + }, + "minecraft:entity.cat.ambient": { + "protocol_id": 185 + }, + "minecraft:entity.cat.beg_for_food": { + "protocol_id": 190 + }, + "minecraft:entity.cat.death": { + "protocol_id": 187 + }, + "minecraft:entity.cat.eat": { + "protocol_id": 188 + }, + "minecraft:entity.cat.hiss": { + "protocol_id": 189 + }, + "minecraft:entity.cat.hurt": { + "protocol_id": 191 + }, + "minecraft:entity.cat.purr": { + "protocol_id": 192 + }, + "minecraft:entity.cat.purreow": { + "protocol_id": 193 + }, + "minecraft:entity.cat.stray_ambient": { + "protocol_id": 186 + }, + "minecraft:entity.chicken.ambient": { + "protocol_id": 208 + }, + "minecraft:entity.chicken.death": { + "protocol_id": 209 + }, + "minecraft:entity.chicken.egg": { + "protocol_id": 210 + }, + "minecraft:entity.chicken.hurt": { + "protocol_id": 211 + }, + "minecraft:entity.chicken.step": { + "protocol_id": 212 + }, + "minecraft:entity.cod.ambient": { + "protocol_id": 216 + }, + "minecraft:entity.cod.death": { + "protocol_id": 217 + }, + "minecraft:entity.cod.flop": { + "protocol_id": 218 + }, + "minecraft:entity.cod.hurt": { + "protocol_id": 219 + }, + "minecraft:entity.cow.ambient": { + "protocol_id": 240 + }, + "minecraft:entity.cow.death": { + "protocol_id": 241 + }, + "minecraft:entity.cow.hurt": { + "protocol_id": 242 + }, + "minecraft:entity.cow.milk": { + "protocol_id": 243 + }, + "minecraft:entity.cow.step": { + "protocol_id": 244 + }, + "minecraft:entity.creeper.death": { + "protocol_id": 245 + }, + "minecraft:entity.creeper.hurt": { + "protocol_id": 246 + }, + "minecraft:entity.creeper.primed": { + "protocol_id": 247 + }, + "minecraft:entity.dolphin.ambient": { + "protocol_id": 276 + }, + "minecraft:entity.dolphin.ambient_water": { + "protocol_id": 277 + }, + "minecraft:entity.dolphin.attack": { + "protocol_id": 278 + }, + "minecraft:entity.dolphin.death": { + "protocol_id": 279 + }, + "minecraft:entity.dolphin.eat": { + "protocol_id": 280 + }, + "minecraft:entity.dolphin.hurt": { + "protocol_id": 281 + }, + "minecraft:entity.dolphin.jump": { + "protocol_id": 282 + }, + "minecraft:entity.dolphin.play": { + "protocol_id": 283 + }, + "minecraft:entity.dolphin.splash": { + "protocol_id": 284 + }, + "minecraft:entity.dolphin.swim": { + "protocol_id": 285 + }, + "minecraft:entity.donkey.ambient": { + "protocol_id": 286 + }, + "minecraft:entity.donkey.angry": { + "protocol_id": 287 + }, + "minecraft:entity.donkey.chest": { + "protocol_id": 288 + }, + "minecraft:entity.donkey.death": { + "protocol_id": 289 + }, + "minecraft:entity.donkey.eat": { + "protocol_id": 290 + }, + "minecraft:entity.donkey.hurt": { + "protocol_id": 291 + }, + "minecraft:entity.dragon_fireball.explode": { + "protocol_id": 334 + }, + "minecraft:entity.drowned.ambient": { + "protocol_id": 309 + }, + "minecraft:entity.drowned.ambient_water": { + "protocol_id": 310 + }, + "minecraft:entity.drowned.death": { + "protocol_id": 311 + }, + "minecraft:entity.drowned.death_water": { + "protocol_id": 312 + }, + "minecraft:entity.drowned.hurt": { + "protocol_id": 313 + }, + "minecraft:entity.drowned.hurt_water": { + "protocol_id": 314 + }, + "minecraft:entity.drowned.shoot": { + "protocol_id": 315 + }, + "minecraft:entity.drowned.step": { + "protocol_id": 316 + }, + "minecraft:entity.drowned.swim": { + "protocol_id": 317 + }, + "minecraft:entity.egg.throw": { + "protocol_id": 319 + }, + "minecraft:entity.elder_guardian.ambient": { + "protocol_id": 320 + }, + "minecraft:entity.elder_guardian.ambient_land": { + "protocol_id": 321 + }, + "minecraft:entity.elder_guardian.curse": { + "protocol_id": 322 + }, + "minecraft:entity.elder_guardian.death": { + "protocol_id": 323 + }, + "minecraft:entity.elder_guardian.death_land": { + "protocol_id": 324 + }, + "minecraft:entity.elder_guardian.flop": { + "protocol_id": 325 + }, + "minecraft:entity.elder_guardian.hurt": { + "protocol_id": 326 + }, + "minecraft:entity.elder_guardian.hurt_land": { + "protocol_id": 327 + }, + "minecraft:entity.ender_dragon.ambient": { + "protocol_id": 332 + }, + "minecraft:entity.ender_dragon.death": { + "protocol_id": 333 + }, + "minecraft:entity.ender_dragon.flap": { + "protocol_id": 335 + }, + "minecraft:entity.ender_dragon.growl": { + "protocol_id": 336 + }, + "minecraft:entity.ender_dragon.hurt": { + "protocol_id": 337 + }, + "minecraft:entity.ender_dragon.shoot": { + "protocol_id": 338 + }, + "minecraft:entity.ender_eye.death": { + "protocol_id": 339 + }, + "minecraft:entity.ender_eye.launch": { + "protocol_id": 340 + }, + "minecraft:entity.ender_pearl.throw": { + "protocol_id": 351 + }, + "minecraft:entity.enderman.ambient": { + "protocol_id": 341 + }, + "minecraft:entity.enderman.death": { + "protocol_id": 342 + }, + "minecraft:entity.enderman.hurt": { + "protocol_id": 343 + }, + "minecraft:entity.enderman.scream": { + "protocol_id": 344 + }, + "minecraft:entity.enderman.stare": { + "protocol_id": 345 + }, + "minecraft:entity.enderman.teleport": { + "protocol_id": 346 + }, + "minecraft:entity.endermite.ambient": { + "protocol_id": 347 + }, + "minecraft:entity.endermite.death": { + "protocol_id": 348 + }, + "minecraft:entity.endermite.hurt": { + "protocol_id": 349 + }, + "minecraft:entity.endermite.step": { + "protocol_id": 350 + }, + "minecraft:entity.evoker.ambient": { + "protocol_id": 355 + }, + "minecraft:entity.evoker.cast_spell": { + "protocol_id": 356 + }, + "minecraft:entity.evoker.celebrate": { + "protocol_id": 357 + }, + "minecraft:entity.evoker.death": { + "protocol_id": 358 + }, + "minecraft:entity.evoker.hurt": { + "protocol_id": 360 + }, + "minecraft:entity.evoker.prepare_attack": { + "protocol_id": 361 + }, + "minecraft:entity.evoker.prepare_summon": { + "protocol_id": 362 + }, + "minecraft:entity.evoker.prepare_wololo": { + "protocol_id": 363 + }, + "minecraft:entity.evoker_fangs.attack": { + "protocol_id": 359 + }, + "minecraft:entity.experience_bottle.throw": { + "protocol_id": 364 + }, + "minecraft:entity.experience_orb.pickup": { + "protocol_id": 365 + }, + "minecraft:entity.firework_rocket.blast": { + "protocol_id": 369 + }, + "minecraft:entity.firework_rocket.blast_far": { + "protocol_id": 370 + }, + "minecraft:entity.firework_rocket.large_blast": { + "protocol_id": 371 + }, + "minecraft:entity.firework_rocket.large_blast_far": { + "protocol_id": 372 + }, + "minecraft:entity.firework_rocket.launch": { + "protocol_id": 373 + }, + "minecraft:entity.firework_rocket.shoot": { + "protocol_id": 374 + }, + "minecraft:entity.firework_rocket.twinkle": { + "protocol_id": 375 + }, + "minecraft:entity.firework_rocket.twinkle_far": { + "protocol_id": 376 + }, + "minecraft:entity.fish.swim": { + "protocol_id": 379 + }, + "minecraft:entity.fishing_bobber.retrieve": { + "protocol_id": 380 + }, + "minecraft:entity.fishing_bobber.splash": { + "protocol_id": 381 + }, + "minecraft:entity.fishing_bobber.throw": { + "protocol_id": 382 + }, + "minecraft:entity.fox.aggro": { + "protocol_id": 389 + }, + "minecraft:entity.fox.ambient": { + "protocol_id": 390 + }, + "minecraft:entity.fox.bite": { + "protocol_id": 391 + }, + "minecraft:entity.fox.death": { + "protocol_id": 392 + }, + "minecraft:entity.fox.eat": { + "protocol_id": 393 + }, + "minecraft:entity.fox.hurt": { + "protocol_id": 394 + }, + "minecraft:entity.fox.screech": { + "protocol_id": 395 + }, + "minecraft:entity.fox.sleep": { + "protocol_id": 396 + }, + "minecraft:entity.fox.sniff": { + "protocol_id": 397 + }, + "minecraft:entity.fox.spit": { + "protocol_id": 398 + }, + "minecraft:entity.fox.teleport": { + "protocol_id": 399 + }, + "minecraft:entity.frog.ambient": { + "protocol_id": 411 + }, + "minecraft:entity.frog.death": { + "protocol_id": 412 + }, + "minecraft:entity.frog.eat": { + "protocol_id": 413 + }, + "minecraft:entity.frog.hurt": { + "protocol_id": 414 + }, + "minecraft:entity.frog.lay_spawn": { + "protocol_id": 415 + }, + "minecraft:entity.frog.long_jump": { + "protocol_id": 416 + }, + "minecraft:entity.frog.step": { + "protocol_id": 417 + }, + "minecraft:entity.frog.tongue": { + "protocol_id": 418 + }, + "minecraft:entity.generic.big_fall": { + "protocol_id": 425 + }, + "minecraft:entity.generic.burn": { + "protocol_id": 426 + }, + "minecraft:entity.generic.death": { + "protocol_id": 427 + }, + "minecraft:entity.generic.drink": { + "protocol_id": 428 + }, + "minecraft:entity.generic.eat": { + "protocol_id": 429 + }, + "minecraft:entity.generic.explode": { + "protocol_id": 430 + }, + "minecraft:entity.generic.extinguish_fire": { + "protocol_id": 431 + }, + "minecraft:entity.generic.hurt": { + "protocol_id": 432 + }, + "minecraft:entity.generic.small_fall": { + "protocol_id": 433 + }, + "minecraft:entity.generic.splash": { + "protocol_id": 434 + }, + "minecraft:entity.generic.swim": { + "protocol_id": 435 + }, + "minecraft:entity.ghast.ambient": { + "protocol_id": 436 + }, + "minecraft:entity.ghast.death": { + "protocol_id": 437 + }, + "minecraft:entity.ghast.hurt": { + "protocol_id": 438 + }, + "minecraft:entity.ghast.scream": { + "protocol_id": 439 + }, + "minecraft:entity.ghast.shoot": { + "protocol_id": 440 + }, + "minecraft:entity.ghast.warn": { + "protocol_id": 441 + }, + "minecraft:entity.glow_item_frame.add_item": { + "protocol_id": 453 + }, + "minecraft:entity.glow_item_frame.break": { + "protocol_id": 454 + }, + "minecraft:entity.glow_item_frame.place": { + "protocol_id": 455 + }, + "minecraft:entity.glow_item_frame.remove_item": { + "protocol_id": 456 + }, + "minecraft:entity.glow_item_frame.rotate_item": { + "protocol_id": 457 + }, + "minecraft:entity.glow_squid.ambient": { + "protocol_id": 458 + }, + "minecraft:entity.glow_squid.death": { + "protocol_id": 459 + }, + "minecraft:entity.glow_squid.hurt": { + "protocol_id": 460 + }, + "minecraft:entity.glow_squid.squirt": { + "protocol_id": 461 + }, + "minecraft:entity.goat.ambient": { + "protocol_id": 462 + }, + "minecraft:entity.goat.death": { + "protocol_id": 463 + }, + "minecraft:entity.goat.eat": { + "protocol_id": 464 + }, + "minecraft:entity.goat.horn_break": { + "protocol_id": 470 + }, + "minecraft:entity.goat.hurt": { + "protocol_id": 465 + }, + "minecraft:entity.goat.long_jump": { + "protocol_id": 466 + }, + "minecraft:entity.goat.milk": { + "protocol_id": 467 + }, + "minecraft:entity.goat.prepare_ram": { + "protocol_id": 468 + }, + "minecraft:entity.goat.ram_impact": { + "protocol_id": 469 + }, + "minecraft:entity.goat.screaming.ambient": { + "protocol_id": 472 + }, + "minecraft:entity.goat.screaming.death": { + "protocol_id": 473 + }, + "minecraft:entity.goat.screaming.eat": { + "protocol_id": 474 + }, + "minecraft:entity.goat.screaming.horn_break": { + "protocol_id": 480 + }, + "minecraft:entity.goat.screaming.hurt": { + "protocol_id": 475 + }, + "minecraft:entity.goat.screaming.long_jump": { + "protocol_id": 476 + }, + "minecraft:entity.goat.screaming.milk": { + "protocol_id": 477 + }, + "minecraft:entity.goat.screaming.prepare_ram": { + "protocol_id": 478 + }, + "minecraft:entity.goat.screaming.ram_impact": { + "protocol_id": 479 + }, + "minecraft:entity.goat.step": { + "protocol_id": 481 + }, + "minecraft:entity.guardian.ambient": { + "protocol_id": 494 + }, + "minecraft:entity.guardian.ambient_land": { + "protocol_id": 495 + }, + "minecraft:entity.guardian.attack": { + "protocol_id": 496 + }, + "minecraft:entity.guardian.death": { + "protocol_id": 497 + }, + "minecraft:entity.guardian.death_land": { + "protocol_id": 498 + }, + "minecraft:entity.guardian.flop": { + "protocol_id": 499 + }, + "minecraft:entity.guardian.hurt": { + "protocol_id": 500 + }, + "minecraft:entity.guardian.hurt_land": { + "protocol_id": 501 + }, + "minecraft:entity.hoglin.ambient": { + "protocol_id": 508 + }, + "minecraft:entity.hoglin.angry": { + "protocol_id": 509 + }, + "minecraft:entity.hoglin.attack": { + "protocol_id": 510 + }, + "minecraft:entity.hoglin.converted_to_zombified": { + "protocol_id": 511 + }, + "minecraft:entity.hoglin.death": { + "protocol_id": 512 + }, + "minecraft:entity.hoglin.hurt": { + "protocol_id": 513 + }, + "minecraft:entity.hoglin.retreat": { + "protocol_id": 514 + }, + "minecraft:entity.hoglin.step": { + "protocol_id": 515 + }, + "minecraft:entity.horse.ambient": { + "protocol_id": 532 + }, + "minecraft:entity.horse.angry": { + "protocol_id": 533 + }, + "minecraft:entity.horse.armor": { + "protocol_id": 534 + }, + "minecraft:entity.horse.breathe": { + "protocol_id": 535 + }, + "minecraft:entity.horse.death": { + "protocol_id": 536 + }, + "minecraft:entity.horse.eat": { + "protocol_id": 537 + }, + "minecraft:entity.horse.gallop": { + "protocol_id": 538 + }, + "minecraft:entity.horse.hurt": { + "protocol_id": 539 + }, + "minecraft:entity.horse.jump": { + "protocol_id": 540 + }, + "minecraft:entity.horse.land": { + "protocol_id": 541 + }, + "minecraft:entity.horse.saddle": { + "protocol_id": 542 + }, + "minecraft:entity.horse.step": { + "protocol_id": 543 + }, + "minecraft:entity.horse.step_wood": { + "protocol_id": 544 + }, + "minecraft:entity.hostile.big_fall": { + "protocol_id": 545 + }, + "minecraft:entity.hostile.death": { + "protocol_id": 546 + }, + "minecraft:entity.hostile.hurt": { + "protocol_id": 547 + }, + "minecraft:entity.hostile.small_fall": { + "protocol_id": 548 + }, + "minecraft:entity.hostile.splash": { + "protocol_id": 549 + }, + "minecraft:entity.hostile.swim": { + "protocol_id": 550 + }, + "minecraft:entity.husk.ambient": { + "protocol_id": 551 + }, + "minecraft:entity.husk.converted_to_zombie": { + "protocol_id": 552 + }, + "minecraft:entity.husk.death": { + "protocol_id": 553 + }, + "minecraft:entity.husk.hurt": { + "protocol_id": 554 + }, + "minecraft:entity.husk.step": { + "protocol_id": 555 + }, + "minecraft:entity.illusioner.ambient": { + "protocol_id": 556 + }, + "minecraft:entity.illusioner.cast_spell": { + "protocol_id": 557 + }, + "minecraft:entity.illusioner.death": { + "protocol_id": 558 + }, + "minecraft:entity.illusioner.hurt": { + "protocol_id": 559 + }, + "minecraft:entity.illusioner.mirror_move": { + "protocol_id": 560 + }, + "minecraft:entity.illusioner.prepare_blindness": { + "protocol_id": 561 + }, + "minecraft:entity.illusioner.prepare_mirror": { + "protocol_id": 562 + }, + "minecraft:entity.iron_golem.attack": { + "protocol_id": 566 + }, + "minecraft:entity.iron_golem.damage": { + "protocol_id": 567 + }, + "minecraft:entity.iron_golem.death": { + "protocol_id": 568 + }, + "minecraft:entity.iron_golem.hurt": { + "protocol_id": 569 + }, + "minecraft:entity.iron_golem.repair": { + "protocol_id": 570 + }, + "minecraft:entity.iron_golem.step": { + "protocol_id": 571 + }, + "minecraft:entity.item.break": { + "protocol_id": 579 + }, + "minecraft:entity.item.pickup": { + "protocol_id": 580 + }, + "minecraft:entity.item_frame.add_item": { + "protocol_id": 574 + }, + "minecraft:entity.item_frame.break": { + "protocol_id": 575 + }, + "minecraft:entity.item_frame.place": { + "protocol_id": 576 + }, + "minecraft:entity.item_frame.remove_item": { + "protocol_id": 577 + }, + "minecraft:entity.item_frame.rotate_item": { + "protocol_id": 578 + }, + "minecraft:entity.leash_knot.break": { + "protocol_id": 596 + }, + "minecraft:entity.leash_knot.place": { + "protocol_id": 597 + }, + "minecraft:entity.lightning_bolt.impact": { + "protocol_id": 599 + }, + "minecraft:entity.lightning_bolt.thunder": { + "protocol_id": 600 + }, + "minecraft:entity.lingering_potion.throw": { + "protocol_id": 601 + }, + "minecraft:entity.llama.ambient": { + "protocol_id": 602 + }, + "minecraft:entity.llama.angry": { + "protocol_id": 603 + }, + "minecraft:entity.llama.chest": { + "protocol_id": 604 + }, + "minecraft:entity.llama.death": { + "protocol_id": 605 + }, + "minecraft:entity.llama.eat": { + "protocol_id": 606 + }, + "minecraft:entity.llama.hurt": { + "protocol_id": 607 + }, + "minecraft:entity.llama.spit": { + "protocol_id": 608 + }, + "minecraft:entity.llama.step": { + "protocol_id": 609 + }, + "minecraft:entity.llama.swag": { + "protocol_id": 610 + }, + "minecraft:entity.magma_cube.death": { + "protocol_id": 618 + }, + "minecraft:entity.magma_cube.death_small": { + "protocol_id": 611 + }, + "minecraft:entity.magma_cube.hurt": { + "protocol_id": 619 + }, + "minecraft:entity.magma_cube.hurt_small": { + "protocol_id": 620 + }, + "minecraft:entity.magma_cube.jump": { + "protocol_id": 621 + }, + "minecraft:entity.magma_cube.squish": { + "protocol_id": 622 + }, + "minecraft:entity.magma_cube.squish_small": { + "protocol_id": 623 + }, + "minecraft:entity.minecart.inside": { + "protocol_id": 639 + }, + "minecraft:entity.minecart.inside.underwater": { + "protocol_id": 638 + }, + "minecraft:entity.minecart.riding": { + "protocol_id": 640 + }, + "minecraft:entity.mooshroom.convert": { + "protocol_id": 641 + }, + "minecraft:entity.mooshroom.eat": { + "protocol_id": 642 + }, + "minecraft:entity.mooshroom.milk": { + "protocol_id": 643 + }, + "minecraft:entity.mooshroom.shear": { + "protocol_id": 645 + }, + "minecraft:entity.mooshroom.suspicious_milk": { + "protocol_id": 644 + }, + "minecraft:entity.mule.ambient": { + "protocol_id": 671 + }, + "minecraft:entity.mule.angry": { + "protocol_id": 672 + }, + "minecraft:entity.mule.chest": { + "protocol_id": 673 + }, + "minecraft:entity.mule.death": { + "protocol_id": 674 + }, + "minecraft:entity.mule.eat": { + "protocol_id": 675 + }, + "minecraft:entity.mule.hurt": { + "protocol_id": 676 + }, + "minecraft:entity.ocelot.ambient": { + "protocol_id": 785 + }, + "minecraft:entity.ocelot.death": { + "protocol_id": 786 + }, + "minecraft:entity.ocelot.hurt": { + "protocol_id": 784 + }, + "minecraft:entity.painting.break": { + "protocol_id": 787 + }, + "minecraft:entity.painting.place": { + "protocol_id": 788 + }, + "minecraft:entity.panda.aggressive_ambient": { + "protocol_id": 796 + }, + "minecraft:entity.panda.ambient": { + "protocol_id": 791 + }, + "minecraft:entity.panda.bite": { + "protocol_id": 799 + }, + "minecraft:entity.panda.cant_breed": { + "protocol_id": 795 + }, + "minecraft:entity.panda.death": { + "protocol_id": 792 + }, + "minecraft:entity.panda.eat": { + "protocol_id": 793 + }, + "minecraft:entity.panda.hurt": { + "protocol_id": 798 + }, + "minecraft:entity.panda.pre_sneeze": { + "protocol_id": 789 + }, + "minecraft:entity.panda.sneeze": { + "protocol_id": 790 + }, + "minecraft:entity.panda.step": { + "protocol_id": 794 + }, + "minecraft:entity.panda.worried_ambient": { + "protocol_id": 797 + }, + "minecraft:entity.parrot.ambient": { + "protocol_id": 800 + }, + "minecraft:entity.parrot.death": { + "protocol_id": 801 + }, + "minecraft:entity.parrot.eat": { + "protocol_id": 802 + }, + "minecraft:entity.parrot.fly": { + "protocol_id": 803 + }, + "minecraft:entity.parrot.hurt": { + "protocol_id": 804 + }, + "minecraft:entity.parrot.imitate.blaze": { + "protocol_id": 805 + }, + "minecraft:entity.parrot.imitate.creeper": { + "protocol_id": 806 + }, + "minecraft:entity.parrot.imitate.drowned": { + "protocol_id": 807 + }, + "minecraft:entity.parrot.imitate.elder_guardian": { + "protocol_id": 808 + }, + "minecraft:entity.parrot.imitate.ender_dragon": { + "protocol_id": 809 + }, + "minecraft:entity.parrot.imitate.endermite": { + "protocol_id": 810 + }, + "minecraft:entity.parrot.imitate.evoker": { + "protocol_id": 811 + }, + "minecraft:entity.parrot.imitate.ghast": { + "protocol_id": 812 + }, + "minecraft:entity.parrot.imitate.guardian": { + "protocol_id": 813 + }, + "minecraft:entity.parrot.imitate.hoglin": { + "protocol_id": 814 + }, + "minecraft:entity.parrot.imitate.husk": { + "protocol_id": 815 + }, + "minecraft:entity.parrot.imitate.illusioner": { + "protocol_id": 816 + }, + "minecraft:entity.parrot.imitate.magma_cube": { + "protocol_id": 817 + }, + "minecraft:entity.parrot.imitate.phantom": { + "protocol_id": 818 + }, + "minecraft:entity.parrot.imitate.piglin": { + "protocol_id": 819 + }, + "minecraft:entity.parrot.imitate.piglin_brute": { + "protocol_id": 820 + }, + "minecraft:entity.parrot.imitate.pillager": { + "protocol_id": 821 + }, + "minecraft:entity.parrot.imitate.ravager": { + "protocol_id": 822 + }, + "minecraft:entity.parrot.imitate.shulker": { + "protocol_id": 823 + }, + "minecraft:entity.parrot.imitate.silverfish": { + "protocol_id": 824 + }, + "minecraft:entity.parrot.imitate.skeleton": { + "protocol_id": 825 + }, + "minecraft:entity.parrot.imitate.slime": { + "protocol_id": 826 + }, + "minecraft:entity.parrot.imitate.spider": { + "protocol_id": 827 + }, + "minecraft:entity.parrot.imitate.stray": { + "protocol_id": 828 + }, + "minecraft:entity.parrot.imitate.vex": { + "protocol_id": 829 + }, + "minecraft:entity.parrot.imitate.vindicator": { + "protocol_id": 830 + }, + "minecraft:entity.parrot.imitate.warden": { + "protocol_id": 831 + }, + "minecraft:entity.parrot.imitate.witch": { + "protocol_id": 832 + }, + "minecraft:entity.parrot.imitate.wither": { + "protocol_id": 833 + }, + "minecraft:entity.parrot.imitate.wither_skeleton": { + "protocol_id": 834 + }, + "minecraft:entity.parrot.imitate.zoglin": { + "protocol_id": 835 + }, + "minecraft:entity.parrot.imitate.zombie": { + "protocol_id": 836 + }, + "minecraft:entity.parrot.imitate.zombie_villager": { + "protocol_id": 837 + }, + "minecraft:entity.parrot.step": { + "protocol_id": 838 + }, + "minecraft:entity.phantom.ambient": { + "protocol_id": 839 + }, + "minecraft:entity.phantom.bite": { + "protocol_id": 840 + }, + "minecraft:entity.phantom.death": { + "protocol_id": 841 + }, + "minecraft:entity.phantom.flap": { + "protocol_id": 842 + }, + "minecraft:entity.phantom.hurt": { + "protocol_id": 843 + }, + "minecraft:entity.phantom.swoop": { + "protocol_id": 844 + }, + "minecraft:entity.pig.ambient": { + "protocol_id": 845 + }, + "minecraft:entity.pig.death": { + "protocol_id": 846 + }, + "minecraft:entity.pig.hurt": { + "protocol_id": 847 + }, + "minecraft:entity.pig.saddle": { + "protocol_id": 848 + }, + "minecraft:entity.pig.step": { + "protocol_id": 849 + }, + "minecraft:entity.piglin.admiring_item": { + "protocol_id": 850 + }, + "minecraft:entity.piglin.ambient": { + "protocol_id": 851 + }, + "minecraft:entity.piglin.angry": { + "protocol_id": 852 + }, + "minecraft:entity.piglin.celebrate": { + "protocol_id": 853 + }, + "minecraft:entity.piglin.converted_to_zombified": { + "protocol_id": 859 + }, + "minecraft:entity.piglin.death": { + "protocol_id": 854 + }, + "minecraft:entity.piglin.hurt": { + "protocol_id": 856 + }, + "minecraft:entity.piglin.jealous": { + "protocol_id": 855 + }, + "minecraft:entity.piglin.retreat": { + "protocol_id": 857 + }, + "minecraft:entity.piglin.step": { + "protocol_id": 858 + }, + "minecraft:entity.piglin_brute.ambient": { + "protocol_id": 860 + }, + "minecraft:entity.piglin_brute.angry": { + "protocol_id": 861 + }, + "minecraft:entity.piglin_brute.converted_to_zombified": { + "protocol_id": 865 + }, + "minecraft:entity.piglin_brute.death": { + "protocol_id": 862 + }, + "minecraft:entity.piglin_brute.hurt": { + "protocol_id": 863 + }, + "minecraft:entity.piglin_brute.step": { + "protocol_id": 864 + }, + "minecraft:entity.pillager.ambient": { + "protocol_id": 866 + }, + "minecraft:entity.pillager.celebrate": { + "protocol_id": 867 + }, + "minecraft:entity.pillager.death": { + "protocol_id": 868 + }, + "minecraft:entity.pillager.hurt": { + "protocol_id": 869 + }, + "minecraft:entity.player.attack.crit": { + "protocol_id": 872 + }, + "minecraft:entity.player.attack.knockback": { + "protocol_id": 873 + }, + "minecraft:entity.player.attack.nodamage": { + "protocol_id": 874 + }, + "minecraft:entity.player.attack.strong": { + "protocol_id": 875 + }, + "minecraft:entity.player.attack.sweep": { + "protocol_id": 876 + }, + "minecraft:entity.player.attack.weak": { + "protocol_id": 877 + }, + "minecraft:entity.player.big_fall": { + "protocol_id": 878 + }, + "minecraft:entity.player.breath": { + "protocol_id": 879 + }, + "minecraft:entity.player.burp": { + "protocol_id": 880 + }, + "minecraft:entity.player.death": { + "protocol_id": 881 + }, + "minecraft:entity.player.hurt": { + "protocol_id": 882 + }, + "minecraft:entity.player.hurt_drown": { + "protocol_id": 883 + }, + "minecraft:entity.player.hurt_freeze": { + "protocol_id": 884 + }, + "minecraft:entity.player.hurt_on_fire": { + "protocol_id": 885 + }, + "minecraft:entity.player.hurt_sweet_berry_bush": { + "protocol_id": 886 + }, + "minecraft:entity.player.levelup": { + "protocol_id": 887 + }, + "minecraft:entity.player.small_fall": { + "protocol_id": 888 + }, + "minecraft:entity.player.splash": { + "protocol_id": 889 + }, + "minecraft:entity.player.splash.high_speed": { + "protocol_id": 890 + }, + "minecraft:entity.player.swim": { + "protocol_id": 891 + }, + "minecraft:entity.polar_bear.ambient": { + "protocol_id": 892 + }, + "minecraft:entity.polar_bear.ambient_baby": { + "protocol_id": 893 + }, + "minecraft:entity.polar_bear.death": { + "protocol_id": 894 + }, + "minecraft:entity.polar_bear.hurt": { + "protocol_id": 895 + }, + "minecraft:entity.polar_bear.step": { + "protocol_id": 896 + }, + "minecraft:entity.polar_bear.warning": { + "protocol_id": 897 + }, + "minecraft:entity.puffer_fish.ambient": { + "protocol_id": 911 + }, + "minecraft:entity.puffer_fish.blow_out": { + "protocol_id": 912 + }, + "minecraft:entity.puffer_fish.blow_up": { + "protocol_id": 913 + }, + "minecraft:entity.puffer_fish.death": { + "protocol_id": 914 + }, + "minecraft:entity.puffer_fish.flop": { + "protocol_id": 915 + }, + "minecraft:entity.puffer_fish.hurt": { + "protocol_id": 916 + }, + "minecraft:entity.puffer_fish.sting": { + "protocol_id": 917 + }, + "minecraft:entity.rabbit.ambient": { + "protocol_id": 919 + }, + "minecraft:entity.rabbit.attack": { + "protocol_id": 920 + }, + "minecraft:entity.rabbit.death": { + "protocol_id": 921 + }, + "minecraft:entity.rabbit.hurt": { + "protocol_id": 922 + }, + "minecraft:entity.rabbit.jump": { + "protocol_id": 923 + }, + "minecraft:entity.ravager.ambient": { + "protocol_id": 925 + }, + "minecraft:entity.ravager.attack": { + "protocol_id": 926 + }, + "minecraft:entity.ravager.celebrate": { + "protocol_id": 927 + }, + "minecraft:entity.ravager.death": { + "protocol_id": 928 + }, + "minecraft:entity.ravager.hurt": { + "protocol_id": 929 + }, + "minecraft:entity.ravager.roar": { + "protocol_id": 932 + }, + "minecraft:entity.ravager.step": { + "protocol_id": 930 + }, + "minecraft:entity.ravager.stunned": { + "protocol_id": 931 + }, + "minecraft:entity.salmon.ambient": { + "protocol_id": 953 + }, + "minecraft:entity.salmon.death": { + "protocol_id": 954 + }, + "minecraft:entity.salmon.flop": { + "protocol_id": 955 + }, + "minecraft:entity.salmon.hurt": { + "protocol_id": 956 + }, + "minecraft:entity.sheep.ambient": { + "protocol_id": 998 + }, + "minecraft:entity.sheep.death": { + "protocol_id": 999 + }, + "minecraft:entity.sheep.hurt": { + "protocol_id": 1000 + }, + "minecraft:entity.sheep.shear": { + "protocol_id": 1001 + }, + "minecraft:entity.sheep.step": { + "protocol_id": 1002 + }, + "minecraft:entity.shulker.ambient": { + "protocol_id": 1011 + }, + "minecraft:entity.shulker.close": { + "protocol_id": 1016 + }, + "minecraft:entity.shulker.death": { + "protocol_id": 1017 + }, + "minecraft:entity.shulker.hurt": { + "protocol_id": 1018 + }, + "minecraft:entity.shulker.hurt_closed": { + "protocol_id": 1019 + }, + "minecraft:entity.shulker.open": { + "protocol_id": 1020 + }, + "minecraft:entity.shulker.shoot": { + "protocol_id": 1021 + }, + "minecraft:entity.shulker.teleport": { + "protocol_id": 1022 + }, + "minecraft:entity.shulker_bullet.hit": { + "protocol_id": 1014 + }, + "minecraft:entity.shulker_bullet.hurt": { + "protocol_id": 1015 + }, + "minecraft:entity.silverfish.ambient": { + "protocol_id": 1023 + }, + "minecraft:entity.silverfish.death": { + "protocol_id": 1024 + }, + "minecraft:entity.silverfish.hurt": { + "protocol_id": 1025 + }, + "minecraft:entity.silverfish.step": { + "protocol_id": 1026 + }, + "minecraft:entity.skeleton.ambient": { + "protocol_id": 1027 + }, + "minecraft:entity.skeleton.converted_to_stray": { + "protocol_id": 1028 + }, + "minecraft:entity.skeleton.death": { + "protocol_id": 1029 + }, + "minecraft:entity.skeleton.hurt": { + "protocol_id": 1038 + }, + "minecraft:entity.skeleton.shoot": { + "protocol_id": 1039 + }, + "minecraft:entity.skeleton.step": { + "protocol_id": 1040 + }, + "minecraft:entity.skeleton_horse.ambient": { + "protocol_id": 1030 + }, + "minecraft:entity.skeleton_horse.ambient_water": { + "protocol_id": 1034 + }, + "minecraft:entity.skeleton_horse.death": { + "protocol_id": 1031 + }, + "minecraft:entity.skeleton_horse.gallop_water": { + "protocol_id": 1035 + }, + "minecraft:entity.skeleton_horse.hurt": { + "protocol_id": 1032 + }, + "minecraft:entity.skeleton_horse.jump_water": { + "protocol_id": 1036 + }, + "minecraft:entity.skeleton_horse.step_water": { + "protocol_id": 1037 + }, + "minecraft:entity.skeleton_horse.swim": { + "protocol_id": 1033 + }, + "minecraft:entity.slime.attack": { + "protocol_id": 1041 + }, + "minecraft:entity.slime.death": { + "protocol_id": 1042 + }, + "minecraft:entity.slime.death_small": { + "protocol_id": 1083 + }, + "minecraft:entity.slime.hurt": { + "protocol_id": 1043 + }, + "minecraft:entity.slime.hurt_small": { + "protocol_id": 1084 + }, + "minecraft:entity.slime.jump": { + "protocol_id": 1044 + }, + "minecraft:entity.slime.jump_small": { + "protocol_id": 1085 + }, + "minecraft:entity.slime.squish": { + "protocol_id": 1045 + }, + "minecraft:entity.slime.squish_small": { + "protocol_id": 1086 + }, + "minecraft:entity.snow_golem.ambient": { + "protocol_id": 1092 + }, + "minecraft:entity.snow_golem.death": { + "protocol_id": 1093 + }, + "minecraft:entity.snow_golem.hurt": { + "protocol_id": 1094 + }, + "minecraft:entity.snow_golem.shear": { + "protocol_id": 1096 + }, + "minecraft:entity.snow_golem.shoot": { + "protocol_id": 1095 + }, + "minecraft:entity.snowball.throw": { + "protocol_id": 1089 + }, + "minecraft:entity.spider.ambient": { + "protocol_id": 1100 + }, + "minecraft:entity.spider.death": { + "protocol_id": 1101 + }, + "minecraft:entity.spider.hurt": { + "protocol_id": 1102 + }, + "minecraft:entity.spider.step": { + "protocol_id": 1103 + }, + "minecraft:entity.splash_potion.break": { + "protocol_id": 1104 + }, + "minecraft:entity.splash_potion.throw": { + "protocol_id": 1105 + }, + "minecraft:entity.squid.ambient": { + "protocol_id": 1108 + }, + "minecraft:entity.squid.death": { + "protocol_id": 1109 + }, + "minecraft:entity.squid.hurt": { + "protocol_id": 1110 + }, + "minecraft:entity.squid.squirt": { + "protocol_id": 1111 + }, + "minecraft:entity.stray.ambient": { + "protocol_id": 1121 + }, + "minecraft:entity.stray.death": { + "protocol_id": 1122 + }, + "minecraft:entity.stray.hurt": { + "protocol_id": 1123 + }, + "minecraft:entity.stray.step": { + "protocol_id": 1124 + }, + "minecraft:entity.strider.ambient": { + "protocol_id": 1074 + }, + "minecraft:entity.strider.death": { + "protocol_id": 1077 + }, + "minecraft:entity.strider.eat": { + "protocol_id": 1081 + }, + "minecraft:entity.strider.happy": { + "protocol_id": 1075 + }, + "minecraft:entity.strider.hurt": { + "protocol_id": 1078 + }, + "minecraft:entity.strider.retreat": { + "protocol_id": 1076 + }, + "minecraft:entity.strider.saddle": { + "protocol_id": 1082 + }, + "minecraft:entity.strider.step": { + "protocol_id": 1079 + }, + "minecraft:entity.strider.step_lava": { + "protocol_id": 1080 + }, + "minecraft:entity.tadpole.death": { + "protocol_id": 1128 + }, + "minecraft:entity.tadpole.flop": { + "protocol_id": 1129 + }, + "minecraft:entity.tadpole.grow_up": { + "protocol_id": 1130 + }, + "minecraft:entity.tadpole.hurt": { + "protocol_id": 1131 + }, + "minecraft:entity.tnt.primed": { + "protocol_id": 1133 + }, + "minecraft:entity.tropical_fish.ambient": { + "protocol_id": 1147 + }, + "minecraft:entity.tropical_fish.death": { + "protocol_id": 1148 + }, + "minecraft:entity.tropical_fish.flop": { + "protocol_id": 1149 + }, + "minecraft:entity.tropical_fish.hurt": { + "protocol_id": 1150 + }, + "minecraft:entity.turtle.ambient_land": { + "protocol_id": 1156 + }, + "minecraft:entity.turtle.death": { + "protocol_id": 1157 + }, + "minecraft:entity.turtle.death_baby": { + "protocol_id": 1158 + }, + "minecraft:entity.turtle.egg_break": { + "protocol_id": 1159 + }, + "minecraft:entity.turtle.egg_crack": { + "protocol_id": 1160 + }, + "minecraft:entity.turtle.egg_hatch": { + "protocol_id": 1161 + }, + "minecraft:entity.turtle.hurt": { + "protocol_id": 1162 + }, + "minecraft:entity.turtle.hurt_baby": { + "protocol_id": 1163 + }, + "minecraft:entity.turtle.lay_egg": { + "protocol_id": 1164 + }, + "minecraft:entity.turtle.shamble": { + "protocol_id": 1165 + }, + "minecraft:entity.turtle.shamble_baby": { + "protocol_id": 1166 + }, + "minecraft:entity.turtle.swim": { + "protocol_id": 1167 + }, + "minecraft:entity.vex.ambient": { + "protocol_id": 1177 + }, + "minecraft:entity.vex.charge": { + "protocol_id": 1178 + }, + "minecraft:entity.vex.death": { + "protocol_id": 1179 + }, + "minecraft:entity.vex.hurt": { + "protocol_id": 1180 + }, + "minecraft:entity.villager.ambient": { + "protocol_id": 1181 + }, + "minecraft:entity.villager.celebrate": { + "protocol_id": 1182 + }, + "minecraft:entity.villager.death": { + "protocol_id": 1183 + }, + "minecraft:entity.villager.hurt": { + "protocol_id": 1184 + }, + "minecraft:entity.villager.no": { + "protocol_id": 1185 + }, + "minecraft:entity.villager.trade": { + "protocol_id": 1186 + }, + "minecraft:entity.villager.work_armorer": { + "protocol_id": 1188 + }, + "minecraft:entity.villager.work_butcher": { + "protocol_id": 1189 + }, + "minecraft:entity.villager.work_cartographer": { + "protocol_id": 1190 + }, + "minecraft:entity.villager.work_cleric": { + "protocol_id": 1191 + }, + "minecraft:entity.villager.work_farmer": { + "protocol_id": 1192 + }, + "minecraft:entity.villager.work_fisherman": { + "protocol_id": 1193 + }, + "minecraft:entity.villager.work_fletcher": { + "protocol_id": 1194 + }, + "minecraft:entity.villager.work_leatherworker": { + "protocol_id": 1195 + }, + "minecraft:entity.villager.work_librarian": { + "protocol_id": 1196 + }, + "minecraft:entity.villager.work_mason": { + "protocol_id": 1197 + }, + "minecraft:entity.villager.work_shepherd": { + "protocol_id": 1198 + }, + "minecraft:entity.villager.work_toolsmith": { + "protocol_id": 1199 + }, + "minecraft:entity.villager.work_weaponsmith": { + "protocol_id": 1200 + }, + "minecraft:entity.villager.yes": { + "protocol_id": 1187 + }, + "minecraft:entity.vindicator.ambient": { + "protocol_id": 1201 + }, + "minecraft:entity.vindicator.celebrate": { + "protocol_id": 1202 + }, + "minecraft:entity.vindicator.death": { + "protocol_id": 1203 + }, + "minecraft:entity.vindicator.hurt": { + "protocol_id": 1204 + }, + "minecraft:entity.wandering_trader.ambient": { + "protocol_id": 1211 + }, + "minecraft:entity.wandering_trader.death": { + "protocol_id": 1212 + }, + "minecraft:entity.wandering_trader.disappeared": { + "protocol_id": 1213 + }, + "minecraft:entity.wandering_trader.drink_milk": { + "protocol_id": 1214 + }, + "minecraft:entity.wandering_trader.drink_potion": { + "protocol_id": 1215 + }, + "minecraft:entity.wandering_trader.hurt": { + "protocol_id": 1216 + }, + "minecraft:entity.wandering_trader.no": { + "protocol_id": 1217 + }, + "minecraft:entity.wandering_trader.reappeared": { + "protocol_id": 1218 + }, + "minecraft:entity.wandering_trader.trade": { + "protocol_id": 1219 + }, + "minecraft:entity.wandering_trader.yes": { + "protocol_id": 1220 + }, + "minecraft:entity.warden.agitated": { + "protocol_id": 1221 + }, + "minecraft:entity.warden.ambient": { + "protocol_id": 1222 + }, + "minecraft:entity.warden.angry": { + "protocol_id": 1223 + }, + "minecraft:entity.warden.attack_impact": { + "protocol_id": 1224 + }, + "minecraft:entity.warden.death": { + "protocol_id": 1225 + }, + "minecraft:entity.warden.dig": { + "protocol_id": 1226 + }, + "minecraft:entity.warden.emerge": { + "protocol_id": 1227 + }, + "minecraft:entity.warden.heartbeat": { + "protocol_id": 1228 + }, + "minecraft:entity.warden.hurt": { + "protocol_id": 1229 + }, + "minecraft:entity.warden.listening": { + "protocol_id": 1230 + }, + "minecraft:entity.warden.listening_angry": { + "protocol_id": 1231 + }, + "minecraft:entity.warden.nearby_close": { + "protocol_id": 1232 + }, + "minecraft:entity.warden.nearby_closer": { + "protocol_id": 1233 + }, + "minecraft:entity.warden.nearby_closest": { + "protocol_id": 1234 + }, + "minecraft:entity.warden.roar": { + "protocol_id": 1235 + }, + "minecraft:entity.warden.sniff": { + "protocol_id": 1236 + }, + "minecraft:entity.warden.sonic_boom": { + "protocol_id": 1237 + }, + "minecraft:entity.warden.sonic_charge": { + "protocol_id": 1238 + }, + "minecraft:entity.warden.step": { + "protocol_id": 1239 + }, + "minecraft:entity.warden.tendril_clicks": { + "protocol_id": 1240 + }, + "minecraft:entity.witch.ambient": { + "protocol_id": 1249 + }, + "minecraft:entity.witch.celebrate": { + "protocol_id": 1250 + }, + "minecraft:entity.witch.death": { + "protocol_id": 1251 + }, + "minecraft:entity.witch.drink": { + "protocol_id": 1252 + }, + "minecraft:entity.witch.hurt": { + "protocol_id": 1253 + }, + "minecraft:entity.witch.throw": { + "protocol_id": 1254 + }, + "minecraft:entity.wither.ambient": { + "protocol_id": 1255 + }, + "minecraft:entity.wither.break_block": { + "protocol_id": 1256 + }, + "minecraft:entity.wither.death": { + "protocol_id": 1257 + }, + "minecraft:entity.wither.hurt": { + "protocol_id": 1258 + }, + "minecraft:entity.wither.shoot": { + "protocol_id": 1259 + }, + "minecraft:entity.wither.spawn": { + "protocol_id": 1264 + }, + "minecraft:entity.wither_skeleton.ambient": { + "protocol_id": 1260 + }, + "minecraft:entity.wither_skeleton.death": { + "protocol_id": 1261 + }, + "minecraft:entity.wither_skeleton.hurt": { + "protocol_id": 1262 + }, + "minecraft:entity.wither_skeleton.step": { + "protocol_id": 1263 + }, + "minecraft:entity.wolf.ambient": { + "protocol_id": 1265 + }, + "minecraft:entity.wolf.death": { + "protocol_id": 1266 + }, + "minecraft:entity.wolf.growl": { + "protocol_id": 1267 + }, + "minecraft:entity.wolf.howl": { + "protocol_id": 1268 + }, + "minecraft:entity.wolf.hurt": { + "protocol_id": 1269 + }, + "minecraft:entity.wolf.pant": { + "protocol_id": 1270 + }, + "minecraft:entity.wolf.shake": { + "protocol_id": 1271 + }, + "minecraft:entity.wolf.step": { + "protocol_id": 1272 + }, + "minecraft:entity.wolf.whine": { + "protocol_id": 1273 + }, + "minecraft:entity.zoglin.ambient": { + "protocol_id": 1292 + }, + "minecraft:entity.zoglin.angry": { + "protocol_id": 1293 + }, + "minecraft:entity.zoglin.attack": { + "protocol_id": 1294 + }, + "minecraft:entity.zoglin.death": { + "protocol_id": 1295 + }, + "minecraft:entity.zoglin.hurt": { + "protocol_id": 1296 + }, + "minecraft:entity.zoglin.step": { + "protocol_id": 1297 + }, + "minecraft:entity.zombie.ambient": { + "protocol_id": 1298 + }, + "minecraft:entity.zombie.attack_iron_door": { + "protocol_id": 1300 + }, + "minecraft:entity.zombie.attack_wooden_door": { + "protocol_id": 1299 + }, + "minecraft:entity.zombie.break_wooden_door": { + "protocol_id": 1301 + }, + "minecraft:entity.zombie.converted_to_drowned": { + "protocol_id": 1302 + }, + "minecraft:entity.zombie.death": { + "protocol_id": 1303 + }, + "minecraft:entity.zombie.destroy_egg": { + "protocol_id": 1304 + }, + "minecraft:entity.zombie.hurt": { + "protocol_id": 1308 + }, + "minecraft:entity.zombie.infect": { + "protocol_id": 1309 + }, + "minecraft:entity.zombie.step": { + "protocol_id": 1314 + }, + "minecraft:entity.zombie_horse.ambient": { + "protocol_id": 1305 + }, + "minecraft:entity.zombie_horse.death": { + "protocol_id": 1306 + }, + "minecraft:entity.zombie_horse.hurt": { + "protocol_id": 1307 + }, + "minecraft:entity.zombie_villager.ambient": { + "protocol_id": 1315 + }, + "minecraft:entity.zombie_villager.converted": { + "protocol_id": 1316 + }, + "minecraft:entity.zombie_villager.cure": { + "protocol_id": 1317 + }, + "minecraft:entity.zombie_villager.death": { + "protocol_id": 1318 + }, + "minecraft:entity.zombie_villager.hurt": { + "protocol_id": 1319 + }, + "minecraft:entity.zombie_villager.step": { + "protocol_id": 1320 + }, + "minecraft:entity.zombified_piglin.ambient": { + "protocol_id": 1310 + }, + "minecraft:entity.zombified_piglin.angry": { + "protocol_id": 1311 + }, + "minecraft:entity.zombified_piglin.death": { + "protocol_id": 1312 + }, + "minecraft:entity.zombified_piglin.hurt": { + "protocol_id": 1313 + }, + "minecraft:event.raid.horn": { + "protocol_id": 924 + }, + "minecraft:item.armor.equip_chain": { + "protocol_id": 53 + }, + "minecraft:item.armor.equip_diamond": { + "protocol_id": 54 + }, + "minecraft:item.armor.equip_elytra": { + "protocol_id": 55 + }, + "minecraft:item.armor.equip_generic": { + "protocol_id": 56 + }, + "minecraft:item.armor.equip_gold": { + "protocol_id": 57 + }, + "minecraft:item.armor.equip_iron": { + "protocol_id": 58 + }, + "minecraft:item.armor.equip_leather": { + "protocol_id": 59 + }, + "minecraft:item.armor.equip_netherite": { + "protocol_id": 60 + }, + "minecraft:item.armor.equip_turtle": { + "protocol_id": 61 + }, + "minecraft:item.axe.scrape": { + "protocol_id": 70 + }, + "minecraft:item.axe.strip": { + "protocol_id": 69 + }, + "minecraft:item.axe.wax_off": { + "protocol_id": 71 + }, + "minecraft:item.bone_meal.use": { + "protocol_id": 143 + }, + "minecraft:item.book.page_turn": { + "protocol_id": 144 + }, + "minecraft:item.book.put": { + "protocol_id": 145 + }, + "minecraft:item.bottle.empty": { + "protocol_id": 147 + }, + "minecraft:item.bottle.fill": { + "protocol_id": 148 + }, + "minecraft:item.bottle.fill_dragonbreath": { + "protocol_id": 149 + }, + "minecraft:item.bucket.empty": { + "protocol_id": 156 + }, + "minecraft:item.bucket.empty_axolotl": { + "protocol_id": 157 + }, + "minecraft:item.bucket.empty_fish": { + "protocol_id": 158 + }, + "minecraft:item.bucket.empty_lava": { + "protocol_id": 159 + }, + "minecraft:item.bucket.empty_powder_snow": { + "protocol_id": 160 + }, + "minecraft:item.bucket.empty_tadpole": { + "protocol_id": 161 + }, + "minecraft:item.bucket.fill": { + "protocol_id": 162 + }, + "minecraft:item.bucket.fill_axolotl": { + "protocol_id": 163 + }, + "minecraft:item.bucket.fill_fish": { + "protocol_id": 164 + }, + "minecraft:item.bucket.fill_lava": { + "protocol_id": 165 + }, + "minecraft:item.bucket.fill_powder_snow": { + "protocol_id": 166 + }, + "minecraft:item.bucket.fill_tadpole": { + "protocol_id": 167 + }, + "minecraft:item.bundle.drop_contents": { + "protocol_id": 168 + }, + "minecraft:item.bundle.insert": { + "protocol_id": 169 + }, + "minecraft:item.bundle.remove_one": { + "protocol_id": 170 + }, + "minecraft:item.chorus_fruit.teleport": { + "protocol_id": 215 + }, + "minecraft:item.crop.plant": { + "protocol_id": 249 + }, + "minecraft:item.crossbow.hit": { + "protocol_id": 250 + }, + "minecraft:item.crossbow.loading_end": { + "protocol_id": 251 + }, + "minecraft:item.crossbow.loading_middle": { + "protocol_id": 252 + }, + "minecraft:item.crossbow.loading_start": { + "protocol_id": 253 + }, + "minecraft:item.crossbow.quick_charge_1": { + "protocol_id": 254 + }, + "minecraft:item.crossbow.quick_charge_2": { + "protocol_id": 255 + }, + "minecraft:item.crossbow.quick_charge_3": { + "protocol_id": 256 + }, + "minecraft:item.crossbow.shoot": { + "protocol_id": 257 + }, + "minecraft:item.dye.use": { + "protocol_id": 318 + }, + "minecraft:item.elytra.flying": { + "protocol_id": 328 + }, + "minecraft:item.firecharge.use": { + "protocol_id": 368 + }, + "minecraft:item.flintandsteel.use": { + "protocol_id": 383 + }, + "minecraft:item.glow_ink_sac.use": { + "protocol_id": 452 + }, + "minecraft:item.goat_horn.play": { + "protocol_id": 471 + }, + "minecraft:item.goat_horn.sound.0": { + "protocol_id": 524 + }, + "minecraft:item.goat_horn.sound.1": { + "protocol_id": 525 + }, + "minecraft:item.goat_horn.sound.2": { + "protocol_id": 526 + }, + "minecraft:item.goat_horn.sound.3": { + "protocol_id": 527 + }, + "minecraft:item.goat_horn.sound.4": { + "protocol_id": 528 + }, + "minecraft:item.goat_horn.sound.5": { + "protocol_id": 529 + }, + "minecraft:item.goat_horn.sound.6": { + "protocol_id": 530 + }, + "minecraft:item.goat_horn.sound.7": { + "protocol_id": 531 + }, + "minecraft:item.hoe.till": { + "protocol_id": 507 + }, + "minecraft:item.honey_bottle.drink": { + "protocol_id": 523 + }, + "minecraft:item.honeycomb.wax_on": { + "protocol_id": 522 + }, + "minecraft:item.ink_sac.use": { + "protocol_id": 563 + }, + "minecraft:item.lodestone_compass.lock": { + "protocol_id": 617 + }, + "minecraft:item.nether_wart.plant": { + "protocol_id": 722 + }, + "minecraft:item.shield.block": { + "protocol_id": 1003 + }, + "minecraft:item.shield.break": { + "protocol_id": 1004 + }, + "minecraft:item.shovel.flatten": { + "protocol_id": 1010 + }, + "minecraft:item.spyglass.stop_using": { + "protocol_id": 1107 + }, + "minecraft:item.spyglass.use": { + "protocol_id": 1106 + }, + "minecraft:item.totem.use": { + "protocol_id": 1134 + }, + "minecraft:item.trident.hit": { + "protocol_id": 1135 + }, + "minecraft:item.trident.hit_ground": { + "protocol_id": 1136 + }, + "minecraft:item.trident.return": { + "protocol_id": 1137 + }, + "minecraft:item.trident.riptide_1": { + "protocol_id": 1138 + }, + "minecraft:item.trident.riptide_2": { + "protocol_id": 1139 + }, + "minecraft:item.trident.riptide_3": { + "protocol_id": 1140 + }, + "minecraft:item.trident.throw": { + "protocol_id": 1141 + }, + "minecraft:item.trident.thunder": { + "protocol_id": 1142 + }, + "minecraft:music.creative": { + "protocol_id": 677 + }, + "minecraft:music.credits": { + "protocol_id": 678 + }, + "minecraft:music.dragon": { + "protocol_id": 694 + }, + "minecraft:music.end": { + "protocol_id": 695 + }, + "minecraft:music.game": { + "protocol_id": 696 + }, + "minecraft:music.menu": { + "protocol_id": 697 + }, + "minecraft:music.nether.basalt_deltas": { + "protocol_id": 698 + }, + "minecraft:music.nether.crimson_forest": { + "protocol_id": 699 + }, + "minecraft:music.nether.nether_wastes": { + "protocol_id": 709 + }, + "minecraft:music.nether.soul_sand_valley": { + "protocol_id": 712 + }, + "minecraft:music.nether.warped_forest": { + "protocol_id": 714 + }, + "minecraft:music.overworld.deep_dark": { + "protocol_id": 700 + }, + "minecraft:music.overworld.dripstone_caves": { + "protocol_id": 701 + }, + "minecraft:music.overworld.frozen_peaks": { + "protocol_id": 710 + }, + "minecraft:music.overworld.grove": { + "protocol_id": 702 + }, + "minecraft:music.overworld.jagged_peaks": { + "protocol_id": 703 + }, + "minecraft:music.overworld.jungle_and_forest": { + "protocol_id": 706 + }, + "minecraft:music.overworld.lush_caves": { + "protocol_id": 704 + }, + "minecraft:music.overworld.meadow": { + "protocol_id": 708 + }, + "minecraft:music.overworld.old_growth_taiga": { + "protocol_id": 707 + }, + "minecraft:music.overworld.snowy_slopes": { + "protocol_id": 711 + }, + "minecraft:music.overworld.stony_peaks": { + "protocol_id": 713 + }, + "minecraft:music.overworld.swamp": { + "protocol_id": 705 + }, + "minecraft:music.under_water": { + "protocol_id": 715 + }, + "minecraft:music_disc.11": { + "protocol_id": 680 + }, + "minecraft:music_disc.13": { + "protocol_id": 681 + }, + "minecraft:music_disc.5": { + "protocol_id": 679 + }, + "minecraft:music_disc.blocks": { + "protocol_id": 682 + }, + "minecraft:music_disc.cat": { + "protocol_id": 683 + }, + "minecraft:music_disc.chirp": { + "protocol_id": 684 + }, + "minecraft:music_disc.far": { + "protocol_id": 685 + }, + "minecraft:music_disc.mall": { + "protocol_id": 686 + }, + "minecraft:music_disc.mellohi": { + "protocol_id": 687 + }, + "minecraft:music_disc.otherside": { + "protocol_id": 693 + }, + "minecraft:music_disc.pigstep": { + "protocol_id": 688 + }, + "minecraft:music_disc.stal": { + "protocol_id": 689 + }, + "minecraft:music_disc.strad": { + "protocol_id": 690 + }, + "minecraft:music_disc.wait": { + "protocol_id": 691 + }, + "minecraft:music_disc.ward": { + "protocol_id": 692 + }, + "minecraft:particle.soul_escape": { + "protocol_id": 1068 + }, + "minecraft:ui.button.click": { + "protocol_id": 1168 + }, + "minecraft:ui.cartography_table.take_result": { + "protocol_id": 1171 + }, + "minecraft:ui.loom.select_pattern": { + "protocol_id": 1169 + }, + "minecraft:ui.loom.take_result": { + "protocol_id": 1170 + }, + "minecraft:ui.stonecutter.select_recipe": { + "protocol_id": 1173 + }, + "minecraft:ui.stonecutter.take_result": { + "protocol_id": 1172 + }, + "minecraft:ui.toast.challenge_complete": { + "protocol_id": 1174 + }, + "minecraft:ui.toast.in": { + "protocol_id": 1175 + }, + "minecraft:ui.toast.out": { + "protocol_id": 1176 + }, + "minecraft:weather.rain": { + "protocol_id": 1242 + }, + "minecraft:weather.rain.above": { + "protocol_id": 1243 } - } + }, + "protocol_id": 1 }, "minecraft:stat_type": { - "protocol_id": 21, "entries": { - "minecraft:mined": { - "protocol_id": 0 + "minecraft:broken": { + "protocol_id": 3 }, "minecraft:crafted": { "protocol_id": 1 }, - "minecraft:used": { - "protocol_id": 2 - }, - "minecraft:broken": { - "protocol_id": 3 - }, - "minecraft:picked_up": { - "protocol_id": 4 + "minecraft:custom": { + "protocol_id": 8 }, "minecraft:dropped": { "protocol_id": 5 @@ -11509,14 +13347,71 @@ "minecraft:killed_by": { "protocol_id": 7 }, - "minecraft:custom": { - "protocol_id": 8 + "minecraft:mined": { + "protocol_id": 0 + }, + "minecraft:picked_up": { + "protocol_id": 4 + }, + "minecraft:used": { + "protocol_id": 2 } - } + }, + "protocol_id": 22 + }, + "minecraft:villager_profession": { + "default": "minecraft:none", + "entries": { + "minecraft:armorer": { + "protocol_id": 1 + }, + "minecraft:butcher": { + "protocol_id": 2 + }, + "minecraft:cartographer": { + "protocol_id": 3 + }, + "minecraft:cleric": { + "protocol_id": 4 + }, + "minecraft:farmer": { + "protocol_id": 5 + }, + "minecraft:fisherman": { + "protocol_id": 6 + }, + "minecraft:fletcher": { + "protocol_id": 7 + }, + "minecraft:leatherworker": { + "protocol_id": 8 + }, + "minecraft:librarian": { + "protocol_id": 9 + }, + "minecraft:mason": { + "protocol_id": 10 + }, + "minecraft:nitwit": { + "protocol_id": 11 + }, + "minecraft:none": { + "protocol_id": 0 + }, + "minecraft:shepherd": { + "protocol_id": 12 + }, + "minecraft:toolsmith": { + "protocol_id": 13 + }, + "minecraft:weaponsmith": { + "protocol_id": 14 + } + }, + "protocol_id": 24 }, "minecraft:villager_type": { "default": "minecraft:plains", - "protocol_id": 22, "entries": { "minecraft:desert": { "protocol_id": 0 @@ -11539,1060 +13434,542 @@ "minecraft:taiga": { "protocol_id": 6 } - } + }, + "protocol_id": 23 }, - "minecraft:villager_profession": { - "default": "minecraft:none", - "protocol_id": 23, + "minecraft:worldgen/biome_source": { "entries": { - "minecraft:none": { - "protocol_id": 0 - }, - "minecraft:armorer": { - "protocol_id": 1 - }, - "minecraft:butcher": { + "minecraft:checkerboard": { "protocol_id": 2 }, - "minecraft:cartographer": { - "protocol_id": 3 - }, - "minecraft:cleric": { - "protocol_id": 4 - }, - "minecraft:farmer": { - "protocol_id": 5 - }, - "minecraft:fisherman": { - "protocol_id": 6 - }, - "minecraft:fletcher": { - "protocol_id": 7 - }, - "minecraft:leatherworker": { - "protocol_id": 8 - }, - "minecraft:librarian": { - "protocol_id": 9 - }, - "minecraft:mason": { - "protocol_id": 10 - }, - "minecraft:nitwit": { - "protocol_id": 11 - }, - "minecraft:shepherd": { - "protocol_id": 12 - }, - "minecraft:toolsmith": { - "protocol_id": 13 - }, - "minecraft:weaponsmith": { - "protocol_id": 14 - } - } - }, - "minecraft:point_of_interest_type": { - "default": "minecraft:unemployed", - "protocol_id": 24, - "entries": { - "minecraft:unemployed": { - "protocol_id": 0 - }, - "minecraft:armorer": { - "protocol_id": 1 - }, - "minecraft:butcher": { - "protocol_id": 2 - }, - "minecraft:cartographer": { - "protocol_id": 3 - }, - "minecraft:cleric": { - "protocol_id": 4 - }, - "minecraft:farmer": { - "protocol_id": 5 - }, - "minecraft:fisherman": { - "protocol_id": 6 - }, - "minecraft:fletcher": { - "protocol_id": 7 - }, - "minecraft:leatherworker": { - "protocol_id": 8 - }, - "minecraft:librarian": { - "protocol_id": 9 - }, - "minecraft:mason": { - "protocol_id": 10 - }, - "minecraft:nitwit": { - "protocol_id": 11 - }, - "minecraft:shepherd": { - "protocol_id": 12 - }, - "minecraft:toolsmith": { - "protocol_id": 13 - }, - "minecraft:weaponsmith": { - "protocol_id": 14 - }, - "minecraft:home": { - "protocol_id": 15 - }, - "minecraft:meeting": { - "protocol_id": 16 - }, - "minecraft:beehive": { - "protocol_id": 17 - }, - "minecraft:bee_nest": { - "protocol_id": 18 - }, - "minecraft:nether_portal": { - "protocol_id": 19 - }, - "minecraft:lodestone": { - "protocol_id": 20 - }, - "minecraft:lightning_rod": { - "protocol_id": 21 - } - } - }, - "minecraft:memory_module_type": { - "default": "minecraft:dummy", - "protocol_id": 25, - "entries": { - "minecraft:dummy": { - "protocol_id": 0 - }, - "minecraft:home": { - "protocol_id": 1 - }, - "minecraft:job_site": { - "protocol_id": 2 - }, - "minecraft:potential_job_site": { - "protocol_id": 3 - }, - "minecraft:meeting_point": { - "protocol_id": 4 - }, - "minecraft:secondary_job_site": { - "protocol_id": 5 - }, - "minecraft:mobs": { - "protocol_id": 6 - }, - "minecraft:visible_mobs": { - "protocol_id": 7 - }, - "minecraft:visible_villager_babies": { - "protocol_id": 8 - }, - "minecraft:nearest_players": { - "protocol_id": 9 - }, - "minecraft:nearest_visible_player": { - "protocol_id": 10 - }, - "minecraft:nearest_visible_targetable_player": { - "protocol_id": 11 - }, - "minecraft:walk_target": { - "protocol_id": 12 - }, - "minecraft:look_target": { - "protocol_id": 13 - }, - "minecraft:attack_target": { - "protocol_id": 14 - }, - "minecraft:attack_cooling_down": { - "protocol_id": 15 - }, - "minecraft:interaction_target": { - "protocol_id": 16 - }, - "minecraft:breed_target": { - "protocol_id": 17 - }, - "minecraft:ride_target": { - "protocol_id": 18 - }, - "minecraft:path": { - "protocol_id": 19 - }, - "minecraft:interactable_doors": { - "protocol_id": 20 - }, - "minecraft:doors_to_close": { - "protocol_id": 21 - }, - "minecraft:nearest_bed": { - "protocol_id": 22 - }, - "minecraft:hurt_by": { - "protocol_id": 23 - }, - "minecraft:hurt_by_entity": { - "protocol_id": 24 - }, - "minecraft:avoid_target": { - "protocol_id": 25 - }, - "minecraft:nearest_hostile": { - "protocol_id": 26 - }, - "minecraft:nearest_attackable": { - "protocol_id": 27 - }, - "minecraft:hiding_place": { - "protocol_id": 28 - }, - "minecraft:heard_bell_time": { - "protocol_id": 29 - }, - "minecraft:cant_reach_walk_target_since": { - "protocol_id": 30 - }, - "minecraft:golem_detected_recently": { - "protocol_id": 31 - }, - "minecraft:last_slept": { - "protocol_id": 32 - }, - "minecraft:last_woken": { - "protocol_id": 33 - }, - "minecraft:last_worked_at_poi": { - "protocol_id": 34 - }, - "minecraft:nearest_visible_adult": { - "protocol_id": 35 - }, - "minecraft:nearest_visible_wanted_item": { - "protocol_id": 36 - }, - "minecraft:nearest_visible_nemesis": { - "protocol_id": 37 - }, - "minecraft:play_dead_ticks": { - "protocol_id": 38 - }, - "minecraft:tempting_player": { - "protocol_id": 39 - }, - "minecraft:temptation_cooldown_ticks": { - "protocol_id": 40 - }, - "minecraft:is_tempted": { - "protocol_id": 41 - }, - "minecraft:long_jump_cooling_down": { - "protocol_id": 42 - }, - "minecraft:long_jump_mid_jump": { - "protocol_id": 43 - }, - "minecraft:has_hunting_cooldown": { - "protocol_id": 44 - }, - "minecraft:ram_cooldown_ticks": { - "protocol_id": 45 - }, - "minecraft:ram_target": { - "protocol_id": 46 - }, - "minecraft:angry_at": { - "protocol_id": 47 - }, - "minecraft:universal_anger": { - "protocol_id": 48 - }, - "minecraft:admiring_item": { - "protocol_id": 49 - }, - "minecraft:time_trying_to_reach_admire_item": { - "protocol_id": 50 - }, - "minecraft:disable_walk_to_admire_item": { - "protocol_id": 51 - }, - "minecraft:admiring_disabled": { - "protocol_id": 52 - }, - "minecraft:hunted_recently": { - "protocol_id": 53 - }, - "minecraft:celebrate_location": { - "protocol_id": 54 - }, - "minecraft:dancing": { - "protocol_id": 55 - }, - "minecraft:nearest_visible_huntable_hoglin": { - "protocol_id": 56 - }, - "minecraft:nearest_visible_baby_hoglin": { - "protocol_id": 57 - }, - "minecraft:nearest_targetable_player_not_wearing_gold": { - "protocol_id": 58 - }, - "minecraft:nearby_adult_piglins": { - "protocol_id": 59 - }, - "minecraft:nearest_visible_adult_piglins": { - "protocol_id": 60 - }, - "minecraft:nearest_visible_adult_hoglins": { - "protocol_id": 61 - }, - "minecraft:nearest_visible_adult_piglin": { - "protocol_id": 62 - }, - "minecraft:nearest_visible_zombified": { - "protocol_id": 63 - }, - "minecraft:visible_adult_piglin_count": { - "protocol_id": 64 - }, - "minecraft:visible_adult_hoglin_count": { - "protocol_id": 65 - }, - "minecraft:nearest_player_holding_wanted_item": { - "protocol_id": 66 - }, - "minecraft:ate_recently": { - "protocol_id": 67 - }, - "minecraft:nearest_repellent": { - "protocol_id": 68 - }, - "minecraft:pacified": { - "protocol_id": 69 - } - } - }, - "minecraft:sensor_type": { - "default": "minecraft:dummy", - "protocol_id": 26, - "entries": { - "minecraft:dummy": { - "protocol_id": 0 - }, - "minecraft:nearest_items": { - "protocol_id": 1 - }, - "minecraft:nearest_living_entities": { - "protocol_id": 2 - }, - "minecraft:nearest_players": { - "protocol_id": 3 - }, - "minecraft:nearest_bed": { - "protocol_id": 4 - }, - "minecraft:hurt_by": { - "protocol_id": 5 - }, - "minecraft:villager_hostiles": { - "protocol_id": 6 - }, - "minecraft:villager_babies": { - "protocol_id": 7 - }, - "minecraft:secondary_pois": { - "protocol_id": 8 - }, - "minecraft:golem_detected": { - "protocol_id": 9 - }, - "minecraft:piglin_specific_sensor": { - "protocol_id": 10 - }, - "minecraft:piglin_brute_specific_sensor": { - "protocol_id": 11 - }, - "minecraft:hoglin_specific_sensor": { - "protocol_id": 12 - }, - "minecraft:nearest_adult": { - "protocol_id": 13 - }, - "minecraft:axolotl_attackables": { - "protocol_id": 14 - }, - "minecraft:axolotl_temptations": { - "protocol_id": 15 - }, - "minecraft:goat_temptations": { - "protocol_id": 16 - } - } - }, - "minecraft:schedule": { - "protocol_id": 27, - "entries": { - "minecraft:empty": { - "protocol_id": 0 - }, - "minecraft:simple": { - "protocol_id": 1 - }, - "minecraft:villager_baby": { - "protocol_id": 2 - }, - "minecraft:villager_default": { - "protocol_id": 3 - } - } - }, - "minecraft:activity": { - "protocol_id": 28, - "entries": { - "minecraft:core": { - "protocol_id": 0 - }, - "minecraft:idle": { - "protocol_id": 1 - }, - "minecraft:work": { - "protocol_id": 2 - }, - "minecraft:play": { - "protocol_id": 3 - }, - "minecraft:rest": { - "protocol_id": 4 - }, - "minecraft:meet": { - "protocol_id": 5 - }, - "minecraft:panic": { - "protocol_id": 6 - }, - "minecraft:raid": { - "protocol_id": 7 - }, - "minecraft:pre_raid": { - "protocol_id": 8 - }, - "minecraft:hide": { - "protocol_id": 9 - }, - "minecraft:fight": { - "protocol_id": 10 - }, - "minecraft:celebrate": { - "protocol_id": 11 - }, - "minecraft:admire_item": { - "protocol_id": 12 - }, - "minecraft:avoid": { - "protocol_id": 13 - }, - "minecraft:ride": { - "protocol_id": 14 - }, - "minecraft:play_dead": { - "protocol_id": 15 - }, - "minecraft:long_jump": { - "protocol_id": 16 - }, - "minecraft:ram": { - "protocol_id": 17 - } - } - }, - "minecraft:loot_pool_entry_type": { - "protocol_id": 29, - "entries": { - "minecraft:empty": { - "protocol_id": 0 - }, - "minecraft:item": { - "protocol_id": 1 - }, - "minecraft:loot_table": { - "protocol_id": 2 - }, - "minecraft:dynamic": { - "protocol_id": 3 - }, - "minecraft:tag": { - "protocol_id": 4 - }, - "minecraft:alternatives": { - "protocol_id": 5 - }, - "minecraft:sequence": { - "protocol_id": 6 - }, - "minecraft:group": { - "protocol_id": 7 - } - } - }, - "minecraft:loot_function_type": { - "protocol_id": 30, - "entries": { - "minecraft:set_count": { - "protocol_id": 0 - }, - "minecraft:enchant_with_levels": { - "protocol_id": 1 - }, - "minecraft:enchant_randomly": { - "protocol_id": 2 - }, - "minecraft:set_enchantments": { - "protocol_id": 3 - }, - "minecraft:set_nbt": { - "protocol_id": 4 - }, - "minecraft:furnace_smelt": { - "protocol_id": 5 - }, - "minecraft:looting_enchant": { - "protocol_id": 6 - }, - "minecraft:set_damage": { - "protocol_id": 7 - }, - "minecraft:set_attributes": { - "protocol_id": 8 - }, - "minecraft:set_name": { - "protocol_id": 9 - }, - "minecraft:exploration_map": { - "protocol_id": 10 - }, - "minecraft:set_stew_effect": { - "protocol_id": 11 - }, - "minecraft:copy_name": { - "protocol_id": 12 - }, - "minecraft:set_contents": { - "protocol_id": 13 - }, - "minecraft:limit_count": { - "protocol_id": 14 - }, - "minecraft:apply_bonus": { - "protocol_id": 15 - }, - "minecraft:set_loot_table": { - "protocol_id": 16 - }, - "minecraft:explosion_decay": { - "protocol_id": 17 - }, - "minecraft:set_lore": { - "protocol_id": 18 - }, - "minecraft:fill_player_head": { - "protocol_id": 19 - }, - "minecraft:copy_nbt": { - "protocol_id": 20 - }, - "minecraft:copy_state": { - "protocol_id": 21 - }, - "minecraft:set_banner_pattern": { - "protocol_id": 22 - }, - "minecraft:set_potion": { - "protocol_id": 23 - } - } - }, - "minecraft:loot_condition_type": { - "protocol_id": 31, - "entries": { - "minecraft:inverted": { - "protocol_id": 0 - }, - "minecraft:alternative": { - "protocol_id": 1 - }, - "minecraft:random_chance": { - "protocol_id": 2 - }, - "minecraft:random_chance_with_looting": { - "protocol_id": 3 - }, - "minecraft:entity_properties": { - "protocol_id": 4 - }, - "minecraft:killed_by_player": { - "protocol_id": 5 - }, - "minecraft:entity_scores": { - "protocol_id": 6 - }, - "minecraft:block_state_property": { - "protocol_id": 7 - }, - "minecraft:match_tool": { - "protocol_id": 8 - }, - "minecraft:table_bonus": { - "protocol_id": 9 - }, - "minecraft:survives_explosion": { - "protocol_id": 10 - }, - "minecraft:damage_source_properties": { - "protocol_id": 11 - }, - "minecraft:location_check": { - "protocol_id": 12 - }, - "minecraft:weather_check": { - "protocol_id": 13 - }, - "minecraft:reference": { - "protocol_id": 14 - }, - "minecraft:time_check": { - "protocol_id": 15 - }, - "minecraft:value_check": { - "protocol_id": 16 - } - } - }, - "minecraft:loot_number_provider_type": { - "protocol_id": 32, - "entries": { - "minecraft:constant": { - "protocol_id": 0 - }, - "minecraft:uniform": { - "protocol_id": 1 - }, - "minecraft:binomial": { - "protocol_id": 2 - }, - "minecraft:score": { - "protocol_id": 3 - } - } - }, - "minecraft:loot_nbt_provider_type": { - "protocol_id": 33, - "entries": { - "minecraft:storage": { - "protocol_id": 0 - }, - "minecraft:context": { - "protocol_id": 1 - } - } - }, - "minecraft:loot_score_provider_type": { - "protocol_id": 34, - "entries": { "minecraft:fixed": { "protocol_id": 0 }, - "minecraft:context": { - "protocol_id": 1 - } - } - }, - "minecraft:float_provider_type": { - "protocol_id": 35, - "entries": { - "minecraft:constant": { - "protocol_id": 0 - }, - "minecraft:uniform": { + "minecraft:multi_noise": { "protocol_id": 1 }, - "minecraft:clamped_normal": { - "protocol_id": 2 - }, - "minecraft:trapezoid": { + "minecraft:the_end": { "protocol_id": 3 } - } + }, + "protocol_id": 52 }, - "minecraft:int_provider_type": { - "protocol_id": 36, + "minecraft:worldgen/block_state_provider_type": { "entries": { - "minecraft:constant": { - "protocol_id": 0 - }, - "minecraft:uniform": { - "protocol_id": 1 - }, - "minecraft:biased_to_bottom": { - "protocol_id": 2 - }, - "minecraft:clamped": { - "protocol_id": 3 - }, - "minecraft:weighted_list": { + "minecraft:dual_noise_provider": { "protocol_id": 4 }, - "minecraft:clamped_normal": { - "protocol_id": 5 - } - } - }, - "minecraft:height_provider_type": { - "protocol_id": 37, - "entries": { - "minecraft:constant": { - "protocol_id": 0 - }, - "minecraft:uniform": { - "protocol_id": 1 - }, - "minecraft:biased_to_bottom": { - "protocol_id": 2 - }, - "minecraft:very_biased_to_bottom": { + "minecraft:noise_provider": { "protocol_id": 3 }, - "minecraft:trapezoid": { - "protocol_id": 4 - }, - "minecraft:weighted_list": { - "protocol_id": 5 - } - } - }, - "minecraft:block_predicate_type": { - "protocol_id": 38, - "entries": { - "minecraft:matching_blocks": { - "protocol_id": 0 - }, - "minecraft:matching_block_tag": { - "protocol_id": 1 - }, - "minecraft:matching_fluids": { + "minecraft:noise_threshold_provider": { "protocol_id": 2 }, - "minecraft:has_sturdy_face": { - "protocol_id": 3 - }, - "minecraft:solid": { - "protocol_id": 4 - }, - "minecraft:replaceable": { - "protocol_id": 5 - }, - "minecraft:would_survive": { + "minecraft:randomized_int_state_provider": { "protocol_id": 6 }, - "minecraft:inside_world_bounds": { - "protocol_id": 7 + "minecraft:rotated_block_provider": { + "protocol_id": 5 }, - "minecraft:any_of": { - "protocol_id": 8 + "minecraft:simple_state_provider": { + "protocol_id": 0 }, - "minecraft:all_of": { - "protocol_id": 9 - }, - "minecraft:not": { - "protocol_id": 10 - }, - "minecraft:true": { - "protocol_id": 11 + "minecraft:weighted_state_provider": { + "protocol_id": 1 } - } + }, + "protocol_id": 46 }, "minecraft:worldgen/carver": { - "protocol_id": 39, "entries": { + "minecraft:canyon": { + "protocol_id": 2 + }, "minecraft:cave": { "protocol_id": 0 }, "minecraft:nether_cave": { "protocol_id": 1 - }, - "minecraft:canyon": { - "protocol_id": 2 } - } + }, + "protocol_id": 40 }, - "minecraft:worldgen/feature": { - "protocol_id": 40, + "minecraft:worldgen/chunk_generator": { "entries": { - "minecraft:no_op": { - "protocol_id": 0 + "minecraft:debug": { + "protocol_id": 2 }, - "minecraft:tree": { + "minecraft:flat": { "protocol_id": 1 }, - "minecraft:flower": { + "minecraft:noise": { + "protocol_id": 0 + } + }, + "protocol_id": 53 + }, + "minecraft:worldgen/density_function_type": { + "entries": { + "minecraft:abs": { + "protocol_id": 19 + }, + "minecraft:add": { + "protocol_id": 25 + }, + "minecraft:beardifier": { "protocol_id": 2 }, - "minecraft:no_bonemeal_flower": { - "protocol_id": 3 + "minecraft:blend_alpha": { + "protocol_id": 0 }, - "minecraft:random_patch": { - "protocol_id": 4 + "minecraft:blend_density": { + "protocol_id": 17 }, - "minecraft:block_pile": { - "protocol_id": 5 + "minecraft:blend_offset": { + "protocol_id": 1 }, - "minecraft:spring_feature": { + "minecraft:cache_2d": { "protocol_id": 6 }, - "minecraft:chorus_plant": { - "protocol_id": 7 - }, - "minecraft:replace_single_block": { + "minecraft:cache_all_in_cell": { "protocol_id": 8 }, - "minecraft:void_start_platform": { - "protocol_id": 9 + "minecraft:cache_once": { + "protocol_id": 7 }, - "minecraft:desert_well": { + "minecraft:clamp": { + "protocol_id": 18 + }, + "minecraft:constant": { + "protocol_id": 30 + }, + "minecraft:cube": { + "protocol_id": 21 + }, + "minecraft:end_islands": { "protocol_id": 10 }, - "minecraft:fossil": { - "protocol_id": 11 + "minecraft:flat_cache": { + "protocol_id": 5 }, - "minecraft:huge_red_mushroom": { - "protocol_id": 12 + "minecraft:half_negative": { + "protocol_id": 22 }, - "minecraft:huge_brown_mushroom": { + "minecraft:interpolated": { + "protocol_id": 4 + }, + "minecraft:max": { + "protocol_id": 28 + }, + "minecraft:min": { + "protocol_id": 27 + }, + "minecraft:mul": { + "protocol_id": 26 + }, + "minecraft:noise": { + "protocol_id": 9 + }, + "minecraft:old_blended_noise": { + "protocol_id": 3 + }, + "minecraft:quarter_negative": { + "protocol_id": 23 + }, + "minecraft:range_choice": { "protocol_id": 13 }, - "minecraft:ice_spike": { - "protocol_id": 14 - }, - "minecraft:glowstone_blob": { - "protocol_id": 15 - }, - "minecraft:freeze_top_layer": { + "minecraft:shift": { "protocol_id": 16 }, - "minecraft:vines": { - "protocol_id": 17 + "minecraft:shift_a": { + "protocol_id": 14 + }, + "minecraft:shift_b": { + "protocol_id": 15 + }, + "minecraft:shifted_noise": { + "protocol_id": 12 + }, + "minecraft:spline": { + "protocol_id": 29 + }, + "minecraft:square": { + "protocol_id": 20 + }, + "minecraft:squeeze": { + "protocol_id": 24 + }, + "minecraft:weird_scaled_sampler": { + "protocol_id": 11 + }, + "minecraft:y_clamped_gradient": { + "protocol_id": 31 + } + }, + "protocol_id": 56 + }, + "minecraft:worldgen/feature": { + "entries": { + "minecraft:bamboo": { + "protocol_id": 41 + }, + "minecraft:basalt_columns": { + "protocol_id": 46 + }, + "minecraft:basalt_pillar": { + "protocol_id": 51 }, "minecraft:block_column": { "protocol_id": 18 }, - "minecraft:vegetation_patch": { - "protocol_id": 19 - }, - "minecraft:waterlogged_vegetation_patch": { - "protocol_id": 20 - }, - "minecraft:root_system": { - "protocol_id": 21 - }, - "minecraft:glow_lichen": { - "protocol_id": 22 - }, - "minecraft:underwater_magma": { - "protocol_id": 23 - }, - "minecraft:monster_room": { - "protocol_id": 24 + "minecraft:block_pile": { + "protocol_id": 5 }, "minecraft:blue_ice": { "protocol_id": 25 }, - "minecraft:iceberg": { - "protocol_id": 26 + "minecraft:bonus_chest": { + "protocol_id": 50 }, - "minecraft:forest_rock": { - "protocol_id": 27 + "minecraft:chorus_plant": { + "protocol_id": 7 + }, + "minecraft:coral_claw": { + "protocol_id": 38 + }, + "minecraft:coral_mushroom": { + "protocol_id": 37 + }, + "minecraft:coral_tree": { + "protocol_id": 36 + }, + "minecraft:delta_feature": { + "protocol_id": 47 + }, + "minecraft:desert_well": { + "protocol_id": 10 }, "minecraft:disk": { "protocol_id": 28 }, - "minecraft:ice_patch": { - "protocol_id": 29 - }, - "minecraft:lake": { - "protocol_id": 30 - }, - "minecraft:ore": { - "protocol_id": 31 - }, - "minecraft:end_spike": { - "protocol_id": 32 - }, - "minecraft:end_island": { - "protocol_id": 33 - }, - "minecraft:end_gateway": { - "protocol_id": 34 - }, - "minecraft:seagrass": { - "protocol_id": 35 - }, - "minecraft:kelp": { - "protocol_id": 36 - }, - "minecraft:coral_tree": { - "protocol_id": 37 - }, - "minecraft:coral_mushroom": { - "protocol_id": 38 - }, - "minecraft:coral_claw": { - "protocol_id": 39 - }, - "minecraft:sea_pickle": { - "protocol_id": 40 - }, - "minecraft:simple_block": { - "protocol_id": 41 - }, - "minecraft:bamboo": { - "protocol_id": 42 - }, - "minecraft:huge_fungus": { - "protocol_id": 43 - }, - "minecraft:nether_forest_vegetation": { - "protocol_id": 44 - }, - "minecraft:weeping_vines": { - "protocol_id": 45 - }, - "minecraft:twisting_vines": { - "protocol_id": 46 - }, - "minecraft:basalt_columns": { - "protocol_id": 47 - }, - "minecraft:delta_feature": { - "protocol_id": 48 - }, - "minecraft:netherrack_replace_blobs": { - "protocol_id": 49 - }, - "minecraft:fill_layer": { - "protocol_id": 50 - }, - "minecraft:bonus_chest": { - "protocol_id": 51 - }, - "minecraft:basalt_pillar": { - "protocol_id": 52 - }, - "minecraft:scattered_ore": { - "protocol_id": 53 - }, - "minecraft:random_selector": { - "protocol_id": 54 - }, - "minecraft:simple_random_selector": { - "protocol_id": 55 - }, - "minecraft:random_boolean_selector": { - "protocol_id": 56 - }, - "minecraft:geode": { + "minecraft:dripstone_cluster": { "protocol_id": 57 }, - "minecraft:dripstone_cluster": { - "protocol_id": 58 + "minecraft:end_gateway": { + "protocol_id": 33 }, - "minecraft:large_dripstone": { - "protocol_id": 59 + "minecraft:end_island": { + "protocol_id": 32 }, - "minecraft:pointed_dripstone": { - "protocol_id": 60 - } - } - }, - "minecraft:worldgen/structure_feature": { - "protocol_id": 41, - "entries": { - "minecraft:pillager_outpost": { - "protocol_id": 0 + "minecraft:end_spike": { + "protocol_id": 31 }, - "minecraft:mineshaft": { - "protocol_id": 1 + "minecraft:fill_layer": { + "protocol_id": 49 }, - "minecraft:mansion": { + "minecraft:flower": { "protocol_id": 2 }, - "minecraft:jungle_pyramid": { - "protocol_id": 3 + "minecraft:forest_rock": { + "protocol_id": 27 }, - "minecraft:desert_pyramid": { - "protocol_id": 4 - }, - "minecraft:igloo": { - "protocol_id": 5 - }, - "minecraft:ruined_portal": { - "protocol_id": 6 - }, - "minecraft:shipwreck": { - "protocol_id": 7 - }, - "minecraft:swamp_hut": { - "protocol_id": 8 - }, - "minecraft:stronghold": { - "protocol_id": 9 - }, - "minecraft:monument": { - "protocol_id": 10 - }, - "minecraft:ocean_ruin": { + "minecraft:fossil": { "protocol_id": 11 }, - "minecraft:fortress": { - "protocol_id": 12 - }, - "minecraft:endcity": { - "protocol_id": 13 - }, - "minecraft:buried_treasure": { - "protocol_id": 14 - }, - "minecraft:village": { - "protocol_id": 15 - }, - "minecraft:nether_fossil": { + "minecraft:freeze_top_layer": { "protocol_id": 16 }, - "minecraft:bastion_remnant": { - "protocol_id": 17 - } - } - }, - "minecraft:worldgen/structure_placement": { - "protocol_id": 42, - "entries": { - "minecraft:random_spread": { + "minecraft:geode": { + "protocol_id": 56 + }, + "minecraft:glowstone_blob": { + "protocol_id": 15 + }, + "minecraft:huge_brown_mushroom": { + "protocol_id": 13 + }, + "minecraft:huge_fungus": { + "protocol_id": 42 + }, + "minecraft:huge_red_mushroom": { + "protocol_id": 12 + }, + "minecraft:ice_spike": { + "protocol_id": 14 + }, + "minecraft:iceberg": { + "protocol_id": 26 + }, + "minecraft:kelp": { + "protocol_id": 35 + }, + "minecraft:lake": { + "protocol_id": 29 + }, + "minecraft:large_dripstone": { + "protocol_id": 58 + }, + "minecraft:monster_room": { + "protocol_id": 24 + }, + "minecraft:multiface_growth": { + "protocol_id": 22 + }, + "minecraft:nether_forest_vegetation": { + "protocol_id": 43 + }, + "minecraft:netherrack_replace_blobs": { + "protocol_id": 48 + }, + "minecraft:no_bonemeal_flower": { + "protocol_id": 3 + }, + "minecraft:no_op": { "protocol_id": 0 }, - "minecraft:concentric_rings": { + "minecraft:ore": { + "protocol_id": 30 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 59 + }, + "minecraft:random_boolean_selector": { + "protocol_id": 55 + }, + "minecraft:random_patch": { + "protocol_id": 4 + }, + "minecraft:random_selector": { + "protocol_id": 53 + }, + "minecraft:replace_single_block": { + "protocol_id": 8 + }, + "minecraft:root_system": { + "protocol_id": 21 + }, + "minecraft:scattered_ore": { + "protocol_id": 52 + }, + "minecraft:sculk_patch": { + "protocol_id": 60 + }, + "minecraft:sea_pickle": { + "protocol_id": 39 + }, + "minecraft:seagrass": { + "protocol_id": 34 + }, + "minecraft:simple_block": { + "protocol_id": 40 + }, + "minecraft:simple_random_selector": { + "protocol_id": 54 + }, + "minecraft:spring_feature": { + "protocol_id": 6 + }, + "minecraft:tree": { + "protocol_id": 1 + }, + "minecraft:twisting_vines": { + "protocol_id": 45 + }, + "minecraft:underwater_magma": { + "protocol_id": 23 + }, + "minecraft:vegetation_patch": { + "protocol_id": 19 + }, + "minecraft:vines": { + "protocol_id": 17 + }, + "minecraft:void_start_platform": { + "protocol_id": 9 + }, + "minecraft:waterlogged_vegetation_patch": { + "protocol_id": 20 + }, + "minecraft:weeping_vines": { + "protocol_id": 44 + } + }, + "protocol_id": 41 + }, + "minecraft:worldgen/feature_size_type": { + "entries": { + "minecraft:three_layers_feature_size": { + "protocol_id": 1 + }, + "minecraft:two_layers_feature_size": { + "protocol_id": 0 + } + }, + "protocol_id": 51 + }, + "minecraft:worldgen/foliage_placer_type": { + "entries": { + "minecraft:acacia_foliage_placer": { + "protocol_id": 3 + }, + "minecraft:blob_foliage_placer": { + "protocol_id": 0 + }, + "minecraft:bush_foliage_placer": { + "protocol_id": 4 + }, + "minecraft:dark_oak_foliage_placer": { + "protocol_id": 8 + }, + "minecraft:fancy_foliage_placer": { + "protocol_id": 5 + }, + "minecraft:jungle_foliage_placer": { + "protocol_id": 6 + }, + "minecraft:mega_pine_foliage_placer": { + "protocol_id": 7 + }, + "minecraft:pine_foliage_placer": { + "protocol_id": 2 + }, + "minecraft:random_spread_foliage_placer": { + "protocol_id": 9 + }, + "minecraft:spruce_foliage_placer": { "protocol_id": 1 } - } + }, + "protocol_id": 47 + }, + "minecraft:worldgen/material_condition": { + "entries": { + "minecraft:above_preliminary_surface": { + "protocol_id": 9 + }, + "minecraft:biome": { + "protocol_id": 0 + }, + "minecraft:hole": { + "protocol_id": 8 + }, + "minecraft:noise_threshold": { + "protocol_id": 1 + }, + "minecraft:not": { + "protocol_id": 7 + }, + "minecraft:steep": { + "protocol_id": 6 + }, + "minecraft:stone_depth": { + "protocol_id": 10 + }, + "minecraft:temperature": { + "protocol_id": 5 + }, + "minecraft:vertical_gradient": { + "protocol_id": 2 + }, + "minecraft:water": { + "protocol_id": 4 + }, + "minecraft:y_above": { + "protocol_id": 3 + } + }, + "protocol_id": 54 + }, + "minecraft:worldgen/material_rule": { + "entries": { + "minecraft:bandlands": { + "protocol_id": 0 + }, + "minecraft:block": { + "protocol_id": 1 + }, + "minecraft:condition": { + "protocol_id": 3 + }, + "minecraft:sequence": { + "protocol_id": 2 + } + }, + "protocol_id": 55 + }, + "minecraft:worldgen/placement_modifier_type": { + "entries": { + "minecraft:biome": { + "protocol_id": 4 + }, + "minecraft:block_predicate_filter": { + "protocol_id": 0 + }, + "minecraft:carving_mask": { + "protocol_id": 14 + }, + "minecraft:count": { + "protocol_id": 5 + }, + "minecraft:count_on_every_layer": { + "protocol_id": 8 + }, + "minecraft:environment_scan": { + "protocol_id": 9 + }, + "minecraft:height_range": { + "protocol_id": 11 + }, + "minecraft:heightmap": { + "protocol_id": 10 + }, + "minecraft:in_square": { + "protocol_id": 12 + }, + "minecraft:noise_based_count": { + "protocol_id": 6 + }, + "minecraft:noise_threshold_count": { + "protocol_id": 7 + }, + "minecraft:random_offset": { + "protocol_id": 13 + }, + "minecraft:rarity_filter": { + "protocol_id": 1 + }, + "minecraft:surface_relative_threshold_filter": { + "protocol_id": 2 + }, + "minecraft:surface_water_depth_filter": { + "protocol_id": 3 + } + }, + "protocol_id": 45 + }, + "minecraft:worldgen/root_placer_type": { + "entries": { + "minecraft:mangrove_root_placer": { + "protocol_id": 0 + } + }, + "protocol_id": 49 }, "minecraft:worldgen/structure_piece": { - "protocol_id": 43, "entries": { + "minecraft:btp": { + "protocol_id": 52 + }, + "minecraft:ecp": { + "protocol_id": 50 + }, + "minecraft:iglu": { + "protocol_id": 34 + }, + "minecraft:jigsaw": { + "protocol_id": 55 + }, "minecraft:mscorridor": { "protocol_id": 0 }, @@ -12617,96 +13994,42 @@ "minecraft:neccs": { "protocol_id": 7 }, - "minecraft:nectb": { - "protocol_id": 8 - }, "minecraft:nece": { "protocol_id": 9 }, - "minecraft:nescsc": { - "protocol_id": 10 - }, - "minecraft:nesclt": { - "protocol_id": 11 - }, - "minecraft:nesc": { - "protocol_id": 12 - }, - "minecraft:nescrt": { - "protocol_id": 13 - }, "minecraft:necsr": { "protocol_id": 14 }, + "minecraft:nectb": { + "protocol_id": 8 + }, + "minecraft:nefos": { + "protocol_id": 54 + }, "minecraft:nemt": { "protocol_id": 15 }, "minecraft:nerc": { "protocol_id": 16 }, + "minecraft:nesc": { + "protocol_id": 12 + }, + "minecraft:nesclt": { + "protocol_id": 11 + }, + "minecraft:nescrt": { + "protocol_id": 13 + }, + "minecraft:nescsc": { + "protocol_id": 10 + }, "minecraft:nesr": { "protocol_id": 17 }, "minecraft:nestart": { "protocol_id": 18 }, - "minecraft:shcc": { - "protocol_id": 19 - }, - "minecraft:shfc": { - "protocol_id": 20 - }, - "minecraft:sh5c": { - "protocol_id": 21 - }, - "minecraft:shlt": { - "protocol_id": 22 - }, - "minecraft:shli": { - "protocol_id": 23 - }, - "minecraft:shpr": { - "protocol_id": 24 - }, - "minecraft:shph": { - "protocol_id": 25 - }, - "minecraft:shrt": { - "protocol_id": 26 - }, - "minecraft:shrc": { - "protocol_id": 27 - }, - "minecraft:shsd": { - "protocol_id": 28 - }, - "minecraft:shstart": { - "protocol_id": 29 - }, - "minecraft:shs": { - "protocol_id": 30 - }, - "minecraft:shssd": { - "protocol_id": 31 - }, - "minecraft:tejp": { - "protocol_id": 32 - }, - "minecraft:orp": { - "protocol_id": 33 - }, - "minecraft:iglu": { - "protocol_id": 34 - }, - "minecraft:rupo": { - "protocol_id": 35 - }, - "minecraft:tesh": { - "protocol_id": 36 - }, - "minecraft:tedp": { - "protocol_id": 37 - }, "minecraft:omb": { "protocol_id": 38 }, @@ -12743,390 +14066,108 @@ "minecraft:omwr": { "protocol_id": 49 }, - "minecraft:ecp": { - "protocol_id": 50 + "minecraft:orp": { + "protocol_id": 33 }, - "minecraft:wmp": { - "protocol_id": 51 + "minecraft:rupo": { + "protocol_id": 35 }, - "minecraft:btp": { - "protocol_id": 52 + "minecraft:sh5c": { + "protocol_id": 21 + }, + "minecraft:shcc": { + "protocol_id": 19 + }, + "minecraft:shfc": { + "protocol_id": 20 }, "minecraft:shipwreck": { "protocol_id": 53 }, - "minecraft:nefos": { - "protocol_id": 54 - }, - "minecraft:jigsaw": { - "protocol_id": 55 - } - } - }, - "minecraft:worldgen/placement_modifier_type": { - "protocol_id": 44, - "entries": { - "minecraft:block_predicate_filter": { - "protocol_id": 0 - }, - "minecraft:rarity_filter": { - "protocol_id": 1 - }, - "minecraft:surface_relative_threshold_filter": { - "protocol_id": 2 - }, - "minecraft:surface_water_depth_filter": { - "protocol_id": 3 - }, - "minecraft:biome": { - "protocol_id": 4 - }, - "minecraft:count": { - "protocol_id": 5 - }, - "minecraft:noise_based_count": { - "protocol_id": 6 - }, - "minecraft:noise_threshold_count": { - "protocol_id": 7 - }, - "minecraft:count_on_every_layer": { - "protocol_id": 8 - }, - "minecraft:environment_scan": { - "protocol_id": 9 - }, - "minecraft:heightmap": { - "protocol_id": 10 - }, - "minecraft:height_range": { - "protocol_id": 11 - }, - "minecraft:in_square": { - "protocol_id": 12 - }, - "minecraft:random_offset": { - "protocol_id": 13 - }, - "minecraft:carving_mask": { - "protocol_id": 14 - } - } - }, - "minecraft:worldgen/block_state_provider_type": { - "protocol_id": 45, - "entries": { - "minecraft:simple_state_provider": { - "protocol_id": 0 - }, - "minecraft:weighted_state_provider": { - "protocol_id": 1 - }, - "minecraft:noise_threshold_provider": { - "protocol_id": 2 - }, - "minecraft:noise_provider": { - "protocol_id": 3 - }, - "minecraft:dual_noise_provider": { - "protocol_id": 4 - }, - "minecraft:rotated_block_provider": { - "protocol_id": 5 - }, - "minecraft:randomized_int_state_provider": { - "protocol_id": 6 - } - } - }, - "minecraft:worldgen/foliage_placer_type": { - "protocol_id": 46, - "entries": { - "minecraft:blob_foliage_placer": { - "protocol_id": 0 - }, - "minecraft:spruce_foliage_placer": { - "protocol_id": 1 - }, - "minecraft:pine_foliage_placer": { - "protocol_id": 2 - }, - "minecraft:acacia_foliage_placer": { - "protocol_id": 3 - }, - "minecraft:bush_foliage_placer": { - "protocol_id": 4 - }, - "minecraft:fancy_foliage_placer": { - "protocol_id": 5 - }, - "minecraft:jungle_foliage_placer": { - "protocol_id": 6 - }, - "minecraft:mega_pine_foliage_placer": { - "protocol_id": 7 - }, - "minecraft:dark_oak_foliage_placer": { - "protocol_id": 8 - }, - "minecraft:random_spread_foliage_placer": { - "protocol_id": 9 - } - } - }, - "minecraft:worldgen/trunk_placer_type": { - "protocol_id": 47, - "entries": { - "minecraft:straight_trunk_placer": { - "protocol_id": 0 - }, - "minecraft:forking_trunk_placer": { - "protocol_id": 1 - }, - "minecraft:giant_trunk_placer": { - "protocol_id": 2 - }, - "minecraft:mega_jungle_trunk_placer": { - "protocol_id": 3 - }, - "minecraft:dark_oak_trunk_placer": { - "protocol_id": 4 - }, - "minecraft:fancy_trunk_placer": { - "protocol_id": 5 - }, - "minecraft:bending_trunk_placer": { - "protocol_id": 6 - } - } - }, - "minecraft:worldgen/tree_decorator_type": { - "protocol_id": 48, - "entries": { - "minecraft:trunk_vine": { - "protocol_id": 0 - }, - "minecraft:leave_vine": { - "protocol_id": 1 - }, - "minecraft:cocoa": { - "protocol_id": 2 - }, - "minecraft:beehive": { - "protocol_id": 3 - }, - "minecraft:alter_ground": { - "protocol_id": 4 - } - } - }, - "minecraft:worldgen/feature_size_type": { - "protocol_id": 49, - "entries": { - "minecraft:two_layers_feature_size": { - "protocol_id": 0 - }, - "minecraft:three_layers_feature_size": { - "protocol_id": 1 - } - } - }, - "minecraft:worldgen/biome_source": { - "protocol_id": 50, - "entries": { - "minecraft:fixed": { - "protocol_id": 0 - }, - "minecraft:multi_noise": { - "protocol_id": 1 - }, - "minecraft:checkerboard": { - "protocol_id": 2 - }, - "minecraft:the_end": { - "protocol_id": 3 - } - } - }, - "minecraft:worldgen/chunk_generator": { - "protocol_id": 51, - "entries": { - "minecraft:noise": { - "protocol_id": 0 - }, - "minecraft:flat": { - "protocol_id": 1 - }, - "minecraft:debug": { - "protocol_id": 2 - } - } - }, - "minecraft:worldgen/material_condition": { - "protocol_id": 52, - "entries": { - "minecraft:biome": { - "protocol_id": 0 - }, - "minecraft:noise_threshold": { - "protocol_id": 1 - }, - "minecraft:vertical_gradient": { - "protocol_id": 2 - }, - "minecraft:y_above": { - "protocol_id": 3 - }, - "minecraft:water": { - "protocol_id": 4 - }, - "minecraft:temperature": { - "protocol_id": 5 - }, - "minecraft:steep": { - "protocol_id": 6 - }, - "minecraft:not": { - "protocol_id": 7 - }, - "minecraft:hole": { - "protocol_id": 8 - }, - "minecraft:above_preliminary_surface": { - "protocol_id": 9 - }, - "minecraft:stone_depth": { - "protocol_id": 10 - } - } - }, - "minecraft:worldgen/material_rule": { - "protocol_id": 53, - "entries": { - "minecraft:bandlands": { - "protocol_id": 0 - }, - "minecraft:block": { - "protocol_id": 1 - }, - "minecraft:sequence": { - "protocol_id": 2 - }, - "minecraft:condition": { - "protocol_id": 3 - } - } - }, - "minecraft:worldgen/density_function_type": { - "protocol_id": 54, - "entries": { - "minecraft:blend_alpha": { - "protocol_id": 0 - }, - "minecraft:blend_offset": { - "protocol_id": 1 - }, - "minecraft:beardifier": { - "protocol_id": 2 - }, - "minecraft:old_blended_noise": { - "protocol_id": 3 - }, - "minecraft:interpolated": { - "protocol_id": 4 - }, - "minecraft:flat_cache": { - "protocol_id": 5 - }, - "minecraft:cache_2d": { - "protocol_id": 6 - }, - "minecraft:cache_once": { - "protocol_id": 7 - }, - "minecraft:cache_all_in_cell": { - "protocol_id": 8 - }, - "minecraft:noise": { - "protocol_id": 9 - }, - "minecraft:end_islands": { - "protocol_id": 10 - }, - "minecraft:weird_scaled_sampler": { - "protocol_id": 11 - }, - "minecraft:shifted_noise": { - "protocol_id": 12 - }, - "minecraft:range_choice": { - "protocol_id": 13 - }, - "minecraft:shift_a": { - "protocol_id": 14 - }, - "minecraft:shift_b": { - "protocol_id": 15 - }, - "minecraft:shift": { - "protocol_id": 16 - }, - "minecraft:blend_density": { - "protocol_id": 17 - }, - "minecraft:clamp": { - "protocol_id": 18 - }, - "minecraft:abs": { - "protocol_id": 19 - }, - "minecraft:square": { - "protocol_id": 20 - }, - "minecraft:cube": { - "protocol_id": 21 - }, - "minecraft:half_negative": { - "protocol_id": 22 - }, - "minecraft:quarter_negative": { + "minecraft:shli": { "protocol_id": 23 }, - "minecraft:squeeze": { - "protocol_id": 24 + "minecraft:shlt": { + "protocol_id": 22 }, - "minecraft:slide": { + "minecraft:shph": { "protocol_id": 25 }, - "minecraft:add": { - "protocol_id": 26 + "minecraft:shpr": { + "protocol_id": 24 }, - "minecraft:mul": { + "minecraft:shrc": { "protocol_id": 27 }, - "minecraft:min": { - "protocol_id": 28 + "minecraft:shrt": { + "protocol_id": 26 }, - "minecraft:max": { - "protocol_id": 29 - }, - "minecraft:spline": { + "minecraft:shs": { "protocol_id": 30 }, - "minecraft:terrain_shaper_spline": { + "minecraft:shsd": { + "protocol_id": 28 + }, + "minecraft:shssd": { "protocol_id": 31 }, - "minecraft:constant": { + "minecraft:shstart": { + "protocol_id": 29 + }, + "minecraft:tedp": { + "protocol_id": 37 + }, + "minecraft:tejp": { "protocol_id": 32 }, - "minecraft:y_clamped_gradient": { - "protocol_id": 33 + "minecraft:tesh": { + "protocol_id": 36 + }, + "minecraft:wmp": { + "protocol_id": 51 } - } + }, + "protocol_id": 43 + }, + "minecraft:worldgen/structure_placement": { + "entries": { + "minecraft:concentric_rings": { + "protocol_id": 1 + }, + "minecraft:random_spread": { + "protocol_id": 0 + } + }, + "protocol_id": 42 + }, + "minecraft:worldgen/structure_pool_element": { + "entries": { + "minecraft:empty_pool_element": { + "protocol_id": 3 + }, + "minecraft:feature_pool_element": { + "protocol_id": 2 + }, + "minecraft:legacy_single_pool_element": { + "protocol_id": 4 + }, + "minecraft:list_pool_element": { + "protocol_id": 1 + }, + "minecraft:single_pool_element": { + "protocol_id": 0 + } + }, + "protocol_id": 58 }, "minecraft:worldgen/structure_processor": { - "protocol_id": 55, "entries": { + "minecraft:blackstone_replace": { + "protocol_id": 7 + }, + "minecraft:block_age": { + "protocol_id": 6 + }, "minecraft:block_ignore": { "protocol_id": 0 }, @@ -13139,44 +14180,124 @@ "minecraft:jigsaw_replacement": { "protocol_id": 3 }, - "minecraft:rule": { - "protocol_id": 4 + "minecraft:lava_submerged_block": { + "protocol_id": 8 }, "minecraft:nop": { "protocol_id": 5 }, - "minecraft:block_age": { - "protocol_id": 6 - }, - "minecraft:blackstone_replace": { - "protocol_id": 7 - }, - "minecraft:lava_submerged_block": { - "protocol_id": 8 - }, "minecraft:protected_blocks": { "protocol_id": 9 - } - } - }, - "minecraft:worldgen/structure_pool_element": { - "protocol_id": 56, - "entries": { - "minecraft:single_pool_element": { - "protocol_id": 0 }, - "minecraft:list_pool_element": { - "protocol_id": 1 - }, - "minecraft:feature_pool_element": { - "protocol_id": 2 - }, - "minecraft:empty_pool_element": { - "protocol_id": 3 - }, - "minecraft:legacy_single_pool_element": { + "minecraft:rule": { "protocol_id": 4 } - } + }, + "protocol_id": 57 + }, + "minecraft:worldgen/structure_type": { + "entries": { + "minecraft:buried_treasure": { + "protocol_id": 0 + }, + "minecraft:desert_pyramid": { + "protocol_id": 1 + }, + "minecraft:end_city": { + "protocol_id": 2 + }, + "minecraft:fortress": { + "protocol_id": 3 + }, + "minecraft:igloo": { + "protocol_id": 4 + }, + "minecraft:jigsaw": { + "protocol_id": 5 + }, + "minecraft:jungle_temple": { + "protocol_id": 6 + }, + "minecraft:mineshaft": { + "protocol_id": 7 + }, + "minecraft:nether_fossil": { + "protocol_id": 8 + }, + "minecraft:ocean_monument": { + "protocol_id": 9 + }, + "minecraft:ocean_ruin": { + "protocol_id": 10 + }, + "minecraft:ruined_portal": { + "protocol_id": 11 + }, + "minecraft:shipwreck": { + "protocol_id": 12 + }, + "minecraft:stronghold": { + "protocol_id": 13 + }, + "minecraft:swamp_hut": { + "protocol_id": 14 + }, + "minecraft:woodland_mansion": { + "protocol_id": 15 + } + }, + "protocol_id": 44 + }, + "minecraft:worldgen/tree_decorator_type": { + "entries": { + "minecraft:alter_ground": { + "protocol_id": 4 + }, + "minecraft:attached_to_leaves": { + "protocol_id": 5 + }, + "minecraft:beehive": { + "protocol_id": 3 + }, + "minecraft:cocoa": { + "protocol_id": 2 + }, + "minecraft:leave_vine": { + "protocol_id": 1 + }, + "minecraft:trunk_vine": { + "protocol_id": 0 + } + }, + "protocol_id": 50 + }, + "minecraft:worldgen/trunk_placer_type": { + "entries": { + "minecraft:bending_trunk_placer": { + "protocol_id": 6 + }, + "minecraft:dark_oak_trunk_placer": { + "protocol_id": 4 + }, + "minecraft:fancy_trunk_placer": { + "protocol_id": 5 + }, + "minecraft:forking_trunk_placer": { + "protocol_id": 1 + }, + "minecraft:giant_trunk_placer": { + "protocol_id": 2 + }, + "minecraft:mega_jungle_trunk_placer": { + "protocol_id": 3 + }, + "minecraft:straight_trunk_placer": { + "protocol_id": 0 + }, + "minecraft:upwards_branching_trunk_placer": { + "protocol_id": 7 + } + }, + "protocol_id": 48 } } \ No newline at end of file